/linux-4.4.14/arch/x86/include/asm/ |
D | msr.h | 37 unsigned long low, high; in native_read_tscp() local 39 : "=a" (low), "=d" (high), "=c" (*aux)); in native_read_tscp() 40 return low | ((u64)high << 32); in native_read_tscp() 51 #define DECLARE_ARGS(val, low, high) unsigned long low, high argument 52 #define EAX_EDX_VAL(val, low, high) ((low) | (high) << 32) argument 53 #define EAX_EDX_RET(val, low, high) "=a" (low), "=d" (high) argument 55 #define DECLARE_ARGS(val, low, high) unsigned long long val argument 56 #define EAX_EDX_VAL(val, low, high) (val) argument 57 #define EAX_EDX_RET(val, low, high) "=A" (val) argument 62 DECLARE_ARGS(val, low, high); in native_read_msr() [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()
|
/linux-4.4.14/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.4.14/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.4.14/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 …]
|
/linux-4.4.14/include/linux/ |
D | math64.h | 178 u32 high, low; in mul_u64_u64_shr() member 180 u32 low, high; in mul_u64_u64_shr() 190 rm.ll = (u64)a0.l.low * b0.l.high; in mul_u64_u64_shr() 191 rn.ll = (u64)a0.l.high * b0.l.low; in mul_u64_u64_shr() 192 rh.ll = (u64)a0.l.high * b0.l.high; in mul_u64_u64_shr() 199 rl.l.high = c = (u64)rl.l.high + rm.l.low + rn.l.low; in mul_u64_u64_shr() 200 rh.l.low = c = (c >> 32) + rm.l.high + rn.l.high + rh.l.low; in mul_u64_u64_shr() 201 rh.l.high = (c >> 32) + rh.l.high; in mul_u64_u64_shr() 224 u32 high, low; in mul_u64_u32_div() member 226 u32 low, high; in mul_u64_u32_div() [all …]
|
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()
|
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()
|
/linux-4.4.14/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.4.14/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 | 52 unsigned long low, high; /* limits of blocked memory range */ in default_machine_kexec_prepare() local 81 high = low + htab_size_bytes; in default_machine_kexec_prepare() 87 if ((begin < high) && (end > low)) in default_machine_kexec_prepare() 100 high = low + (*sizep); in default_machine_kexec_prepare() 106 if ((begin < high) && (end > low)) in default_machine_kexec_prepare()
|
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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 | 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 | cmpdi2.c | 32 if (au.s.high < bu.s.high) in __cmpdi2() 34 else if (au.s.high > bu.s.high) in __cmpdi2()
|
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.4.14/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 | 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 | 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.4.14/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 | 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 | 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.4.14/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.4.14/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.4.14/arch/h8300/lib/ |
D | ashrdi3.c | 14 w.s.high = uu.s.high >> (sizeof (Wtype) * BITS_PER_UNIT - 1); in __ashrdi3() 15 w.s.low = uu.s.high >> -bm; in __ashrdi3() 17 const UWtype carries = (UWtype) uu.s.high << bm; in __ashrdi3() 19 w.s.high = uu.s.high >> b; in __ashrdi3()
|
D | lshrdi3.c | 13 w.s.high = 0; in __lshrdi3() 14 w.s.low = (UWtype) uu.s.high >> -bm; in __lshrdi3() 16 const UWtype carries = (UWtype) uu.s.high << bm; in __lshrdi3() 18 w.s.high = (UWtype) uu.s.high >> b; in __lshrdi3()
|
D | ucmpdi2.c | 8 if ((UWtype) au.s.high < (UWtype) bu.s.high) in __ucmpdi2() 10 else if ((UWtype) au.s.high > (UWtype) bu.s.high) in __ucmpdi2()
|
D | muldi3.c | 30 umul_ppmm(__w.s.high, __w.s.low, u, v); \ 40 w.s.high += ((UWtype) uu.s.low * (UWtype) vv.s.high in __muldi3() 41 + (UWtype) uu.s.high * (UWtype) vv.s.low); in __muldi3()
|
D | ashldi3.c | 15 w.s.high = (UWtype) uu.s.low << -bm; in __ashldi3() 20 w.s.high = ((UWtype) uu.s.high << b) | carries; in __ashldi3()
|
/linux-4.4.14/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.4.14/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 …]
|
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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 | 53 struct stack_frame *sf, *low, *high; in thread_saved_pc() local 58 high = (struct stack_frame *) task_pt_regs(tsk); in thread_saved_pc() 60 if (sf <= low || sf > high) in thread_saved_pc() 63 if (sf <= low || sf > high) in thread_saved_pc() 215 struct stack_frame *sf, *low, *high; in get_wchan() local 222 high = (struct stack_frame *) task_pt_regs(p); in get_wchan() 224 if (sf <= low || sf > high) in get_wchan() 228 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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/arch/x86/kernel/cpu/mcheck/ |
D | mce_amd.c | 228 u32 low = 0, high = 0; in deferred_error_interrupt_enable() local 231 if (rdmsr_safe(MSR_CU_DEF_ERR, &low, &high)) in deferred_error_interrupt_enable() 247 wrmsr(MSR_CU_DEF_ERR, low, high); in deferred_error_interrupt_enable() 255 u32 low = 0, high = 0, address = 0; in mce_amd_feature_init() local 272 if (rdmsr_safe(address, &low, &high)) in mce_amd_feature_init() 275 if (!(high & MASK_VALID_HI)) in mce_amd_feature_init() 278 if (!(high & MASK_CNTP_HI) || in mce_amd_feature_init() 279 (high & MASK_LOCKED_HI)) in mce_amd_feature_init() 290 b.interrupt_capable = lvt_interrupt_supported(bank, high); in mce_amd_feature_init() 296 new = (high & MASK_LVTOFF_HI) >> 20; in mce_amd_feature_init() [all …]
|
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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 | 145 nvidia,high-speed-mode = <TEGRA_PIN_DISABLE>; 348 ti,vsel0-state-high; 349 ti,vsel1-state-high; 371 nvidia,core-power-req-active-high; 372 nvidia,sys-clock-req-active-high; 458 enable-active-high; 471 enable-active-high; 483 enable-active-high; 494 enable-active-high; 504 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 | 201 bias-high-impedance; 224 bias-high-impedance; 308 bias-high-impedance; 321 bias-high-impedance; 342 bias-high-impedance; 365 bias-high-impedance;
|
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; 570 enable-active-high; 588 enable-active-high; 600 enable-active-high; 611 enable-active-high; 623 enable-active-high; 635 enable-active-high; 651 enable-active-high; [all …]
|
D | rk3288-veyron-speedy.dts | 59 enable-active-high; 69 enable-active-high; 81 enable-active-high; 104 enable-active-high; 111 enable-active-high;
|
D | zynq-zc706.dts | 149 bias-high-impedance; 229 bias-high-impedance; 242 bias-high-impedance; 263 bias-high-impedance; 286 bias-high-impedance;
|
D | rk3288-veyron-jaq.dts | 59 enable-active-high; 69 enable-active-high; 81 enable-active-high; 119 enable-active-high; 126 enable-active-high;
|
D | rk3288-veyron-minnie.dts | 57 enable-active-high; 68 enable-active-high; 78 enable-active-high; 157 enable-active-high; 164 enable-active-high;
|
D | rk3288-veyron-jerry.dts | 58 enable-active-high; 68 enable-active-high; 80 enable-active-high; 116 enable-active-high; 123 enable-active-high;
|
/linux-4.4.14/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.4.14/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 | max20751 | 52 in1_max_alarm Input voltage high alarm. 63 in2_max_alarm Output voltage high alarm. 68 curr1_alarm Current high alarm. 72 temp1_crit Critical high temperature. 73 temp1_max_alarm Chip temperature high alarm. 74 temp1_crit_alarm Chip temperature critical high alarm.
|
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 | 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 | 50 Each monitored channel has its own high and low limits, plus a critical 161 inX_max_alarm Voltage high alarm. From VOLTAGE_OV_WARNING status. 164 inX_crit_alarm Voltage critical high alarm. 175 currX_alarm Current high alarm. 177 currX_max_alarm Current high alarm. 181 currX_crit_alarm Current critical high alarm. 191 powerX_alarm Power high alarm. 193 powerX_crit_alarm Output power critical high alarm. 203 tempX_crit Critical high temperature. 208 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 | ltc2978 | 108 in1_max_alarm Input voltage high alarm. 114 in1_crit_alarm Input voltage critical high alarm. 134 in[N]_max_alarm Output voltage high alarm. 136 in[N]_crit_alarm Output voltage critical high alarm. 157 temp[N]_crit Critical high temperature. 161 temp[N]_max_alarm Temperature high alarm. 163 temp[N]_crit_alarm Temperature critical high alarm. 190 curr1_max_alarm Input current high alarm. 203 curr[N]_crit Critical high output current. 205 curr[N]_max_alarm Output current high alarm. [all …]
|
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)
|
/linux-4.4.14/tools/perf/arch/x86/tests/ |
D | rdpmc.c | 14 unsigned int low, high; in rdpmc() local 16 asm volatile("rdpmc" : "=a" (low), "=d" (high) : "c" (counter)); in rdpmc() 18 return low | ((u64)high) << 32; in rdpmc() 23 unsigned int low, high; in rdtsc() local 25 asm volatile("rdtsc" : "=a" (low), "=d" (high)); in rdtsc() 27 return low | ((u64)high) << 32; in rdtsc()
|
/linux-4.4.14/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), \
|
/linux-4.4.14/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 | gpio-zynq.txt | 18 1 = low-to-high edge triggered. 19 2 = high-to-low edge triggered. 20 4 = active high level-sensitive.
|
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-xlp.txt | 25 1 = low to high edge triggered. 26 2 = high to low edge triggered. 27 4 = active high level-sensitive.
|
D | brcm,brcmstb-gpio.txt | 19 bit[0]: polarity (0 for active-high, 1 for active-low) 47 1 = low-to-high edge triggered 48 2 = high-to-low edge triggered 49 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.
|
/linux-4.4.14/arch/arm64/boot/dts/freescale/ |
D | fsl-ls2080a.dtsi | 186 interrupts = <0 32 0x4>; /* Level high type */ 193 interrupts = <0 32 0x4>; /* Level high type */ 257 interrupts = <0 26 0x4>; /* Level high type */ 268 interrupts = <0 28 0x4>; /* Level high type */ 279 interrupts = <0 36 0x4>; /* Level high type */ 290 interrupts = <0 36 0x4>; /* Level high type */ 301 interrupts = <0 37 0x4>; /* Level high type */ 312 interrupts = <0 37 0x4>; /* Level high type */ 326 interrupts = <0 34 0x4>; /* Level high type */ 337 interrupts = <0 34 0x4>; /* Level high type */ [all …]
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-bus-iio-adc-hi8435 | 23 Hysteresis between low and high thresholds can not be lower then 2 and 33 Channel Y high voltage threshold. If sensor input voltage goes higher then 35 Depending on in_voltageY_sensing_mode the high voltage threshold 37 Channels 0..31 have common high threshold values, but could have different 39 The high voltage threshold range is between 3..22V. 40 Hysteresis between low and high thresholds can not be lower then 2 and
|
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.4.14/fs/btrfs/ |
D | async-thread.c | 60 struct __btrfs_workqueue *high; member 164 ret->high = __btrfs_alloc_workqueue(name, flags, limit_active, in btrfs_alloc_workqueue() 166 if (!ret->high) { in btrfs_alloc_workqueue() 340 if (test_bit(WORK_HIGH_PRIO_BIT, &work->flags) && wq->high) in btrfs_queue_work() 341 dest_wq = wq->high; in btrfs_queue_work() 359 if (wq->high) in btrfs_destroy_workqueue() 360 __btrfs_destroy_workqueue(wq->high); in btrfs_destroy_workqueue() 370 if (wq->high) in btrfs_workqueue_set_max() 371 wq->high->limit_active = limit_active; in btrfs_workqueue_set_max()
|
/linux-4.4.14/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.4.14/arch/x86/kernel/ |
D | kvmclock.c | 56 int low, high; in kvm_get_wallclock() local 60 high = ((u64)__pa_symbol(&wall_clock) >> 32); in kvm_get_wallclock() 62 native_write_msr(msr_kvm_wall_clock, low, high); in kvm_get_wallclock() 183 int low, high, ret; in kvm_register_clock() local 191 high = ((u64)slow_virt_to_phys(src) >> 32); in kvm_register_clock() 192 ret = native_write_msr_safe(msr_kvm_system_time, low, high); in kvm_register_clock() 194 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.4.14/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.4.14/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.4.14/Documentation/devicetree/bindings/interrupt-controller/ |
D | nxp,lpc3220-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).
|
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 | 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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/drivers/thermal/ |
D | rockchip_thermal.c | 251 int high, low, mid; in rk_tsadcv2_temp_to_code() local 254 high = table.length - 1; in rk_tsadcv2_temp_to_code() 255 mid = (high + low) / 2; in rk_tsadcv2_temp_to_code() 257 if (temp < table.id[low].temp || temp > table.id[high].temp) in rk_tsadcv2_temp_to_code() 260 while (low <= high) { in rk_tsadcv2_temp_to_code() 264 high = mid - 1; in rk_tsadcv2_temp_to_code() 267 mid = (low + high) / 2; in rk_tsadcv2_temp_to_code() 277 unsigned int high = table.length - 1; in rk_tsadcv2_code_to_temp() local 278 unsigned int mid = (low + high) / 2; in rk_tsadcv2_code_to_temp() 287 if (code < table.id[high].code) in rk_tsadcv2_code_to_temp() [all …]
|
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/drivers/clk/ |
D | clk-axi-clkgen.c | 186 unsigned int *high, unsigned int *edge, unsigned int *nocount) in axi_clkgen_calc_clk_params() argument 193 *high = divider / 2; in axi_clkgen_calc_clk_params() 195 *low = divider - *high; in axi_clkgen_calc_clk_params() 363 unsigned int high; in axi_clkgen_set_rate() local 380 axi_clkgen_calc_clk_params(dout, &low, &high, &edge, &nocount); in axi_clkgen_set_rate() 382 (high << 6) | low, 0xefff); in axi_clkgen_set_rate() 386 axi_clkgen_calc_clk_params(d, &low, &high, &edge, &nocount); in axi_clkgen_set_rate() 388 (edge << 13) | (nocount << 12) | (high << 6) | low, 0x3fff); in axi_clkgen_set_rate() 390 axi_clkgen_calc_clk_params(m, &low, &high, &edge, &nocount); in axi_clkgen_set_rate() 392 (high << 6) | low, 0xefff); in axi_clkgen_set_rate()
|
/linux-4.4.14/Documentation/devicetree/bindings/display/panel/ |
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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/arch/arc/plat-axs10x/ |
D | axs10x.c | 329 unsigned int pad:17, noupd:1, bypass:1, edge:1, high:6, low:6; member 331 unsigned int low:6, high:6, edge:1, bypass:1, noupd:1, pad:17; 347 f = f / (idiv.low + idiv.high); in axs103_get_freq() 350 f = f * (fbdiv.low + fbdiv.high); in axs103_get_freq() 353 f = f / (odiv.low + odiv.high); in axs103_get_freq() 369 div.high = id >> 1; in encode_div()
|
/linux-4.4.14/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() 201 high = vivid_radio_bands[band].rangehigh; in vivid_radio_rx_s_hw_freq_seek() 204 freq = clamp(dev->radio_rx_freq, low, high); in vivid_radio_rx_s_hw_freq_seek() 208 if (freq > high) { in vivid_radio_rx_s_hw_freq_seek() 220 freq = spacing * ((high + spacing - 1) / spacing) - spacing; in vivid_radio_rx_s_hw_freq_seek()
|
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/sound/pci/emu10k1/ |
D | emuproc.c | 300 u32 low, high; in snd_emu10k1_proc_acode_read() local 303 high = snd_emu10k1_efx_read(emu, pc * 2 + 1); in snd_emu10k1_proc_acode_read() 306 (high >> 24) & 0x0f, in snd_emu10k1_proc_acode_read() 307 (high >> 12) & 0x7ff, in snd_emu10k1_proc_acode_read() 308 (high >> 0) & 0x7ff, in snd_emu10k1_proc_acode_read() 312 high, low); in snd_emu10k1_proc_acode_read() 315 (high >> 20) & 0x0f, in snd_emu10k1_proc_acode_read() 316 (high >> 10) & 0x3ff, in snd_emu10k1_proc_acode_read() 317 (high >> 0) & 0x3ff, in snd_emu10k1_proc_acode_read() 321 high, low); in snd_emu10k1_proc_acode_read()
|
/linux-4.4.14/net/ipv4/ |
D | sysctl_net_ipv4.c | 93 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 103 *high = data[1]; in inet_get_ping_group_range_table() 108 static void set_ping_group_range(struct ctl_table *table, kgid_t low, kgid_t high) in set_ping_group_range() argument 115 data[1] = high; in set_ping_group_range() 127 kgid_t low, high; in ipv4_ping_group_range() local 136 inet_get_ping_group_range_table(table, &low, &high); in ipv4_ping_group_range() 138 urange[1] = from_kgid_munged(user_ns, high); in ipv4_ping_group_range() 143 high = make_kgid(user_ns, urange[1]); in ipv4_ping_group_range() 144 if (!gid_valid(low) || !gid_valid(high) || in ipv4_ping_group_range() 145 (urange[1] < urange[0]) || gid_lt(high, low)) { in ipv4_ping_group_range() [all …]
|
/linux-4.4.14/drivers/net/ethernet/hisilicon/hns/ |
D | hns_dsaf_main.c | 1177 (soft_mac_entry->tcam_key.high.val == mac_key->high.val) && in hns_dsaf_find_soft_mac_entry() 1232 mac_key->high.bits.mac_0 = addr[0]; in hns_dsaf_set_mac_key() 1233 mac_key->high.bits.mac_1 = addr[1]; in hns_dsaf_set_mac_key() 1234 mac_key->high.bits.mac_2 = addr[2]; in hns_dsaf_set_mac_key() 1235 mac_key->high.bits.mac_3 = addr[3]; in hns_dsaf_set_mac_key() 1281 mac_key.high.val, mac_key.low.val); in hns_dsaf_set_mac_uc_entry() 1288 dsaf_dev->ae_dev.name, mac_key.high.val, in hns_dsaf_set_mac_uc_entry() 1305 soft_mac_entry->tcam_key.high.val = mac_key.high.val; in hns_dsaf_set_mac_uc_entry() 1350 mac_key.high.val, mac_key.low.val); in hns_dsaf_set_mac_mc_entry() 1370 dsaf_dev->ae_dev.name, mac_key.high.val, in hns_dsaf_set_mac_mc_entry() [all …]
|
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/arch/arc/kernel/ |
D | time.c | 126 struct { u32 high, low; }; in arc_counter_read() member 128 struct { u32 low, high; }; in arc_counter_read() 140 : "=r" (stamp.low), "=r" (stamp.high), "=r" (status)); in arc_counter_read()
|
/linux-4.4.14/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.4.14/Documentation/x86/ |
D | zero-page.txt | 23 0C0/004 ALL ext_ramdisk_image ramdisk_image high 32bits 24 0C4/004 ALL ext_ramdisk_size ramdisk_size high 32bits 25 0C8/004 ALL ext_cmd_line_ptr cmd_line_ptr high 32bits
|
/linux-4.4.14/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.4.14/Documentation/devicetree/bindings/leds/ |
D | leds-ktd2692.txt | 3 KTD2692 is the ideal power solution for high-power flash LEDs. 10 Also, When the AUX pin is pulled high while CTRL pin is high,
|
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.4.14/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.4.14/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.4.14/tools/perf/scripts/python/ |
D | compaction-times.py | 37 def __init__(self, low, high): argument 39 self.high = (0 if high == "" else int(high)) 42 return not (pid >= self.low and (self.high == 0 or pid <= self.high))
|
/linux-4.4.14/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.4.14/arch/cris/kernel/ |
D | stacktrace.c | 10 unsigned long high = ALIGN(sp, THREAD_SIZE); in walk_stackframe() local 12 for (; sp <= high - 4; sp += 4) { in walk_stackframe()
|
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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.4.14/arch/arm64/boot/dts/qcom/ |
D | msm8916-pins.dtsi | 82 output-high; 116 output-high; 150 output-high; 184 output-high; 218 output-high; 252 output-high;
|
/linux-4.4.14/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.4.14/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.4.14/drivers/iommu/ |
D | intel-svm.c | 164 desc.high = 0; in intel_flush_svm_range_dev() 170 desc.high = QI_EIOTLB_ADDR(address) | QI_EIOTLB_GL(gl) | in intel_flush_svm_range_dev() 179 desc.high = QI_DEV_EIOTLB_ADDR(-1ULL >> 1) | QI_DEV_EIOTLB_SIZE; in intel_flush_svm_range_dev() 187 desc.high = QI_DEV_EIOTLB_ADDR((address & ~mask) | (mask - 1)) | QI_DEV_EIOTLB_SIZE; in intel_flush_svm_range_dev() 189 desc.high = QI_DEV_EIOTLB_ADDR(address); in intel_flush_svm_range_dev() 243 desc.high = 0; in intel_flush_pasid_dev() 626 resp.high = QI_PGRP_IDX(req->prg_index) | in prq_event_thread() 635 resp.high = QI_PSTRM_ADDR(address) | QI_PSTRM_DEVFN(req->devfn) | in prq_event_thread()
|
/linux-4.4.14/drivers/target/sbp/ |
D | sbp_target.h | 87 __be32 high; member 189 return (u64)(be32_to_cpu(ptr->high) & 0x0000ffff) << 32 | in sbp2_pointer_to_addr() 195 ptr->high = cpu_to_be32(addr >> 32); in addr_to_sbp2_pointer()
|
/linux-4.4.14/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.4.14/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.4.14/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.4.14/Documentation/devicetree/bindings/extcon/ |
D | extcon-rt8973a.txt | 6 voltage system from abnormal high input voltage (up to 28V) and supports high
|