/linux/arch/arm64/kernel/ |
H A D | io.c | 20 const u##bits *_from = from; \ 22 const u##bits *_end_from = _from + ALIGN_DOWN(_count, 8); \ 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); \ 28 _from += 4; \ 32 __const_memcpy_toio_aligned##bits(_to, _from, 2); \ 33 _from += 2; \ 37 __const_memcpy_toio_aligned##bits(_to, _from, [all...] |
/linux/drivers/net/ethernet/sfc/falcon/ |
H A D | enum.h | 117 #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 D | enum.h | 117 #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 D | enum.h | 117 #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 D | intel_pstate_tracer.py | 326 def store_csv(cpu_int, time_pre_dec, time_post_dec, core_busy, scaled, _from, _to, mperf, aperf, tsc, freq_ghz, io_boost, common_comm, load, duration_ms, sample_num, elapsed_time, tsc_ghz, cpu_mask): argument 336 string_buffer = "CPU_%03u, %05u, %06u, %u, %u, %u, %u, %u, %u, %u, %.4f, %u, %.2f, %.3f, %u, %.3f, %.3f, %s\n" % (cpu_int, int(time_pre_dec), int(time_post_dec), int(core_busy), int(scaled), int(_from), int(_to), int(mperf), int(aperf), int(tsc), freq_ghz, int(io_boost), load, duration_ms, sample_num, elapsed_time, tsc_ghz, common_comm) 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, freq_ghz, io_boost, common_comm, load, duration_ms, sample_num, elapsed_time, tsc_ghz, cpu_mask)
|
/linux/arch/alpha/include/asm/ |
H A D | page.h | 19 extern void copy_page(void * _to, void * _from);
|
/linux/drivers/clk/at91/ |
H A D | pmc.h | 132 #define PMC_FILL_TABLE(_to, _from, _count) \ argument 136 (_to)[_i] = (_from)[_i]; \
|
/linux/drivers/usb/dwc3/ |
H A D | core.h | 1580 #define DWC3_VER_IS_WITHIN(_ip, _from, _to) \ argument 1582 dwc->revision >= _ip##_REVISION_##_from && \ 1586 #define DWC3_VER_TYPE_IS_WITHIN(_ip, _ver, _from, _to) \ argument 1588 dwc->version_type >= _ip##_VERSIONTYPE_##_from && \
|
/linux/kernel/sched/ |
H A D | sched.h | 2519 #define for_class_range(class, _from, _to) \ argument 2520 for (class = (_from); class < (_to); class++) 2525 #define for_active_class_range(class, _from, _to) \ argument 2526 for (class = (_from); class != (_to); class = next_active_class(class))
|