/linux-4.1.27/arch/x86/include/asm/ |
D | msr.h | 36 unsigned long low, high; in native_read_tscp() local 38 : "=a" (low), "=d" (high), "=c" (*aux)); in native_read_tscp() 39 return low | ((u64)high << 32); in native_read_tscp() 49 #define DECLARE_ARGS(val, low, high) unsigned low, high argument 50 #define EAX_EDX_VAL(val, low, high) ((low) | ((u64)(high) << 32)) argument 51 #define EAX_EDX_ARGS(val, low, high) "a" (low), "d" (high) argument 52 #define EAX_EDX_RET(val, low, high) "=a" (low), "=d" (high) argument 54 #define DECLARE_ARGS(val, low, high) unsigned long long val argument 55 #define EAX_EDX_VAL(val, low, high) (val) argument 56 #define EAX_EDX_ARGS(val, low, high) "A" (val) argument [all …]
|
D | atomic64_32.h | 90 unsigned high = (unsigned)(n >> 32); in atomic64_xchg() local 93 "S" (v), "b" (low), "c" (high) in atomic64_xchg() 107 unsigned high = (unsigned)(i >> 32); in atomic64_set() local 110 "S" (v), "b" (low), "c" (high) in atomic64_set() 289 unsigned high = (unsigned)(u >> 32); in atomic64_add_unless() local 291 ASM_OUTPUT2("+A" (a), "+c" (low), "+D" (high)), in atomic64_add_unless()
|
D | cmpxchg_32.h | 26 u32 high = value >> 32; in set_64bit() local 33 : "b" (low), "c" (high) in set_64bit()
|
D | apic.h | 331 void (*icr_write)(u32 low, u32 high); 407 static inline void apic_icr_write(u32 low, u32 high) in apic_icr_write() argument 409 apic->icr_write(low, high); in apic_icr_write() 430 static inline void apic_icr_write(u32 low, u32 high) { } in apic_icr_write() argument
|
/linux-4.1.27/drivers/net/ethernet/sfc/ |
D | bitfield.h | 126 #define EFX_EXTRACT_NATIVE(native_element, min, max, low, high) \ argument 127 ((low) > (max) || (high) < (min) ? 0 : \ 136 #define EFX_EXTRACT64(element, min, max, low, high) \ argument 137 EFX_EXTRACT_NATIVE(le64_to_cpu(element), min, max, low, high) 143 #define EFX_EXTRACT32(element, min, max, low, high) \ argument 144 EFX_EXTRACT_NATIVE(le32_to_cpu(element), min, max, low, high) 146 #define EFX_EXTRACT_OWORD64(oword, low, high) \ argument 147 ((EFX_EXTRACT64((oword).u64[0], 0, 63, low, high) | \ 148 EFX_EXTRACT64((oword).u64[1], 64, 127, low, high)) & \ 149 EFX_MASK64((high) + 1 - (low))) [all …]
|
/linux-4.1.27/arch/arm/nwfpe/ |
D | fpopcode.c | 31 { .high = 0x0000, .low = 0x0000000000000000ULL},/* extended 0.0 */ 32 { .high = 0x3fff, .low = 0x8000000000000000ULL},/* extended 1.0 */ 33 { .high = 0x4000, .low = 0x8000000000000000ULL},/* extended 2.0 */ 34 { .high = 0x4000, .low = 0xc000000000000000ULL},/* extended 3.0 */ 35 { .high = 0x4001, .low = 0x8000000000000000ULL},/* extended 4.0 */ 36 { .high = 0x4001, .low = 0xa000000000000000ULL},/* extended 5.0 */ 37 { .high = 0x3ffe, .low = 0x8000000000000000ULL},/* extended 0.5 */ 38 { .high = 0x4002, .low = 0xa000000000000000ULL},/* extended 10.0 */
|
D | softfloat-specialize | 66 bits64 high, low; 116 z.high = ( (bits64) a )<<41; 130 return ( ( (bits32) a.sign )<<31 ) | 0x7FC00000 | ( a.high>>41 ); 210 z.high = a<<12; 227 | ( a.high>>12 ); 263 `high' and `low' values hold the most- and least-significant bits, 279 return ( ( a.high & 0x7FFF ) == 0x7FFF ) && (bits64) ( a.low<<1 ); 298 ( ( a.high & 0x7FFF ) == 0x7FFF ) 316 z.sign = a.high>>15; 318 z.high = a.low<<1; [all …]
|
D | softfloat.c | 486 return a.high & 0x7FFF; in extractFloatx80Exp() 499 return a.high>>15; in extractFloatx80Sign() 533 z.high = ( ( (bits16) zSign )<<15 ) + zExp; in packFloatx80() 2728 ++z.high; in floatx80_round_to_int() 2834 z.high = floatx80_default_nan_high; in subFloatx80Sigs() 2954 z.high = floatx80_default_nan_high; in floatx80_mul() 3020 z.high = floatx80_default_nan_high; in floatx80_div() 3099 z.high = floatx80_default_nan_high; in floatx80_rem() 3191 z.high = floatx80_default_nan_high; in floatx80_sqrt() 3263 && ( ( a.high == b.high ) in floatx80_eq() [all …]
|
/linux-4.1.27/drivers/rtc/ |
D | rtc-max8925.c | 116 unsigned char high, low; in data_calc() local 121 high = (tm->tm_year + 1900) / 1000; in data_calc() 123 low = low - high * 10; in data_calc() 124 buf[RTC_YEAR2] = (high << 4) + low; in data_calc() 125 high = (tm->tm_year + 1900) / 10; in data_calc() 127 low = low - high * 10; in data_calc() 128 high = high - (high / 10) * 10; in data_calc() 129 buf[RTC_YEAR1] = (high << 4) + low; in data_calc() 130 high = tm->tm_mon / 10; in data_calc() 132 low = low - high * 10; in data_calc() [all …]
|
D | rtc-max8907.c | 83 u8 high, low; in tm_to_regs() local 85 high = (tm->tm_year + 1900) / 100; in tm_to_regs() 87 regs[RTC_YEAR2] = bin2bcd(high); in tm_to_regs()
|
/linux-4.1.27/lib/ |
D | div64.c | 31 uint32_t high = rem >> 32; in __div64_32() local 35 if (high >= base) { in __div64_32() 36 high /= base; in __div64_32() 37 res = (uint64_t) high << 32; in __div64_32() 38 rem -= (uint64_t) (high*base) << 32; in __div64_32() 95 u32 high = divisor >> 32; in div64_u64_rem() local 98 if (high == 0) { in div64_u64_rem() 103 int n = 1 + fls(high); in div64_u64_rem() 135 u32 high = divisor >> 32; in div64_u64() local 138 if (high == 0) { in div64_u64() [all …]
|
/linux-4.1.27/arch/powerpc/kernel/ |
D | tau_6xx.c | 34 unsigned char high; member 64 mtspr (SPRN_THRM2, THRM1_THRES(tau[cpu].high) | THRM1_V | THRM1_TIE); in set_thresholds() 68 mtspr(SPRN_THRM2, THRM1_THRES(tau[cpu].high) | THRM1_V); in set_thresholds() 86 tau[cpu].high -= (step_size - window_expand); in TAUupdate() 96 if (tau[cpu].high <= 127-step_size){ in TAUupdate() 98 tau[cpu].high += step_size; in TAUupdate() 151 size = tau[cpu].high - tau[cpu].low; in tau_timeout() 157 tau[cpu].high -= shrink; in tau_timeout() 161 if ((tau[cpu].high - tau[cpu].low) != min_window){ in tau_timeout() 214 tau[cpu].high = 120; in TAU_init_smp() [all …]
|
D | sys_ppc32.c | 95 unsigned long high, unsigned long low) in compat_sys_truncate64() argument 97 return sys_truncate(path, (high << 32) | low); in compat_sys_truncate64() 107 asmlinkage int compat_sys_ftruncate64(unsigned int fd, u32 reg4, unsigned long high, in compat_sys_ftruncate64() argument 110 return sys_ftruncate(fd, (high << 32) | low); in compat_sys_ftruncate64()
|
D | machine_kexec_64.c | 37 unsigned long low, high; /* limits of blocked memory range */ in default_machine_kexec_prepare() local 66 high = low + htab_size_bytes; in default_machine_kexec_prepare() 72 if ((begin < high) && (end > low)) in default_machine_kexec_prepare() 85 high = low + (*sizep); in default_machine_kexec_prepare() 91 if ((begin < high) && (end > low)) in default_machine_kexec_prepare()
|
/linux-4.1.27/arch/x86/kernel/cpu/mtrr/ |
D | centaur.c | 10 unsigned long high; member 53 centaur_mcr[mcr].high = hi; in mtrr_centaur_report_mcr() 60 *base = centaur_mcr[reg].high >> PAGE_SHIFT; in centaur_get_mcr() 76 unsigned long low, high; in centaur_set_mcr() local 80 high = low = 0; in centaur_set_mcr() 82 high = base << PAGE_SHIFT; in centaur_set_mcr() 93 centaur_mcr[reg].high = high; in centaur_set_mcr() 95 wrmsr(MSR_IDT_MCR0 + reg, low, high); in centaur_set_mcr()
|
D | amd.c | 12 unsigned long low, high; in amd_get_mtrr() local 14 rdmsr(MSR_K6_UWCCR, low, high); in amd_get_mtrr() 17 low = high; in amd_get_mtrr()
|
/linux-4.1.27/arch/m68k/lib/ |
D | ashrdi3.c | 23 struct DIstruct {SItype high, low;}; member 47 w.s.high = uu.s.high >> (sizeof (SItype) * BITS_PER_UNIT - 1); in __ashrdi3() 48 w.s.low = uu.s.high >> -bm; in __ashrdi3() 52 USItype carries = (USItype)uu.s.high << bm; in __ashrdi3() 53 w.s.high = uu.s.high >> b; in __ashrdi3()
|
D | lshrdi3.c | 23 struct DIstruct {SItype high, low;}; member 46 w.s.high = 0; in __lshrdi3() 47 w.s.low = (USItype)uu.s.high >> -bm; in __lshrdi3() 51 USItype carries = (USItype)uu.s.high << bm; in __lshrdi3() 52 w.s.high = (USItype)uu.s.high >> b; in __lshrdi3()
|
D | ashldi3.c | 23 struct DIstruct {SItype high, low;}; member 47 w.s.high = (USItype)uu.s.low << -bm; in __ashldi3() 53 w.s.high = ((USItype)uu.s.high << b) | carries; in __ashldi3()
|
D | muldi3.c | 62 umul_ppmm (__w.s.high, __w.s.low, u, v); \ 70 struct DIstruct {SItype high, low;}; member 88 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high in __muldi3() 89 + (USItype) uu.s.high * (USItype) vv.s.low); in __muldi3()
|
/linux-4.1.27/arch/mn10300/lib/ |
D | ashrdi3.c | 30 SItype high; member 52 w.s.high = uu.s.high >> (sizeof(SItype) * BITS_PER_UNIT - 1); in __ashrdi3() 53 w.s.low = uu.s.high >> -bm; in __ashrdi3() 55 USItype carries = (USItype)uu.s.high << bm; in __ashrdi3() 56 w.s.high = uu.s.high >> b; in __ashrdi3()
|
D | lshrdi3.c | 30 SItype high; member 51 w.s.high = 0; in __lshrdi3() 52 w.s.low = (USItype) uu.s.high >> -bm; in __lshrdi3() 54 USItype carries = (USItype) uu.s.high << bm; in __lshrdi3() 55 w.s.high = (USItype) uu.s.high >> b; in __lshrdi3()
|
D | negdi2.c | 42 s32 high; member 54 w.s.high = -uu.s.high - ((u32) w.s.low > 0); in __negdi2()
|
/linux-4.1.27/arch/microblaze/lib/ |
D | ashrdi3.c | 18 w.s.high = in __ashrdi3() 19 uu.s.high >> 31; in __ashrdi3() 20 w.s.low = uu.s.high >> -bm; in __ashrdi3() 22 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3() 24 w.s.high = uu.s.high >> b; in __ashrdi3()
|
D | lshrdi3.c | 17 w.s.high = 0; in __lshrdi3() 18 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3() 20 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3() 22 w.s.high = (unsigned int) uu.s.high >> b; in __lshrdi3()
|
D | cmpdi2.c | 14 if (au.s.high < bu.s.high) in __cmpdi2() 16 else if (au.s.high > bu.s.high) in __cmpdi2()
|
D | ucmpdi2.c | 10 if ((unsigned int) au.s.high < (unsigned int) bu.s.high) in __ucmpdi2() 12 else if ((unsigned int) au.s.high > (unsigned int) bu.s.high) in __ucmpdi2()
|
D | muldi3.c | 41 umul_ppmm(__w.s.high, __w.s.low, u, v); \ 52 w.s.high += ((unsigned long) uu.s.low * (unsigned long) vv.s.high in __muldi3() 53 + (unsigned long) uu.s.high * (unsigned long) vv.s.low); in __muldi3()
|
D | ashldi3.c | 18 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3() 23 w.s.high = ((unsigned int) uu.s.high << b) | carries; in __ashldi3()
|
D | libgcc.h | 10 int high, low; member 14 int low, high; member
|
/linux-4.1.27/arch/sh/lib/ |
D | ashrdi3.c | 18 w.s.high = in __ashrdi3() 19 uu.s.high >> 31; in __ashrdi3() 20 w.s.low = uu.s.high >> -bm; in __ashrdi3() 22 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3() 24 w.s.high = uu.s.high >> b; in __ashrdi3()
|
D | lshrdi3.c | 17 w.s.high = 0; in __lshrdi3() 18 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3() 20 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3() 22 w.s.high = (unsigned int) uu.s.high >> b; in __lshrdi3()
|
D | ashldi3.c | 18 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3() 23 w.s.high = ((unsigned int) uu.s.high << b) | carries; in __ashldi3()
|
D | libgcc.h | 10 int high, low; member 14 int low, high; member
|
/linux-4.1.27/arch/score/lib/ |
D | ashrdi3.c | 36 w.s.high = in __ashrdi3() 37 uu.s.high >> 31; in __ashrdi3() 38 w.s.low = uu.s.high >> -bm; in __ashrdi3() 40 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3() 42 w.s.high = uu.s.high >> b; in __ashrdi3()
|
D | lshrdi3.c | 36 w.s.high = 0; in __lshrdi3() 37 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3() 39 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3() 41 w.s.high = (unsigned int) uu.s.high >> b; in __lshrdi3()
|
D | cmpdi2.c | 32 if (au.s.high < bu.s.high) in __cmpdi2() 34 else if (au.s.high > bu.s.high) in __cmpdi2()
|
D | ucmpdi2.c | 28 if ((unsigned int) au.s.high < (unsigned int) bu.s.high) in __ucmpdi2() 30 else if ((unsigned int) au.s.high > (unsigned int) bu.s.high) in __ucmpdi2()
|
D | ashldi3.c | 36 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3() 41 w.s.high = ((unsigned int) uu.s.high << b) | carries; in __ashldi3()
|
/linux-4.1.27/arch/mips/lib/ |
D | ashrdi3.c | 18 w.s.high = in __ashrdi3() 19 uu.s.high >> 31; in __ashrdi3() 20 w.s.low = uu.s.high >> -bm; in __ashrdi3() 22 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3() 24 w.s.high = uu.s.high >> b; in __ashrdi3()
|
D | lshrdi3.c | 17 w.s.high = 0; in __lshrdi3() 18 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3() 20 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3() 22 w.s.high = (unsigned int) uu.s.high >> b; in __lshrdi3()
|
D | ucmpdi2.c | 10 if ((unsigned int) au.s.high < (unsigned int) bu.s.high) in __ucmpdi2() 12 else if ((unsigned int) au.s.high > (unsigned int) bu.s.high) in __ucmpdi2()
|
D | cmpdi2.c | 14 if (au.s.high < bu.s.high) in __cmpdi2() 16 else if (au.s.high > bu.s.high) in __cmpdi2()
|
D | ashldi3.c | 18 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3() 23 w.s.high = ((unsigned int) uu.s.high << b) | carries; in __ashldi3()
|
D | libgcc.h | 10 int high, low; member 14 int low, high; member
|
/linux-4.1.27/arch/tile/kernel/ |
D | compat.c | 36 u32, low, u32, high) in COMPAT_SYSCALL_DEFINE4() argument 38 return sys_truncate(filename, ((loff_t)high << 32) | low); in COMPAT_SYSCALL_DEFINE4() 42 u32, low, u32, high) in COMPAT_SYSCALL_DEFINE4() argument 44 return sys_ftruncate(fd, ((loff_t)high << 32) | low); in COMPAT_SYSCALL_DEFINE4() 48 size_t, count, u32, dummy, u32, low, u32, high) in COMPAT_SYSCALL_DEFINE6() argument 50 return sys_pread64(fd, ubuf, count, ((loff_t)high << 32) | low); in COMPAT_SYSCALL_DEFINE6() 54 size_t, count, u32, dummy, u32, low, u32, high) in COMPAT_SYSCALL_DEFINE6() argument 56 return sys_pwrite64(fd, ubuf, count, ((loff_t)high << 32) | low); in COMPAT_SYSCALL_DEFINE6()
|
D | time.c | 50 unsigned int high = __insn_mfspr(SPR_CYCLE_HIGH); in get_cycles() local 54 while (unlikely(high != high2)) { in get_cycles() 56 high = high2; in get_cycles() 60 return (((cycles_t)high) << 32) | low; in get_cycles()
|
/linux-4.1.27/arch/blackfin/lib/ |
D | ashrdi3.c | 27 w.s.high = uu.s.high >> (sizeof(SItype) * BITS_PER_UNIT - 1); in __ashrdi3() 28 w.s.low = uu.s.high >> -bm; in __ashrdi3() 30 USItype carries = (USItype) uu.s.high << bm; in __ashrdi3() 31 w.s.high = uu.s.high >> b; in __ashrdi3()
|
D | lshrdi3.c | 26 w.s.high = 0; in __lshrdi3() 27 w.s.low = (USItype) uu.s.high >> -bm; in __lshrdi3() 29 USItype carries = (USItype) uu.s.high << bm; in __lshrdi3() 30 w.s.high = (USItype) uu.s.high >> b; in __lshrdi3()
|
D | ashldi3.c | 27 w.s.high = (USItype) uu.s.low << -bm; in __ashldi3() 31 w.s.high = ((USItype) uu.s.high << b) | carries; in __ashldi3()
|
/linux-4.1.27/Documentation/fb/ |
D | viafb.modes | 202 timings 25000 88 40 23 1 128 4 hsync high vsync high endmode 224 timings 20203 160 16 21 1 80 3 hsync high vsync high endmode 246 timings 17777 152 32 27 1 64 3 hsync high vsync high endmode 268 timings 14667 216 0 14 7 64 4 hsync high vsync high endmode 290 timings 11912 144 56 39 1 88 3 hsync high vsync high endmode 312 timings 31746 104 24 12 3 80 5 hsync high vsync high endmode 335 hsync high vsync high endmode mode "960x600-60" 389 timings 24218 126 32 15 1 104 3 hsync high vsync high endmode 455 timings 12699 176 16 28 1 96 3 hsync high vsync high endmode 477 timings 10582 208 48 36 1 96 3 hsync high vsync high endmode [all …]
|
D | ep93xx-fb.txt | 57 EP93XXFB_SYNC_BLANK_HIGH Blank signal is active high. By 60 EP93XXFB_SYNC_HORIZ_HIGH Horizontal sync is active high. By 63 EP93XXFB_SYNC_VERT_HIGH Vertical sync is active high. By 64 default the vertical sync is active high.
|
/linux-4.1.27/arch/parisc/lib/ |
D | ucmpdi2.c | 6 unsigned int high; member 16 if (au.ui.high < bu.ui.high) in __ucmpdi2() 18 else if (au.ui.high > bu.ui.high) in __ucmpdi2()
|
/linux-4.1.27/arch/s390/include/asm/ |
D | ctl_reg.h | 12 #define __ctl_load(array, low, high) { \ argument 15 BUILD_BUG_ON(sizeof(addrtype) != (high - low + 1) * sizeof(long));\ 18 : : "Q" (*(addrtype *)(&array)), "i" (low), "i" (high));\ 21 #define __ctl_store(array, low, high) { \ argument 24 BUILD_BUG_ON(sizeof(addrtype) != (high - low + 1) * sizeof(long));\ 28 : "i" (low), "i" (high)); \
|
/linux-4.1.27/drivers/staging/android/ion/ |
D | ion_page_pool.c | 58 static struct page *ion_page_pool_remove(struct ion_page_pool *pool, bool high) in ion_page_pool_remove() argument 62 if (high) { in ion_page_pool_remove() 106 static int ion_page_pool_total(struct ion_page_pool *pool, bool high) in ion_page_pool_total() argument 110 if (high) in ion_page_pool_total() 120 bool high; in ion_page_pool_shrink() local 123 high = true; in ion_page_pool_shrink() 125 high = !!(gfp_mask & __GFP_HIGHMEM); in ion_page_pool_shrink() 128 return ion_page_pool_total(pool, high); in ion_page_pool_shrink() 136 } else if (high && pool->high_count) { in ion_page_pool_shrink()
|
/linux-4.1.27/arch/s390/kernel/ |
D | stacktrace.c | 16 unsigned long high, in save_context_stack() argument 25 if (sp < low || sp > high) in save_context_stack() 40 if (sp <= low || sp > high - sizeof(*sf)) in save_context_stack() 46 if (sp <= low || sp > high - sizeof(*regs)) in save_context_stack() 87 unsigned long sp, low, high; in save_stack_trace_tsk() local 91 high = (unsigned long) task_pt_regs(tsk); in save_stack_trace_tsk() 92 save_context_stack(trace, sp, low, high, 0); in save_stack_trace_tsk()
|
D | process.c | 49 struct stack_frame *sf, *low, *high; in thread_saved_pc() local 54 high = (struct stack_frame *) task_pt_regs(tsk); in thread_saved_pc() 56 if (sf <= low || sf > high) in thread_saved_pc() 59 if (sf <= low || sf > high) in thread_saved_pc() 182 struct stack_frame *sf, *low, *high; in get_wchan() local 189 high = (struct stack_frame *) task_pt_regs(p); in get_wchan() 191 if (sf <= low || sf > high) in get_wchan() 195 if (sf <= low || sf > high) in get_wchan()
|
D | compat_linux.h | 109 long compat_sys_s390_truncate64(const char __user *path, u32 high, u32 low); 110 long compat_sys_s390_ftruncate64(unsigned int fd, u32 high, u32 low); 111 long compat_sys_s390_pread64(unsigned int fd, char __user *ubuf, compat_size_t count, u32 high, u32… 112 …ys_s390_pwrite64(unsigned int fd, const char __user *ubuf, compat_size_t count, u32 high, u32 low); 113 long compat_sys_s390_readahead(int fd, u32 high, u32 low, s32 count); 122 long compat_sys_s390_fadvise64(int fd, u32 high, u32 low, compat_size_t len, int advise);
|
D | compat_linux.c | 302 COMPAT_SYSCALL_DEFINE3(s390_truncate64, const char __user *, path, u32, high, u32, low) in COMPAT_SYSCALL_DEFINE3() argument 304 return sys_truncate(path, (unsigned long)high << 32 | low); in COMPAT_SYSCALL_DEFINE3() 307 COMPAT_SYSCALL_DEFINE3(s390_ftruncate64, unsigned int, fd, u32, high, u32, low) in COMPAT_SYSCALL_DEFINE3() argument 309 return sys_ftruncate(fd, (unsigned long)high << 32 | low); in COMPAT_SYSCALL_DEFINE3() 313 compat_size_t, count, u32, high, u32, low) in COMPAT_SYSCALL_DEFINE5() argument 317 return sys_pread64(fd, ubuf, count, (unsigned long)high << 32 | low); in COMPAT_SYSCALL_DEFINE5() 321 compat_size_t, count, u32, high, u32, low) in COMPAT_SYSCALL_DEFINE5() argument 325 return sys_pwrite64(fd, ubuf, count, (unsigned long)high << 32 | low); in COMPAT_SYSCALL_DEFINE5() 328 COMPAT_SYSCALL_DEFINE4(s390_readahead, int, fd, u32, high, u32, low, s32, count) in COMPAT_SYSCALL_DEFINE4() argument 330 return sys_readahead(fd, (unsigned long)high << 32 | low, count); in COMPAT_SYSCALL_DEFINE4() [all …]
|
D | dumpstack.c | 30 __show_trace(unsigned long sp, unsigned long low, unsigned long high) in __show_trace() argument 38 if (sp < low || sp > high - sizeof(*sf)) in __show_trace() 49 if (sp <= low || sp > high - sizeof(*sf)) in __show_trace() 57 if (sp <= low || sp > high - sizeof(*regs)) in __show_trace()
|
D | perf_event.c | 228 unsigned long low, unsigned long high) in __store_trace() argument 235 if (sp < low || sp > high - sizeof(*sf)) in __store_trace() 245 if (sp <= low || sp > high - sizeof(*sf)) in __store_trace() 253 if (sp <= low || sp > high - sizeof(*regs)) in __store_trace()
|
/linux-4.1.27/arch/parisc/kernel/ |
D | sys_parisc.c | 290 unsigned int high, unsigned int low) in parisc_truncate64() argument 292 return sys_truncate(path, (long)high << 32 | low); in parisc_truncate64() 296 unsigned int high, unsigned int low) in parisc_ftruncate64() argument 298 return sys_ftruncate(fd, (long)high << 32 | low); in parisc_ftruncate64() 318 unsigned int high, unsigned int low) in parisc_truncate64() argument 320 return sys_truncate64(path, (loff_t)high << 32 | low); in parisc_truncate64() 324 unsigned int high, unsigned int low) in parisc_ftruncate64() argument 326 return sys_ftruncate64(fd, (loff_t)high << 32 | low); in parisc_ftruncate64() 331 unsigned int high, unsigned int low) in parisc_pread64() argument 333 return sys_pread64(fd, buf, count, (loff_t)high << 32 | low); in parisc_pread64() [all …]
|
/linux-4.1.27/arch/m32r/boot/compressed/ |
D | head.S | 34 seth r1, #high(CONFIG_MEMORY_START + 0x00400000) /* Start address */ 39 seth r3, #high(_GLOBAL_OFFSET_TABLE_+8) 63 seth r2, #high(__bss_start) 66 seth r3, #high(_ebss) 96 seth r2, #high(__bss_start) 99 seth r3, #high(_ebss) 116 seth r1, #high(end) 126 seth r1, #high(zimage_data) 129 seth r2, #high(zimage_len) 158 seth r1, #high(CONFIG_MEMORY_START)
|
/linux-4.1.27/arch/x86/oprofile/ |
D | op_model_p4.c | 510 unsigned int high = 0; in pmc_setup_one_p4_counter() local 534 rdmsr(ev->bindings[i].escr_address, escr, high); in pmc_setup_one_p4_counter() 545 wrmsr(ev->bindings[i].escr_address, escr, high); in pmc_setup_one_p4_counter() 549 cccr, high); in pmc_setup_one_p4_counter() 558 cccr, high); in pmc_setup_one_p4_counter() 573 unsigned int low, high; in p4_setup_ctrs() local 578 rdmsr(MSR_IA32_MISC_ENABLE, low, high); in p4_setup_ctrs() 588 rdmsr(p4_counters[VIRT_CTR(stag, i)].cccr_address, low, high); in p4_setup_ctrs() 591 wrmsr(p4_counters[VIRT_CTR(stag, i)].cccr_address, low, high); in p4_setup_ctrs() 618 unsigned long ctr, low, high, stag, real; in p4_check_ctrs() local [all …]
|
/linux-4.1.27/arch/sparc/lib/ |
D | cmpdi2.c | 14 if (au.s.high < bu.s.high) in __cmpdi2() 16 else if (au.s.high > bu.s.high) in __cmpdi2()
|
D | ucmpdi2.c | 9 if ((unsigned int) au.s.high < (unsigned int) bu.s.high) in __ucmpdi2() 11 else if ((unsigned int) au.s.high > (unsigned int) bu.s.high) in __ucmpdi2()
|
/linux-4.1.27/drivers/net/wireless/iwlegacy/ |
D | 3945-rs.c | 546 u8 high = RATE_INVALID; in il3945_get_adjacent_rate() local 569 high = i; in il3945_get_adjacent_rate() 574 return (high << 8) | low; in il3945_get_adjacent_rate() 590 high = idx; in il3945_get_adjacent_rate() 591 while (high != RATE_INVALID) { in il3945_get_adjacent_rate() 593 high = il3945_rates[high].next_rs_tgg; in il3945_get_adjacent_rate() 595 high = il3945_rates[high].next_rs; in il3945_get_adjacent_rate() 596 if (high == RATE_INVALID) in il3945_get_adjacent_rate() 598 if (rate_mask & (1 << high)) in il3945_get_adjacent_rate() 600 D_RATE("Skipping masked higher rate: %d\n", high); in il3945_get_adjacent_rate() [all …]
|
D | 4965-rs.c | 675 u8 high = RATE_INVALID; in il4965_rs_get_adjacent_rate() local 697 high = i; in il4965_rs_get_adjacent_rate() 702 return (high << 8) | low; in il4965_rs_get_adjacent_rate() 715 high = idx; in il4965_rs_get_adjacent_rate() 716 while (high != RATE_INVALID) { in il4965_rs_get_adjacent_rate() 717 high = il_rates[high].next_rs; in il4965_rs_get_adjacent_rate() 718 if (high == RATE_INVALID) in il4965_rs_get_adjacent_rate() 720 if (rate_mask & (1 << high)) in il4965_rs_get_adjacent_rate() 722 D_RATE("Skipping masked higher rate: %d\n", high); in il4965_rs_get_adjacent_rate() 725 return (high << 8) | low; in il4965_rs_get_adjacent_rate() [all …]
|
/linux-4.1.27/arch/x86/kernel/cpu/mcheck/ |
D | mce_amd.c | 213 u32 low = 0, high = 0, address = 0; in mce_amd_feature_init() local 230 if (rdmsr_safe(address, &low, &high)) in mce_amd_feature_init() 233 if (!(high & MASK_VALID_HI)) in mce_amd_feature_init() 236 if (!(high & MASK_CNTP_HI) || in mce_amd_feature_init() 237 (high & MASK_LOCKED_HI)) in mce_amd_feature_init() 248 b.interrupt_capable = lvt_interrupt_supported(bank, high); in mce_amd_feature_init() 254 new = (high & MASK_LVTOFF_HI) >> 20; in mce_amd_feature_init() 278 u32 low = 0, high = 0, address = 0; in amd_threshold_interrupt() local 299 if (rdmsr_safe(address, &low, &high)) in amd_threshold_interrupt() 302 if (!(high & MASK_VALID_HI)) { in amd_threshold_interrupt() [all …]
|
/linux-4.1.27/net/dccp/ccids/lib/ |
D | tfrc_equation.c | 597 u32 try, low = 0, high = TFRC_CALC_X_ARRSIZE - 1; in tfrc_binsearch() local 599 while (low < high) { in tfrc_binsearch() 600 try = (low + high) / 2; in tfrc_binsearch() 602 high = try; in tfrc_binsearch() 606 return high; in tfrc_binsearch()
|
/linux-4.1.27/arch/arm/mach-omap2/ |
D | clkt2xxx_dpllcore.c | 79 u32 high, low, core_clk_src; in omap2_dpllcore_round_rate() local 84 high = curr_prcm_set->dpll_speed * 2; in omap2_dpllcore_round_rate() 87 high = curr_prcm_set->dpll_speed; in omap2_dpllcore_round_rate() 92 if (target_rate > high) in omap2_dpllcore_round_rate() 93 return high; in omap2_dpllcore_round_rate() 98 return high; in omap2_dpllcore_round_rate()
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | tegra30-cardhu-a04.dts | 31 enable-active-high; 43 enable-active-high; 53 enable-active-high; 65 enable-active-high; 77 enable-active-high; 89 enable-active-high; 101 enable-active-high;
|
D | tegra30-cardhu-a02.dts | 31 enable-active-high; 43 enable-active-high; 53 enable-active-high; 65 enable-active-high; 77 enable-active-high; 89 enable-active-high;
|
D | tegra30-cardhu.dtsi | 144 nvidia,high-speed-mode = <TEGRA_PIN_DISABLE>; 347 ti,vsel0-state-high; 348 ti,vsel1-state-high; 370 nvidia,core-power-req-active-high; 371 nvidia,sys-clock-req-active-high; 457 enable-active-high; 470 enable-active-high; 482 enable-active-high; 493 enable-active-high; 503 enable-active-high; [all …]
|
D | kirkwood-net5big.dts | 40 enable-active-high; 52 enable-active-high; 64 enable-active-high; 76 enable-active-high;
|
D | zynq-zc702.dts | 172 bias-high-impedance; 195 bias-high-impedance; 279 bias-high-impedance; 292 bias-high-impedance; 313 bias-high-impedance; 336 bias-high-impedance;
|
D | berlin2q-marvell-dmp.dts | 38 enable-active-high; 47 enable-active-high; 56 enable-active-high;
|
D | kirkwood-synology.dtsi | 623 enable-active-high; 636 enable-active-high; 658 enable-active-high; 680 enable-active-high; 693 enable-active-high; 716 enable-active-high; 729 enable-active-high; 742 enable-active-high; 755 enable-active-high; 777 enable-active-high; [all …]
|
D | tegra124-nyan.dtsi | 140 bias-high-impedance; 359 nvidia,core-power-req-active-high; 360 nvidia,sys-clock-req-active-high; 557 enable-active-high; 575 enable-active-high; 587 enable-active-high; 598 enable-active-high; 610 enable-active-high; 622 enable-active-high; 638 enable-active-high; [all …]
|
D | zynq-zc706.dts | 148 bias-high-impedance; 228 bias-high-impedance; 241 bias-high-impedance; 262 bias-high-impedance; 285 bias-high-impedance;
|
D | armada-388-gp.dts | 266 enable-active-high; 276 enable-active-high; 286 enable-active-high; 294 enable-active-high; 322 enable-active-high; 348 enable-active-high; 374 enable-active-high;
|
D | kirkwood-laplug.dts | 104 enable-active-high; 116 enable-active-high; 128 enable-active-high;
|
D | tegra124-venice2.dts | 438 nvidia,high-speed-mode = <TEGRA_PIN_ENABLE>; 447 nvidia,high-speed-mode = <TEGRA_PIN_ENABLE>; 456 nvidia,high-speed-mode = <TEGRA_PIN_ENABLE>; 665 bias-high-impedance; 882 nvidia,core-power-req-active-high; 883 nvidia,sys-clock-req-active-high; 1026 enable-active-high; 1044 enable-active-high; 1056 enable-active-high; 1067 enable-active-high; [all …]
|
D | imx6qdl-rex.dtsi | 42 enable-active-high; 53 enable-active-high; 262 /* power enable, high active */ 271 /* power enable, high active */
|
D | sunxi-common-regulators.dtsi | 92 enable-active-high; 104 enable-active-high; 116 enable-active-high; 128 enable-active-high;
|
D | exynos4210-trats.dts | 43 enable-active-high; 52 enable-active-high; 61 enable-active-high; 70 enable-active-high; 79 enable-active-high; 88 enable-active-high;
|
/linux-4.1.27/Documentation/devicetree/bindings/regulator/ |
D | tps62360-regulator.txt | 20 - ti,vsel0-state-high: Initial state of vsel0 input is high. 22 - ti,vsel1-state-high: Initial state of vsel1 input is high. 39 ti,vsel0-state-high; 40 ti,vsel1-state-high;
|
D | fixed-regulator.txt | 9 - enable-active-high: Polarity of GPIO is Active high 30 enable-active-high;
|
D | gpio-regulator.txt | 14 - enable-active-high : Polarity of GPIO is active high (default is low). 40 enable-active-high;
|
/linux-4.1.27/Documentation/hwmon/ |
D | lm25066 | 72 in1_crit Critical high input voltage (LM25063 only). 75 in1_max_alarm Input voltage high alarm. 77 in1_crit_alarm Input voltage critical high alarm. (LM25063 only). 84 in2_max_alarm VAUX voltage high alarm (LM25056 only). 100 curr1_max_alarm Input current high alarm. 101 curr1_crit_alarm Input current critical high alarm (LM25063 only). 118 temp1_crit Critical high temperature. 119 temp1_max_alarm Chip temperature high alarm. 120 temp1_crit_alarm Chip temperature critical high alarm.
|
D | max8688 | 50 in1_max_alarm Voltage high alarm. From VOLTAGE_OV_WARNING status. 52 in1_crit_alarm Voltage critical high alarm. From VOLTAGE_OV_FAULT status. 60 curr1_max_alarm Current high alarm. From IOUT_OC_WARN_LIMIT register. 61 curr1_crit_alarm Current critical high alarm. From IOUT_OC_FAULT status. 67 temp1_crit Critical high temperature. From OT_FAULT_LIMIT register. 68 temp1_max_alarm Chip temperature high alarm. Set by comparing 71 temp1_crit_alarm Chip temperature critical high alarm. Set by comparing
|
D | tps40422 | 50 curr1_max_alarm Current high alarm. From IOUT_OC_WARN_LIMIT status. 51 curr1_crit_alarm Current critical high alarm. From IOUT_OC_FAULT status. 52 curr2_alarm Current high alarm. From IOUT_OC_WARNING status. 56 temp1_crit Critical high temperature. From OT_FAULT_LIMIT register. 57 temp1_max_alarm Chip temperature high alarm. Set by comparing 60 temp1_crit_alarm Chip temperature critical high alarm. Set by comparing
|
D | ltc2978 | 69 in1_max_alarm Input voltage high alarm. 73 in1_crit_alarm Input voltage critical high alarm. 91 in[N]_max_alarm Output voltage high alarm. 93 in[N]_crit_alarm Output voltage critical high alarm. 110 temp[N]_crit Critical high temperature. 113 temp[N]_max_alarm Temperature high alarm. 115 temp[N]_crit_alarm Temperature critical high alarm. 138 curr1_max_alarm Input current high alarm. 150 curr[N]_crit Critical high output current. 152 curr[N]_max_alarm Output current high alarm. [all …]
|
D | ucd9200 | 62 in1_max_alarm Voltage high alarm. From VIN_OV_WARNING status. 64 in1_crit_alarm Voltage critical high alarm. From VIN_OV_FAULT status. 73 in[2-5]_max_alarm Voltage high alarm. From VOLTAGE_OV_WARNING status. 75 in[2-5]_crit_alarm Voltage critical high alarm. From VOLTAGE_OV_FAULT status. 86 curr[2-5]_max_alarm Current high alarm. From IOUT_OC_WARNING status. 87 curr[2-5]_crit_alarm Current critical high alarm. From IOUT_OC_FAULT status. 106 temp[1-5]_crit Critical high temperature. From OT_FAULT_LIMIT register. 107 temp[1-5]_max_alarm Temperature high alarm. 108 temp[1-5]_crit_alarm Temperature critical high alarm.
|
D | pmbus | 46 Each monitored channel has its own high and low limits, plus a critical 157 inX_max_alarm Voltage high alarm. From VOLTAGE_OV_WARNING status. 160 inX_crit_alarm Voltage critical high alarm. 171 currX_alarm Current high alarm. 173 currX_max_alarm Current high alarm. 177 currX_crit_alarm Current critical high alarm. 187 powerX_alarm Power high alarm. 189 powerX_crit_alarm Output power critical high alarm. 199 tempX_crit Critical high temperature. 204 tempX_max_alarm Chip temperature high alarm. Set by comparing [all …]
|
D | max16064 | 50 in[1-4]_max_alarm Voltage high alarm. From VOLTAGE_OV_WARNING status. 52 in[1-4]_crit_alarm Voltage critical high alarm. From VOLTAGE_OV_FAULT status. 58 temp1_crit Critical high temperature. From OT_FAULT_LIMIT register. 59 temp1_max_alarm Chip temperature high alarm. Set by comparing 62 temp1_crit_alarm Chip temperature critical high alarm. Set by comparing
|
D | adm9240 | 44 high speed successive approximation ADC allows frequent sampling of all 77 Temperature alarm is asserted once the temperature exceeds the high limit, 108 * User sets unreasonably high low fan speed limit 150 An alarm is asserted when the CI pin goes active high. The ADM9240 164 0 +2.5 V_Error high or low limit exceeded 165 1 VCCP_Error high or low limit exceeded 166 2 +3.3 V_Error high or low limit exceeded 167 3 +5 V_Error high or low limit exceeded 171 8 +12 V_Error high or low limit exceeded 172 9 VCCP2_Error high or low limit exceeded [all …]
|
D | ucd9000 | 78 in[1-12]_max_alarm Voltage high alarm. From VOLTAGE_OV_WARNING status. 80 in[1-12]_crit_alarm Voltage critical high alarm. From VOLTAGE_OV_FAULT status. 88 curr[1-12]_max_alarm Current high alarm. From IOUT_OC_WARNING status. 89 curr[1-12]_crit_alarm Current critical high alarm. From IOUT_OC_FAULT status. 98 temp[1-2]_crit Critical high temperature. From OT_FAULT_LIMIT register. 99 temp[1-2]_max_alarm Temperature high alarm. 100 temp[1-2]_crit_alarm Temperature critical high alarm.
|
D | zl6100 | 120 in1_max_alarm Input voltage high alarm. 122 in1_crit_alarm Input voltage critical high alarm. 131 in2_crit_alarm VMON/VDRV voltage critical high alarm. 141 inX_crit_alarm Critical output voltage critical high alarm. 150 curr1_crit_alarm Output current critical high alarm. 156 temp[12]_crit Critical high temperature. 158 temp[12]_max_alarm Chip temperature high alarm. 160 temp[12]_crit_alarm Chip temperature critical high alarm.
|
D | max34440 | 81 in[1-6]_max_alarm Voltage high alarm. From VOLTAGE_OV_WARNING status. 83 in[1-6]_crit_alarm Voltage critical high alarm. From VOLTAGE_OV_FAULT status. 94 curr[1-6]_max_alarm Current high alarm. From IOUT_OC_WARNING status. 95 curr[1-6]_crit_alarm Current critical high alarm. From IOUT_OC_FAULT status. 116 temp[1-8]_crit Critical high temperature. From OT_FAULT_LIMIT register. 117 temp[1-8]_max_alarm Temperature high alarm. 118 temp[1-8]_crit_alarm Temperature critical high alarm.
|
D | da9055 | 19 Channel 1: ADC_IN1 - high impedance input (0 - 2.5V) 20 Channel 2: ADC_IN2 - high impedance input (0 - 2.5V) 21 Channel 3: ADC_IN3 - high impedance input (0 - 2.5V)
|
D | max16065 | 35 accurately monitor (+/-2.5%) one current channel using a dedicated high-side 47 one current channel using a dedicated high-side current-sense amplifier. The 51 Each monitored channel has its own low and high critical limits. MAX16065, 53 configurable as either low or high secondary limit. MAX16065, MAX16066, 90 Either low or high warning limits are supported
|
D | ds1621 | 40 Output's polarity: 0 = active high, 1 = active low 46 both high and low temperature limits which can be user defined (i.e. 55 stays high until the high limit is met or exceeded. On the other hand 57 "conditioner" equals "active high". Please note that the DS1621 data sheet 63 readings. Be sure to have a high vs. low temperature limit gap of al least 66 The alarm bits are set when the high or low limits are met or exceeded and
|
D | vt1211 | 99 Each measured voltage has an associated low and high limit which triggers an 107 has a high limit which triggers an alarm if crossed. There is an associated 167 Each PWM has 4 associated distinct output duty-cycles: full, high, low and 182 pwm[1-2]_auto_point3_pwm high speed duty-cycle 189 pwm[1-2]_auto_point3_temp high speed temp 201 high speed duty-cycle full speed duty-cycle 202 high speed temp 203 low speed duty-cycle high speed duty-cycle
|
D | da9052 | 22 Channel 4: ADC_IN4 - high impedance input (0 - 2.5V) 23 Channel 5: ADC_IN5 - high impedance input (0 - 2.5V) 24 Channel 6: ADC_IN6 - high impedance input (0 - 2.5V)
|
D | ina2xx | 40 The INA219 is a high-side current shunt and power monitor with an I2C 44 The INA220 is a high or low side current shunt and power monitor with an I2C 50 INA230 and INA231 are high or low side current shunt and power monitors
|
/linux-4.1.27/arch/x86/kernel/ |
D | kvmclock.c | 54 int low, high; in kvm_get_wallclock() local 58 high = ((u64)__pa_symbol(&wall_clock) >> 32); in kvm_get_wallclock() 60 native_write_msr(msr_kvm_wall_clock, low, high); in kvm_get_wallclock() 158 int low, high, ret; in kvm_register_clock() local 166 high = ((u64)slow_virt_to_phys(src) >> 32); in kvm_register_clock() 167 ret = native_write_msr_safe(msr_kvm_system_time, low, high); in kvm_register_clock() 169 cpu, high, low, txt); in kvm_register_clock()
|
D | resource.c | 7 resource_size_t low = 0, high = 0; in resource_clip() local 16 high = res->end - end; in resource_clip() 19 if (low > high) in resource_clip()
|
/linux-4.1.27/include/uapi/linux/ |
D | bcache.h | 23 __u64 high; member 44 KEY_FIELD(KEY_PTRS, high, 60, 3) 45 KEY_FIELD(HEADER_SIZE, high, 58, 2) 46 KEY_FIELD(KEY_CSUM, high, 56, 2) 47 KEY_FIELD(KEY_PINNED, high, 55, 1) 48 KEY_FIELD(KEY_DIRTY, high, 36, 1) 50 KEY_FIELD(KEY_SIZE, high, 20, KEY_SIZE_BITS) 51 KEY_FIELD(KEY_INODE, high, 0, 20) 72 .high = (1ULL << 63) | ((__u64) (size) << 20) | (inode), \
|
D | ultrasound.h | 94 #define GUS_RAMPRANGE(chn, voice, low, high) _GUS_CMD(chn, voice, _GUS_RAMPRANGE, (low), (high)) argument
|
/linux-4.1.27/tools/perf/tests/ |
D | rdpmc.c | 15 unsigned int low, high; in rdpmc() local 17 asm volatile("rdpmc" : "=a" (low), "=d" (high) : "c" (counter)); in rdpmc() 19 return low | ((u64)high) << 32; in rdpmc() 24 unsigned int low, high; in rdtsc() local 26 asm volatile("rdtsc" : "=a" (low), "=d" (high)); in rdtsc() 28 return low | ((u64)high) << 32; in rdtsc()
|
/linux-4.1.27/Documentation/devicetree/bindings/gpio/ |
D | fsl-imx-gpio.txt | 8 by low 16 pins and the second one is for high 16 pins. 12 0 = active high 17 1 = low-to-high edge triggered. 18 2 = high-to-low edge triggered. 19 4 = active high level-sensitive.
|
D | gpio-vf610.txt | 15 0 = active high 20 1 = low-to-high edge triggered. 21 2 = high-to-low edge triggered. 22 4 = active high level-sensitive.
|
D | gpio-nmk.txt | 11 1 = low-to-high edge triggered. 12 2 = high-to-low edge triggered. 13 4 = active high level-sensitive.
|
D | brcm,kona-gpio.txt | 29 1 = low-to-high edge triggered. 30 2 = high-to-low edge triggered. 31 3 = low-to-high or high-to-low edge triggered
|
D | nvidia,tegra20-gpio.txt | 17 1 = low-to-high edge triggered. 18 2 = high-to-low edge triggered. 19 4 = active high level-sensitive.
|
D | gpio-mxs.txt | 17 0 = active high 22 1 = low-to-high edge triggered. 23 2 = high-to-low edge triggered. 24 4 = active high level-sensitive.
|
D | gpio-omap.txt | 17 1 = low-to-high edge triggered. 18 2 = high-to-low edge triggered. 19 4 = active high level-sensitive.
|
D | gpio-mvebu.txt | 29 1 = low-to-high edge triggered. 30 2 = high-to-low edge triggered. 31 4 = active high level-sensitive.
|
D | cavium-octeon-gpio.txt | 23 4 - level triggered active high. 39 * 4 - level active high
|
/linux-4.1.27/fs/btrfs/ |
D | async-thread.c | 54 struct __btrfs_workqueue *high; member 152 ret->high = __btrfs_alloc_workqueue(name, flags, max_active, in btrfs_alloc_workqueue() 154 if (!ret->high) { in btrfs_alloc_workqueue() 328 if (test_bit(WORK_HIGH_PRIO_BIT, &work->flags) && wq->high) in btrfs_queue_work() 329 dest_wq = wq->high; in btrfs_queue_work() 347 if (wq->high) in btrfs_destroy_workqueue() 348 __btrfs_destroy_workqueue(wq->high); in btrfs_destroy_workqueue() 358 if (wq->high) in btrfs_workqueue_set_max() 359 wq->high->max_active = max; in btrfs_workqueue_set_max()
|
/linux-4.1.27/arch/s390/oprofile/ |
D | backtrace.c | 13 unsigned long low, unsigned long high) in __show_trace() argument 20 if (sp < low || sp > high - sizeof(*sf)) in __show_trace() 32 if (sp <= low || sp > high - sizeof(*sf)) in __show_trace() 45 if (sp <= low || sp > high - sizeof(*regs)) in __show_trace()
|
/linux-4.1.27/include/asm-generic/ |
D | io-64-nonatomic-lo-hi.h | 10 u32 low, high; in lo_hi_readq() local 13 high = readl(p + 1); in lo_hi_readq() 15 return low + ((u64)high << 32); in lo_hi_readq()
|
D | io-64-nonatomic-hi-lo.h | 10 u32 low, high; in hi_lo_readq() local 12 high = readl(p + 1); in hi_lo_readq() 15 return low + ((u64)high << 32); in hi_lo_readq()
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-bus-pci-drivers-ehci_hcd | 7 PCI-based EHCI USB controllers (i.e., high-speed USB-2.0 10 high-speed device is plugged in, the connection is routed 15 Sometimes you want to force a high-speed device to connect 23 For example: To force the high-speed device attached to 28 To return the port to high-speed operation: 39 cannot be used to force a port on a high-speed hub to
|
/linux-4.1.27/Documentation/devicetree/bindings/rtc/ |
D | nxp,rtc-2123.txt | 8 - spi-cs-high: PCF2123 needs chipselect high 15 spi-cs-high;
|
D | rtc-palmas.txt | 17 - ti,backup-battery-charge-high-current: Enable high current charging in 19 The high current will be > 100mA. Absence of this property will 30 ti,backup-battery-charge-high-current;
|
/linux-4.1.27/tools/perf/arch/x86/util/ |
D | tsc.c | 43 unsigned int low, high; in rdtsc() local 45 asm volatile("rdtsc" : "=a" (low), "=d" (high)); in rdtsc() 47 return low | ((u64)high) << 32; in rdtsc()
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/ |
D | lpc32xx-mic.txt | 11 1 = low-to-high edge triggered 12 2 = high-to-low edge triggered 13 4 = active high level-sensitive 15 Default for internal sources should be set to 4 (active high).
|
/linux-4.1.27/arch/avr32/kernel/ |
D | stacktrace.c | 27 unsigned long low, high; in save_stack_trace() local 33 high = low + THREAD_SIZE; in save_stack_trace() 36 while (fp >= low && fp <= (high - 8)) { in save_stack_trace()
|
/linux-4.1.27/arch/hexagon/kernel/ |
D | stacktrace.c | 38 unsigned long low, high; in save_stack_trace() local 44 high = low + THREAD_SIZE; in save_stack_trace() 47 while (fp >= low && fp <= (high - sizeof(*frame))) { in save_stack_trace()
|
/linux-4.1.27/arch/blackfin/kernel/ |
D | stacktrace.c | 25 unsigned long low, high; in save_stack_trace() local 31 high = low + THREAD_SIZE; in save_stack_trace() 34 while (fp >= low && fp <= (high - sizeof(*frame))) { in save_stack_trace()
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
D | btc_dpm.c | 2116 if (ps->high.mclk > max_limits->mclk) in btc_apply_state_adjust_rules() 2117 ps->high.mclk = max_limits->mclk; in btc_apply_state_adjust_rules() 2118 if (ps->high.sclk > max_limits->sclk) in btc_apply_state_adjust_rules() 2119 ps->high.sclk = max_limits->sclk; in btc_apply_state_adjust_rules() 2120 if (ps->high.vddc > max_limits->vddc) in btc_apply_state_adjust_rules() 2121 ps->high.vddc = max_limits->vddc; in btc_apply_state_adjust_rules() 2122 if (ps->high.vddci > max_limits->vddci) in btc_apply_state_adjust_rules() 2123 ps->high.vddci = max_limits->vddci; in btc_apply_state_adjust_rules() 2148 mclk = ps->high.mclk; in btc_apply_state_adjust_rules() 2150 vddci = ps->high.vddci; in btc_apply_state_adjust_rules() [all …]
|
D | rv6xx_dpm.c | 241 u32 low, u32 high, in rv6xx_generate_steps() argument 250 rv6xx_convert_clock_to_stepping(rdev, high, &target); in rv6xx_generate_steps() 444 state->high.sclk; in rv6xx_calculate_engine_speed_stepping_parameters() 457 state->high.mclk; in rv6xx_calculate_memory_clock_stepping_parameters() 459 state->high.mclk; in rv6xx_calculate_memory_clock_stepping_parameters() 467 if (state->high.mclk == state->medium.mclk) in rv6xx_calculate_memory_clock_stepping_parameters() 486 pi->hw.vddc[R600_POWER_LEVEL_CTXSW] = state->high.vddc; in rv6xx_calculate_voltage_stepping_parameters() 487 pi->hw.vddc[R600_POWER_LEVEL_HIGH] = state->high.vddc; in rv6xx_calculate_voltage_stepping_parameters() 492 (state->high.flags & ATOM_PPLIB_R600_FLAGS_BACKBIASENABLE) ? true : false; in rv6xx_calculate_voltage_stepping_parameters() 494 (state->high.flags & ATOM_PPLIB_R600_FLAGS_BACKBIASENABLE) ? true : false; in rv6xx_calculate_voltage_stepping_parameters() [all …]
|
/linux-4.1.27/drivers/cpufreq/ |
D | speedstep-smi.c | 100 static int speedstep_smi_get_freqs(unsigned int *low, unsigned int *high) in speedstep_smi_get_freqs() argument 137 *high = high_mhz * 1000; in speedstep_smi_get_freqs() 233 unsigned int *low, *high; in speedstep_cpu_init() local 247 high = &speedstep_freqs[SPEEDSTEP_HIGH].frequency; in speedstep_cpu_init() 249 result = speedstep_smi_get_freqs(low, high); in speedstep_cpu_init() 256 low, high, in speedstep_cpu_init()
|
/linux-4.1.27/arch/m32r/mm/ |
D | mmu.S | 35 seth r3, #high(MMU_REG_BASE) 53 seth r2, #high(tlb_entry_d_dat) 57 seth r2, #high(tlb_entry_d_dat) 64 seth r1, #high(DTLB_BASE) 86 seth r2, #high(tlb_entry_i_dat) 90 seth r2, #high(tlb_entry_i_dat) 97 seth r1, #high(ITLB_BASE) 220 seth r3, #high(MMU_REG_BASE) 234 seth r1, #high(ITLB_BASE) 248 seth r1, #high(DTLB_BASE) [all …]
|
/linux-4.1.27/drivers/net/irda/ |
D | via-ircc.h | 283 __u16 low, high; in SetMaxRxPacketSize() local 286 high = (size & 0x1f00) >> 8; in SetMaxRxPacketSize() 288 WriteReg(iobase, I_CF_H_2, high); in SetMaxRxPacketSize() 417 __u32 low, high; in SetSendByte() local 421 high = (count & 0x0f00) >> 8; in SetSendByte() 423 WriteReg(iobase, TX_C_H, high); in SetSendByte() 437 __u8 low, high; in CkRxRecv() local 441 high = ReadReg(iobase, RX_C_H); in CkRxRecv() 442 wTmp1 = high; in CkRxRecv() 446 high = ReadReg(iobase, RX_C_H); in CkRxRecv() [all …]
|
/linux-4.1.27/Documentation/timers/ |
D | hrtimers.txt | 2 hrtimers - subsystem for high-resolution kernel timers 5 This patch introduces a new subsystem for high-resolution kernel timers. 9 back and forth trying to integrate high-resolution and high-precision 11 such high-resolution timer implementations in practice, we came to the 18 - the forced handling of low-resolution and high-resolution timers in 27 high-res timers. 30 necessitate a more complex handling of high resolution timers, which 40 example: that the timer wheel data structure is too rigid for high-res 62 high-resolution timer subsystem as well. 64 While this subsystem does not offer high-resolution clock sources just [all …]
|
D | highres.txt | 25 - high resolution timer functionality 79 functionality like high resolution timers or dynamic ticks. 99 accounting, profiling, and high resolution timers. 128 utilize the high resolution and dynamic tick functionalities without any change 130 enabling of high resolution timers and dynamic ticks is simply provided by 138 high resolution timer functionality 141 During system boot it is not possible to use the high resolution timer 146 the high resolution functionality can work. Up to the point where hrtimers are 151 switching to high resolution mode. This ensures also that a kernel which is 152 configured for high resolution timers can run on a system which lacks the [all …]
|
/linux-4.1.27/arch/metag/lib/ |
D | cmpdi2.S | 10 ! low high 17 ! high words differ? 28 ! signed compare high words
|
D | ucmpdi2.S | 10 ! low high 17 ! high words
|
/linux-4.1.27/Documentation/devicetree/bindings/interrupt-controller/ |
D | atmel,aic.txt | 12 1 = low-to-high edge triggered. 13 2 = high-to-low edge triggered. 14 4 = active high level-sensitive. 17 Default flag for internal sources should be set to 4 (active high).
|
D | snps,dw-apb-ictl.txt | 20 - 32 maps to bit 0 of high interrupts, 21 - 33 maps to bit 1 of high interrupts,
|
/linux-4.1.27/lib/fonts/ |
D | Kconfig | 28 This is the "high resolution" font for the VGA frame buffer (the one 41 This is the "high resolution" font for the VGA frame buffer (the one 51 Small console font with Macintosh-style high-half glyphs. Some Mac 67 Small console font with PC-style control-character and high-half 75 Small console font with PC-style control characters and high-half 94 This is the high resolution console font for Sun machines. Say Y. 100 This is the high resolution console font for Sun machines with very 108 This is a high resolution console font for machines with very
|
/linux-4.1.27/drivers/clk/ |
D | clk-axi-clkgen.c | 187 unsigned int *high, unsigned int *edge, unsigned int *nocount) in axi_clkgen_calc_clk_params() argument 194 *high = divider / 2; in axi_clkgen_calc_clk_params() 196 *low = divider - *high; in axi_clkgen_calc_clk_params() 364 unsigned int high; in axi_clkgen_set_rate() local 381 axi_clkgen_calc_clk_params(dout, &low, &high, &edge, &nocount); in axi_clkgen_set_rate() 383 (high << 6) | low, 0xefff); in axi_clkgen_set_rate() 387 axi_clkgen_calc_clk_params(d, &low, &high, &edge, &nocount); in axi_clkgen_set_rate() 389 (edge << 13) | (nocount << 12) | (high << 6) | low, 0x3fff); in axi_clkgen_set_rate() 391 axi_clkgen_calc_clk_params(m, &low, &high, &edge, &nocount); in axi_clkgen_set_rate() 393 (high << 6) | low, 0xefff); in axi_clkgen_set_rate()
|
/linux-4.1.27/Documentation/devicetree/bindings/video/ |
D | display-timing.txt | 26 - hsync-active: hsync pulse is active low/high/ignored 27 - vsync-active: vsync pulse is active low/high/ignored 28 - de-active: data-enable pulse is active low/high/ignored 30 - active high = drive pixel data on rising edge/ 40 <1>: high active
|
/linux-4.1.27/drivers/thermal/ |
D | rockchip_thermal.c | 172 int high, low, mid; in rk_tsadcv2_temp_to_code() local 175 high = ARRAY_SIZE(v2_code_table) - 1; in rk_tsadcv2_temp_to_code() 176 mid = (high + low) / 2; in rk_tsadcv2_temp_to_code() 178 if (temp < v2_code_table[low].temp || temp > v2_code_table[high].temp) in rk_tsadcv2_temp_to_code() 181 while (low <= high) { in rk_tsadcv2_temp_to_code() 185 high = mid - 1; in rk_tsadcv2_temp_to_code() 188 mid = (low + high) / 2; in rk_tsadcv2_temp_to_code() 197 unsigned int high = ARRAY_SIZE(v2_code_table) - 1; in rk_tsadcv2_code_to_temp() local 198 unsigned int mid = (low + high) / 2; in rk_tsadcv2_code_to_temp() 206 while (low <= high && mid) { in rk_tsadcv2_code_to_temp() [all …]
|
/linux-4.1.27/arch/m32r/kernel/ |
D | head.S | 145 seth r4, #high(MATM) 157 seth r4, #high(M32R_ICU_ISTS_ADDR) 163 seth r4, #high(M32R_ICU_IMASK_ADDR) 168 seth r4, #high(M32R_IRQ_IPI5) 175 seth r5, #high(M32R_CPUID_PORTL) 207 seth r4, #high(MATM) 213 seth r5, #high(__PAGE_OFFSET) 223 seth r5, #high(__PAGE_OFFSET)
|
/linux-4.1.27/fs/adfs/ |
D | inode.c | 172 unsigned int high, low; in adfs_adfs2unix_time() local 183 high = ADFS_I(inode)->loadaddr & 0xFF; /* top 8 bits of timestamp */ in adfs_adfs2unix_time() 189 nsec = (((s64) high << 32) | (s64) low) * 10000000; /* cs to ns */ in adfs_adfs2unix_time() 217 unsigned int high, low; in adfs_unix2adfs_time() local 222 high = (secs / 256) * 100 + (low >> 8) + 0x336e996a; in adfs_unix2adfs_time() 224 ADFS_I(inode)->loadaddr = (high >> 24) | in adfs_unix2adfs_time() 226 ADFS_I(inode)->execaddr = (low & 255) | (high << 8); in adfs_unix2adfs_time()
|
/linux-4.1.27/Documentation/video4linux/ |
D | si476x.txt | 88 0x00 | mxhi | 0 - FM Mixer PD high threshold is 90 | | 1 - FM Mixer PD high threshold is 95 0x02 | lnahi | ditto for FM LNA PD high 117 | | the Multipath high threshold 119 | | the Multipath high threshold 124 | | crossed high threshold 126 | | crossed high threshold 130 0x04 | rssihint | ditto for RSSI high threshold
|
D | README.pvrusb2 | 38 tear-down, arbitration, and interaction with high level 54 right now the V4L high level interface is the most complete, the 55 sysfs high level interface will work equally well for similar 57 possible to produce a DVB high level interface that can sit right 88 here. Hotplugging is ultimately coordinated here. All high level 121 access to the driver should be through one of the high level 122 interfaces (e.g. V4L, sysfs, etc), and in fact even those high 163 through one of the high level interfaces). 181 pvrusb2-sysfs.[ch] - This is the high level interface which ties the 193 pvrusb2-v4l2.[ch] - This is the high level interface which ties the
|
/linux-4.1.27/drivers/block/paride/ |
D | Kconfig | 8 comment "Parallel IDE high-level drivers" 15 This option enables the high-level driver for IDE-type disk devices 29 This option enables the high-level driver for ATAPI CD-ROM devices 45 This option enables the high-level driver for ATAPI disk devices 59 This option enables the high-level driver for ATAPI tape devices 72 This option enables a special high-level driver for generic ATAPI 105 have a high-level driver for the type of device that you want to 123 called bpck. You must also have a high-level driver for the type 142 called bpck6. You must also have a high-level driver for the type 154 a high-level driver for the type of device that you want to support. [all …]
|
/linux-4.1.27/drivers/media/platform/vivid/ |
D | vivid-radio-rx.c | 162 unsigned low, high; in vivid_radio_rx_s_hw_freq_seek() local 192 high = a->rangehigh; in vivid_radio_rx_s_hw_freq_seek() 199 high = vivid_radio_bands[band].rangehigh; in vivid_radio_rx_s_hw_freq_seek() 202 freq = clamp(dev->radio_rx_freq, low, high); in vivid_radio_rx_s_hw_freq_seek() 206 if (freq > high) { in vivid_radio_rx_s_hw_freq_seek() 218 freq = spacing * ((high + spacing - 1) / spacing) - spacing; in vivid_radio_rx_s_hw_freq_seek()
|
/linux-4.1.27/arch/sparc/kernel/ |
D | sys_sparc32.c | 54 asmlinkage long sys32_truncate64(const char __user * path, unsigned long high, unsigned long low) in sys32_truncate64() argument 56 if ((int)high < 0) in sys32_truncate64() 59 return sys_truncate(path, (high << 32) | low); in sys32_truncate64() 62 asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long high, unsigned long low) in sys32_ftruncate64() argument 64 if ((int)high < 0) in sys32_ftruncate64() 67 return sys_ftruncate(fd, (high << 32) | low); in sys32_ftruncate64()
|
D | sun4d_smp.c | 288 register int high = smp_highest_cpu; in sun4d_cross_call() local 319 for (i = 0; i <= high; i++) { in sun4d_cross_call() 337 } while (++i <= high); in sun4d_cross_call() 345 } while (++i <= high); in sun4d_cross_call()
|
D | leon_smp.c | 381 register int high = NR_CPUS - 1; in leon_cross_call() local 409 for (i = 0; i <= high; i++) { in leon_cross_call() 429 } while (++i <= high); in leon_cross_call() 438 } while (++i <= high); in leon_cross_call()
|
/linux-4.1.27/arch/arm64/kernel/ |
D | stacktrace.c | 40 unsigned long high, low; in unwind_frame() local 44 high = ALIGN(low, THREAD_SIZE); in unwind_frame() 46 if (fp < low || fp > high - 0x18 || fp & 0xf) in unwind_frame()
|
/linux-4.1.27/net/ipv4/ |
D | sysctl_net_ipv4.c | 86 static void inet_get_ping_group_range_table(struct ctl_table *table, kgid_t *low, kgid_t *high) in inet_get_ping_group_range_table() argument 96 *high = data[1]; in inet_get_ping_group_range_table() 101 static void set_ping_group_range(struct ctl_table *table, kgid_t low, kgid_t high) in set_ping_group_range() argument 108 data[1] = high; in set_ping_group_range() 120 kgid_t low, high; in ipv4_ping_group_range() local 129 inet_get_ping_group_range_table(table, &low, &high); in ipv4_ping_group_range() 131 urange[1] = from_kgid_munged(user_ns, high); in ipv4_ping_group_range() 136 high = make_kgid(user_ns, urange[1]); in ipv4_ping_group_range() 137 if (!gid_valid(low) || !gid_valid(high) || in ipv4_ping_group_range() 138 (urange[1] < urange[0]) || gid_lt(high, low)) { in ipv4_ping_group_range() [all …]
|
/linux-4.1.27/arch/unicore32/kernel/ |
D | stacktrace.c | 37 unsigned long high, low; in unwind_frame() local 42 high = ALIGN(low, THREAD_SIZE); in unwind_frame() 45 if (fp < (low + 12) || fp + 4 >= high) in unwind_frame()
|
/linux-4.1.27/Documentation/devicetree/bindings/watchdog/ |
D | gpio-wdt.txt | 8 - toggle: Either a high-to-low or a low-to-high transition clears 11 - level: Low or high level starts counting WDT timeout,
|
/linux-4.1.27/arch/tile/kernel/vdso/ |
D | vgettimeofday.c | 24 unsigned int high = __insn_mfspr(SPR_CYCLE_HIGH); in get_cycles_inline() local 28 while (unlikely(high != high2)) { in get_cycles_inline() 30 high = high2; in get_cycles_inline() 34 return (((cycles_t)high) << 32) | low; in get_cycles_inline()
|
/linux-4.1.27/drivers/ide/ |
D | ide-lib.c | 38 u32 high, low; in ide_get_lba_addr() local 43 high = (tf->lbah << 16) | (tf->lbam << 8) | tf->lbal; in ide_get_lba_addr() 45 high = tf->device & 0xf; in ide_get_lba_addr() 47 return ((u64)high << 24) | low; in ide_get_lba_addr()
|
/linux-4.1.27/arch/arc/kernel/ |
D | time.c | 78 struct { u32 high, low; }; in arc_counter_read() member 80 struct { u32 low, high; }; in arc_counter_read() 91 : "=r" (stamp.low), "=r" (stamp.high)); in arc_counter_read()
|
/linux-4.1.27/drivers/net/wireless/b43legacy/ |
D | phy.c | 1295 value |= ((u8)(pair->high)) << 8; in b43legacy_lo_write() 1300 pair->high < -8 || pair->high > 8) { in b43legacy_lo_write() 1304 pair->low, pair->high); in b43legacy_lo_write() 1382 { .high = 1, .low = 1, }, in b43legacy_phy_lo_g_state() 1383 { .high = 1, .low = 0, }, in b43legacy_phy_lo_g_state() 1384 { .high = 1, .low = -1, }, in b43legacy_phy_lo_g_state() 1385 { .high = 0, .low = -1, }, in b43legacy_phy_lo_g_state() 1386 { .high = -1, .low = -1, }, in b43legacy_phy_lo_g_state() 1387 { .high = -1, .low = 0, }, in b43legacy_phy_lo_g_state() 1388 { .high = -1, .low = 1, }, in b43legacy_phy_lo_g_state() [all …]
|
/linux-4.1.27/sound/pci/emu10k1/ |
D | emuproc.c | 301 u32 low, high; in snd_emu10k1_proc_acode_read() local 304 high = snd_emu10k1_efx_read(emu, pc * 2 + 1); in snd_emu10k1_proc_acode_read() 307 (high >> 24) & 0x0f, in snd_emu10k1_proc_acode_read() 308 (high >> 12) & 0x7ff, in snd_emu10k1_proc_acode_read() 309 (high >> 0) & 0x7ff, in snd_emu10k1_proc_acode_read() 313 high, low); in snd_emu10k1_proc_acode_read() 316 (high >> 20) & 0x0f, in snd_emu10k1_proc_acode_read() 317 (high >> 10) & 0x3ff, in snd_emu10k1_proc_acode_read() 318 (high >> 0) & 0x3ff, in snd_emu10k1_proc_acode_read() 322 high, low); in snd_emu10k1_proc_acode_read()
|
/linux-4.1.27/arch/m32r/boot/ |
D | setup.S | 124 seth r0, #high(MMU_REG_BASE) ; Set MMU_REG_BASE higher 131 seth r0,#high(M32R_MCDCAR) 153 seth r5, #high(__PAGE_OFFSET) 159 seth r4, #high(M32R_ICU_IMASK_PORTL)
|
/linux-4.1.27/drivers/net/ethernet/stmicro/stmmac/ |
D | dwmac_lib.c | 223 unsigned int high, unsigned int low) in stmmac_set_mac_addr() argument 232 writel(data | GMAC_HI_REG_AE, ioaddr + high); in stmmac_set_mac_addr() 251 unsigned int high, unsigned int low) in stmmac_get_mac_addr() argument 256 hi_addr = readl(ioaddr + high); in stmmac_get_mac_addr()
|
/linux-4.1.27/arch/sh/kernel/cpu/sh2a/ |
D | fpu.c | 134 unsigned long long high, low; in mult64() local 141 high = 0LL; in mult64() 144 high++; in mult64() 148 high++; in mult64() 150 high += (sub1 >> 32) + (sub2 >> 32); in mult64() 151 high += sub0; in mult64() 153 *highp = high; in mult64()
|
/linux-4.1.27/arch/frv/kernel/ |
D | gdb-io.c | 83 unsigned value, high, low; in gdbstub_set_baud() local 90 high = __serial_clock_speed_HZ / 16 / value; in gdbstub_set_baud() 94 if (low + (high - low) / 2 > baud) in gdbstub_set_baud()
|
D | debug-stub.c | 203 unsigned value, high, low; in console_set_baud() local 210 high = __serial_clock_speed_HZ / 16 / value; in console_set_baud() 214 if (low + (high - low) / 2 > baud) in console_set_baud()
|
/linux-4.1.27/Documentation/devicetree/bindings/media/i2c/ |
D | adv7343.txt | 3 The ADV7343 are high speed, digital-to-analog video encoders in a 64-lead LQFP 4 package. Six high speed, 3.3 V, 11-bit video DACs provide support for composite 6 definition (SD), enhanced definition (ED), or high definition (HD) video
|
/linux-4.1.27/arch/tile/include/asm/ |
D | compat.h | 277 long compat_sys_truncate64(char __user *filename, u32 dummy, u32 low, u32 high); 278 long compat_sys_ftruncate64(unsigned int fd, u32 dummy, u32 low, u32 high); 280 u32 dummy, u32 low, u32 high); 282 u32 dummy, u32 low, u32 high);
|
/linux-4.1.27/Documentation/x86/ |
D | zero-page.txt | 22 0C0/004 ALL ext_ramdisk_image ramdisk_image high 32bits 23 0C4/004 ALL ext_ramdisk_size ramdisk_size high 32bits 24 0C8/004 ALL ext_cmd_line_ptr cmd_line_ptr high 32bits
|
/linux-4.1.27/arch/arm/mach-mv78xx0/include/mach/ |
D | entry-macro.S | 25 @ if no low interrupts set, check high interrupts 32 @ if no high interrupts set, check error interrupts
|
/linux-4.1.27/drivers/net/ethernet/ti/ |
D | cpts.c | 46 return (event->high >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK; in event_type() 49 static int cpts_fifo_pop(struct cpts *cpts, u32 *high, u32 *low) in cpts_fifo_pop() argument 54 *high = cpts_read32(cpts, event_high); in cpts_fifo_pop() 80 event->high = hi; in cpts_fifo_read() 308 mtype = (event->high >> MESSAGE_TYPE_SHIFT) & MESSAGE_TYPE_MASK; in cpts_find_ts() 309 seqid = (event->high >> SEQUENCE_ID_SHIFT) & SEQUENCE_ID_MASK; in cpts_find_ts()
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/tegra/ |
D | nvidia,tegra20-pmc.txt | 32 - nvidia,core-power-req-active-high : Boolean, core power request active-high 33 - nvidia,sys-clock-req-active-high : Boolean, system clock request active-high 85 nvidia,core-power-req-active-high; 86 nvidia,sys-clock-req-active-high;
|
/linux-4.1.27/sound/synth/emux/ |
D | emux_effect.c | 53 int low, high; /* value range */ member 114 else if (effect > parm_defs[type].high) in effect_set_byte() 115 effect = parm_defs[type].high; in effect_set_byte() 131 else if (effect > parm_defs[type].high) in effect_set_word() 132 effect = parm_defs[type].high; in effect_set_word()
|
/linux-4.1.27/Documentation/devicetree/bindings/leds/ |
D | leds-lp8860.txt | 3 The LP8860-Q1 is an high-efficiency LED 4 driver with boost controller. It has 4 high-precision
|
/linux-4.1.27/Documentation/devicetree/bindings/sound/ |
D | cs4265.txt | 10 the state of the AD0 pin. If AD0 is high, the i2c address is 0x4f. 20 codec_ad0_high: cs4265@4f { /* AD0 Pin is high */
|
/linux-4.1.27/arch/arm/kernel/ |
D | stacktrace.c | 27 unsigned long high, low; in unwind_frame() local 32 high = ALIGN(low, THREAD_SIZE); in unwind_frame() 35 if (fp < low + 12 || fp > high - 4) in unwind_frame()
|
/linux-4.1.27/arch/powerpc/platforms/powermac/ |
D | nvram.c | 241 u32 low, high; in core99_calc_adler() local 245 high = 0; in core99_calc_adler() 248 high %= 65521UL; in core99_calc_adler() 249 high %= 65521UL; in core99_calc_adler() 252 high += low; in core99_calc_adler() 255 high %= 65521UL; in core99_calc_adler() 257 return (high << 16) | low; in core99_calc_adler()
|
/linux-4.1.27/Documentation/devicetree/bindings/ |
D | open-pic.txt | 45 0 = low-to-high edge triggered 47 2 = active high level-sensitive 48 3 = high-to-low edge triggered 84 // Interrupt source '42' that is active high level-sensitive.
|
/linux-4.1.27/Documentation/devicetree/bindings/mfd/ |
D | twl6040.txt | 3 The TWL6040s are 8-channel high quality low-power audio codecs providing audio, 21 - enable-active-high: To power on the twl6040 during boot. 51 enable-active-high;
|
D | qcom-pm8xxx.txt | 41 1 = low-to-high edge triggered 42 2 = high-to-low edge triggered 43 4 = active high level-sensitive
|
/linux-4.1.27/drivers/gpio/ |
D | gpio-lpc32xx.c | 197 unsigned pin, int high) in __set_gpio_level_p012() argument 199 if (high) in __set_gpio_level_p012() 208 unsigned pin, int high) in __set_gpio_level_p3() argument 212 if (high) in __set_gpio_level_p3() 219 unsigned pin, int high) in __set_gpo_level_p3() argument 221 if (high) in __set_gpo_level_p3()
|
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/4xx/ |
D | hsta.txt | 5 The 476gtr SoC contains a high speed serial assist module attached 6 between the plb4 and plb6 system buses to provide high speed data
|
/linux-4.1.27/drivers/target/sbp/ |
D | sbp_target.h | 87 __be32 high; member 198 return (u64)(be32_to_cpu(ptr->high) & 0x0000ffff) << 32 | in sbp2_pointer_to_addr() 204 ptr->high = cpu_to_be32(addr >> 32); in addr_to_sbp2_pointer()
|
/linux-4.1.27/kernel/ |
D | kallsyms.c | 220 unsigned long i, low, high, mid; in get_symbol_pos() local 227 high = kallsyms_num_syms; in get_symbol_pos() 229 while (high - low > 1) { in get_symbol_pos() 230 mid = low + (high - low) / 2; in get_symbol_pos() 234 high = mid; in get_symbol_pos()
|
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/ |
D | qcom,pmic-mpp.txt | 101 - bias-high-impedance: 104 Definition: The specified pins will put in high-Z mode and disabled. 112 - output-high: 116 high. 134 and/or output-high, output-low MPP could operate as
|
D | qcom,pmic-gpio.txt | 126 - bias-high-impedance: 129 Definition: The specified pins will put in high-Z mode and disabled. 136 - output-high: 140 high. 161 1: high (PMIC_GPIO_STRENGTH_HIGH) 0.9mA @ 1.8V - 1.9mA @ 2.6V
|
D | nvidia,tegra210-pinmux.txt | 56 - nvidia,io-hv: Integer. Select high-voltage receivers. 58 high: TEGRA_PIN_ENABLE 59 - nvidia,high-speed-mode: Integer. Enable high speed mode the pins. 61 high: TEGRA_PIN_ENABLE 64 high: TEGRA_PIN_ENABLE
|
/linux-4.1.27/Documentation/gpio/ |
D | gpio.txt | 43 - Output values are writable (high=1, low=0). Some chips also have 79 ("high"), and inactive when it is 0 ("low"). However in practice the signal of a 83 being either active-high ("1" means "active", the default) or active-low ("0" 90 level is actually driven), or "open source" (where only the high signal level is 92 used for TTL. A pullup or pulldown resistor causes the high or low signal level. 111 high signal and configuring the GPIO as input for low. This open drain/open 114 If you are "driving" the signal high but gpiod_get_value(gpio) reports a low
|
/linux-4.1.27/drivers/usb/gadget/udc/ |
D | Kconfig | 60 USBA is the integrated high-speed USB Device controller on 68 high speed USB Device Port with support for four fixed endpoints 100 high speed or full speed USB device. This driver supppors 158 supports both full and high speed USB 2.0 data transfers. 170 that supports both full and high speed USB 2.0 data transfers. 219 Marvell Socs (including PXA and MMP series) include a high speed 220 USB2.0 OTG controller, which can be configured as high speed or 238 supports both full and high speed USB 2.0 data transfers. 282 both full and high speed USB 2.0 data transfers. 305 supports both full and high speed USB 2.0 data transfers. [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/extcon/ |
D | extcon-rt8973a.txt | 6 voltage system from abnormal high input voltage (up to 28V) and supports high
|
/linux-4.1.27/Documentation/devicetree/bindings/mtd/ |
D | lpc32xx-mlc.txt | 36 nxp,rd-high = <31250000>; 38 nxp,wr-high = <40000000>;
|
/linux-4.1.27/Documentation/devicetree/bindings/mmc/ |
D | mmc.txt | 27 - cap-sd-highspeed: SD high-speed timing is supported 28 - cap-mmc-highspeed: MMC high-speed timing is supported 37 - mmc-ddr-1_8v: eMMC high-speed DDR mode(1.8V I/O) is supported 38 - mmc-ddr-1_2v: eMMC high-speed DDR mode(1.2V I/O) is supported 50 the CD line is active high, i.e. it is high, when a card is inserted. Similar
|
/linux-4.1.27/Documentation/usb/ |
D | ehci.txt | 3 The EHCI driver is used to talk to high speed USB 2.0 devices using 20 high speed "split transactions" that don't waste transfer bandwidth. 29 been available since late 2001, and other kinds of high speed devices 61 transfers can't share much code with the code for high speed ISO transfers, 63 most USB audio and video devices can't be connected to high speed buses. 129 can't, such as "high bandwidth" periodic (interrupt or ISO) transfers. 131 periodic transfers) use different encodings when operating at high speed. 145 individual high speed packets, driver intelligence, and of course the 206 help make high speed transfers run as fast as they can. 211 to trigger "high bandwidth" modes.
|
/linux-4.1.27/drivers/scsi/isci/ |
D | port_config.c | 90 if (address_one.high > address_two.high) { in sci_sas_address_compare() 92 } else if (address_one.high < address_two.high) { in sci_sas_address_compare() 253 sas_address.high = 0; in sci_mpc_agent_validate_phy_configuration()
|
/linux-4.1.27/fs/xfs/libxfs/ |
D | xfs_inode_fork.c | 1538 int high; /* upper boundary in search */ in xfs_iext_bno_to_ext() local 1555 high = erp->er_extcount - 1; in xfs_iext_bno_to_ext() 1558 high = nextents - 1; in xfs_iext_bno_to_ext() 1561 while (low <= high) { in xfs_iext_bno_to_ext() 1562 idx = (low + high) >> 1; in xfs_iext_bno_to_ext() 1567 high = idx - 1; in xfs_iext_bno_to_ext() 1609 int high; /* binary search upper limit */ in xfs_iext_bno_to_irec() local 1616 high = nlists - 1; in xfs_iext_bno_to_irec() 1617 while (low <= high) { in xfs_iext_bno_to_irec() 1618 erp_idx = (low + high) >> 1; in xfs_iext_bno_to_irec() [all …]
|
/linux-4.1.27/arch/powerpc/include/asm/ |
D | qe_ic.h | 77 void qe_ic_set_highest_priority(unsigned int virq, int high); 79 int qe_ic_set_high_priority(unsigned int virq, unsigned int priority, int high);
|