Home
last modified time | relevance | path

Searched refs:_to (Results 1 – 10 of 10) sorted by relevance

/linux-6.14.4/arch/arm64/kernel/
Dio.c19 volatile u##bits __iomem *_to = to; \
24 for (; _from < _end_from; _from += 8, _to += 8) \
25 __const_memcpy_toio_aligned##bits(_to, _from, 8); \
27 __const_memcpy_toio_aligned##bits(_to, _from, 4); \
29 _to += 4; \
32 __const_memcpy_toio_aligned##bits(_to, _from, 2); \
34 _to += 2; \
37 __const_memcpy_toio_aligned##bits(_to, _from, 1); \
/linux-6.14.4/include/rdma/
Duverbs_ioctl.h956 #define uverbs_get_const_signed(_to, _attrs_bundle, _idx) \ argument
961 type_min(typeof(*(_to))), \
962 type_max(typeof(*(_to))), NULL); \
963 (*(_to)) = _val; \
967 #define uverbs_get_const_unsigned(_to, _attrs_bundle, _idx) \ argument
972 type_max(typeof(*(_to))), NULL); \
973 (*(_to)) = _val; \
977 #define uverbs_get_const_default_signed(_to, _attrs_bundle, _idx, _default) \ argument
983 type_min(typeof(*(_to))), \
984 type_max(typeof(*(_to))), &_def_val); \
[all …]
/linux-6.14.4/drivers/net/ethernet/sfc/falcon/
Denum.h117 #define LOOPBACK_CHANGED(_from, _to, _mask) \ argument
118 (!!((LOOPBACK_MASK(_from) ^ LOOPBACK_MASK(_to)) & (_mask)))
120 #define LOOPBACK_OUT_OF(_from, _to, _mask) \ argument
121 ((LOOPBACK_MASK(_from) & (_mask)) && !(LOOPBACK_MASK(_to) & (_mask)))
/linux-6.14.4/drivers/net/ethernet/sfc/siena/
Denum.h117 #define LOOPBACK_CHANGED(_from, _to, _mask) \ argument
118 (!!((LOOPBACK_MASK(_from) ^ LOOPBACK_MASK(_to)) & (_mask)))
120 #define LOOPBACK_OUT_OF(_from, _to, _mask) \ argument
121 ((LOOPBACK_MASK(_from) & (_mask)) && !(LOOPBACK_MASK(_to) & (_mask)))
/linux-6.14.4/drivers/net/ethernet/sfc/
Denum.h117 #define LOOPBACK_CHANGED(_from, _to, _mask) \ argument
118 (!!((LOOPBACK_MASK(_from) ^ LOOPBACK_MASK(_to)) & (_mask)))
120 #define LOOPBACK_OUT_OF(_from, _to, _mask) \ argument
121 ((LOOPBACK_MASK(_from) & (_mask)) && !(LOOPBACK_MASK(_to) & (_mask)))
/linux-6.14.4/tools/power/x86/intel_pstate_tracer/
Dintel_pstate_tracer.py326 def store_csv(cpu_int, time_pre_dec, time_post_dec, core_busy, scaled, _from, _to, mperf, aperf, ts… argument
336 …pre_dec), int(time_post_dec), int(core_busy), int(scaled), int(_from), int(_to), int(mperf), int(a…
447 _to = search_obj.group(16)
480 …store_csv(cpu_int, time_pre_dec, time_post_dec, core_busy, scaled, _from, _to, mperf, aperf, tsc, …
/linux-6.14.4/drivers/usb/dwc3/
Dcore.h1574 #define DWC3_VER_IS_WITHIN(_ip, _from, _to) \ argument
1577 (!(_ip##_REVISION_##_to) || \
1578 dwc->revision <= _ip##_REVISION_##_to))
1580 #define DWC3_VER_TYPE_IS_WITHIN(_ip, _ver, _from, _to) \ argument
1583 (!(_ip##_VERSIONTYPE_##_to) || \
1584 dwc->version_type <= _ip##_VERSIONTYPE_##_to))
/linux-6.14.4/arch/alpha/include/asm/
Dpage.h19 extern void copy_page(void * _to, void * _from);
/linux-6.14.4/drivers/clk/at91/
Dpmc.h132 #define PMC_FILL_TABLE(_to, _from, _count) \ argument
136 (_to)[_i] = (_from)[_i]; \
/linux-6.14.4/kernel/sched/
Dsched.h2563 #define for_class_range(class, _from, _to) \ argument
2564 for (class = (_from); class < (_to); class++)
2569 #define for_active_class_range(class, _from, _to) \ argument
2570 for (class = (_from); class != (_to); class = next_active_class(class))