Home
last modified time | relevance | path

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

/linux/arch/arm64/kernel/
H A Dio.c48 const u##bits *_from = from; \
50 const u##bits *_end_from = _from + ALIGN_DOWN(_count, 8); \
52 for (; _from < _end_from; _from += 8, _to += 8) \
53 __const_memcpy_toio_aligned##bits(_to, _from, 8); \
55 __const_memcpy_toio_aligned##bits(_to, _from, 4); \
56 _from += 4; \
60 __const_memcpy_toio_aligned##bits(_to, _from, 2); \
61 _from += 2; \
65 __const_memcpy_toio_aligned##bits(_to, _from, 1); \
/linux/drivers/net/ethernet/sfc/falcon/
H A 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/drivers/net/ethernet/sfc/
H A 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/drivers/net/ethernet/sfc/siena/
H A 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/tools/power/x86/intel_pstate_tracer/
H A 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 …, int(time_pre_dec), int(time_post_dec), int(core_busy), int(scaled), int(_from), int(_to), int(mp…
446 _from = search_obj.group(14)
480 …store_csv(cpu_int, time_pre_dec, time_post_dec, core_busy, scaled, _from, _to, mperf, aperf, tsc, …
/linux/arch/s390/include/asm/
H A Duaccess.h109 : [_size] "d" (size), [_from] "Q" (*(from)), \
185 : [_size] "d" (size), [_from] "Q" (*(from)), \
401 : [_from] "Q" (*(from)) \
/linux/arch/alpha/include/asm/
H A Dpage.h23 extern void copy_page(void * _to, void * _from);
/linux/drivers/clk/at91/
H A Dpmc.h132 #define PMC_FILL_TABLE(_to, _from, _count) \ argument
136 (_to)[_i] = (_from)[_i]; \
/linux/drivers/usb/dwc3/
H A Dcore.h1570 #define DWC3_VER_IS_WITHIN(_ip, _from, _to) \ argument
1572 dwc->revision >= _ip##_REVISION_##_from && \
1576 #define DWC3_VER_TYPE_IS_WITHIN(_ip, _ver, _from, _to) \ argument
1578 dwc->version_type >= _ip##_VERSIONTYPE_##_from && \
/linux/kernel/sched/
H A Dsched.h2539 #define for_class_range(class, _from, _to) \ argument
2540 for (class = (_from); class < (_to); class++)
2545 #define for_active_class_range(class, _from, _to) \ argument
2546 for (class = (_from); class != (_to); class = next_active_class(class))