Home
last modified time | relevance | path

Searched refs:low (Results 1 – 25 of 212) sorted by relevance

123456789

/rk3399_rockchip-uboot/arch/x86/include/asm/
H A Dmsr.h51 unsigned long low, high; in native_read_tscp() local
53 : "=a" (low), "=d" (high), "=c" (*aux)); in native_read_tscp()
54 return low | ((u64)high << 32); in native_read_tscp()
64 #define DECLARE_ARGS(val, low, high) unsigned low, high argument
65 #define EAX_EDX_VAL(val, low, high) ((low) | ((u64)(high) << 32)) argument
66 #define EAX_EDX_ARGS(val, low, high) "a" (low), "d" (high) argument
67 #define EAX_EDX_RET(val, low, high) "=a" (low), "=d" (high) argument
69 #define DECLARE_ARGS(val, low, high) unsigned long long val argument
70 #define EAX_EDX_VAL(val, low, high) (val) argument
71 #define EAX_EDX_ARGS(val, low, high) "A" (val) argument
[all …]
H A Du-boot-x86.h80 uint32_t high, low; in rdtsc() local
81 __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high)); in rdtsc()
82 return (((uint64_t)high) << 32) | low; in rdtsc()
/rk3399_rockchip-uboot/doc/device-tree-bindings/leds/
H A Dleds-bcm6358.txt18 - brcm,clk-dat-low : Boolean, makes clock and data signals active low.
28 - active-low : Boolean, makes LED active low.
41 active-low;
46 active-low;
51 active-low;
56 active-low;
67 brcm,pol-low;
72 active-low;
77 active-low;
87 active-low;
[all …]
H A Dleds-bcm6328.txt24 - brcm,serial-clk-low : Boolean, makes clock signal active low.
26 - brcm,serial-dat-low : Boolean, makes data signal active low.
38 - active-low : Boolean, makes LED active low.
51 active-low;
56 active-low;
61 active-low;
73 brcm,serial-dat-low;
78 active-low;
83 active-low;
88 active-low;
[all …]
/rk3399_rockchip-uboot/include/zfs/
H A Dspa.h18 #define BF32_DECODE(x, low, len) P2PHASE((x) >> (low), 1U << (len)) argument
19 #define BF64_DECODE(x, low, len) P2PHASE((x) >> (low), 1ULL << (len)) argument
20 #define BF32_ENCODE(x, low, len) (P2PHASE((x), 1U << (len)) << (low)) argument
21 #define BF64_ENCODE(x, low, len) (P2PHASE((x), 1ULL << (len)) << (low)) argument
23 #define BF32_GET(x, low, len) BF32_DECODE(x, low, len) argument
24 #define BF64_GET(x, low, len) BF64_DECODE(x, low, len) argument
26 #define BF32_SET(x, low, len, val) \ argument
27 ((x) ^= BF32_ENCODE((x >> low) ^ (val), low, len))
28 #define BF64_SET(x, low, len, val) \ argument
29 ((x) ^= BF64_ENCODE((x >> low) ^ (val), low, len))
[all …]
/rk3399_rockchip-uboot/arch/nios2/lib/
H A Dlibgcc.c25 struct DWstruct { Wtype low, high;}; member
63 w.s.low = 0; in __ashldi3()
64 w.s.high = (UWtype) uu.s.low << -bm; in __ashldi3()
68 const UWtype carries = (UWtype) uu.s.low >> bm; in __ashldi3()
70 w.s.low = (UWtype) uu.s.low << b; in __ashldi3()
91 w.s.low = uu.s.high >> -bm; in __ashrdi3()
98 w.s.low = ((UWtype) uu.s.low >> b) | carries; in __ashrdi3()
117 w.s.low = (UWtype) uu.s.high >> -bm; in __lshrdi3()
124 w.s.low = ((UWtype) uu.s.low >> b) | carries; in __lshrdi3()
140 if ((UWtype) au.s.low < (UWtype) bu.s.low) in __cmpdi2()
[all …]
/rk3399_rockchip-uboot/arch/arc/lib/
H A Dlibgcc2.c20 w.s.low = 0; in __ashldi3()
21 w.s.high = (UWtype)uu.s.low << -bm; in __ashldi3()
23 const UWtype carries = (UWtype) uu.s.low >> bm; in __ashldi3()
25 w.s.low = (UWtype)uu.s.low << b; in __ashldi3()
45 w.s.low = uu.s.high >> -bm; in __ashrdi3()
50 w.s.low = ((UWtype)uu.s.low >> b) | carries; in __ashrdi3()
68 w.s.low = (UWtype)uu.s.high >> -bm; in __lshrdi3()
73 w.s.low = ((UWtype)uu.s.low >> b) | carries; in __lshrdi3()
/rk3399_rockchip-uboot/arch/mips/dts/
H A Dcomtrend,vr-3032u.dts27 brcm,serial-dat-low;
32 active-low;
38 active-low;
44 active-low;
50 active-low;
56 active-low;
62 active-low;
H A Dnetgear,cg3100d.dts48 active-low;
54 active-low;
60 active-low;
66 active-low;
72 active-low;
78 active-low;
84 active-low;
H A Dsfr,nb4-ser.dts63 active-low;
69 active-low;
75 active-low;
81 active-low;
/rk3399_rockchip-uboot/arch/sh/lib/
H A Dashldi3.c15 w.s.low = 0; in __ashldi3()
16 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
18 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
20 w.s.low = (unsigned int) uu.s.low << b; in __ashldi3()
H A Dlshrdi3.c16 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
21 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __lshrdi3()
H A Dashrdi3.c18 w.s.low = uu.s.high >> -bm; in __ashrdi3()
23 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __ashrdi3()
/rk3399_rockchip-uboot/arch/mips/lib/
H A Dashldi3.c15 w.s.low = 0; in __ashldi3()
16 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
18 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
20 w.s.low = (unsigned int) uu.s.low << b; in __ashldi3()
H A Dlshrdi3.c16 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
21 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __lshrdi3()
H A Dashrdi3.c18 w.s.low = uu.s.high >> -bm; in __ashrdi3()
23 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __ashrdi3()
/rk3399_rockchip-uboot/arch/m68k/lib/
H A Dashldi3.c17 struct DIstruct {SItype high, low;}; member
39 w.s.low = 0; in __ashldi3()
40 w.s.high = (USItype)uu.s.low << -bm; in __ashldi3()
44 USItype carries = (USItype)uu.s.low >> bm; in __ashldi3()
45 w.s.low = (USItype)uu.s.low << b; in __ashldi3()
H A Dmuldi3.c42 umul_ppmm (__w.s.high, __w.s.low, u, v); \
50 struct DIstruct {SItype high, low;}; member
66 w.ll = __umulsidi3 (uu.s.low, vv.s.low); in __muldi3()
67 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high in __muldi3()
68 + (USItype) uu.s.high * (USItype) vv.s.low); in __muldi3()
H A Dlshrdi3.c17 struct DIstruct {SItype high, low;}; member
40 w.s.low = (USItype)uu.s.high >> -bm; in __lshrdi3()
46 w.s.low = ((USItype)uu.s.low >> b) | carries; in __lshrdi3()
/rk3399_rockchip-uboot/include/linux/
H A Dmath64.h189 u32 high, low; in mul_u64_u64_shr() member
191 u32 low, high; in mul_u64_u64_shr()
200 rl.ll = mul_u32_u32(a0.l.low, b0.l.low); in mul_u64_u64_shr()
201 rm.ll = mul_u32_u32(a0.l.low, b0.l.high); in mul_u64_u64_shr()
202 rn.ll = mul_u32_u32(a0.l.high, b0.l.low); in mul_u64_u64_shr()
210 rl.l.high = c = (u64)rl.l.high + rm.l.low + rn.l.low; in mul_u64_u64_shr()
211 rh.l.low = c = (c >> 32) + rm.l.high + rn.l.high + rh.l.low; in mul_u64_u64_shr()
235 u32 high, low; in mul_u64_u32_div() member
237 u32 low, high; in mul_u64_u32_div()
243 rl.ll = mul_u32_u32(u.l.low, mul); in mul_u64_u32_div()
[all …]
/rk3399_rockchip-uboot/arch/microblaze/lib/
H A Dmuldi3.c46 umul_ppmm(__w.s.high, __w.s.low, u, v); \
56 SItype low, high; member
70 w.ll = __umulsidi3(uu.s.low, vv.s.low); in __muldi3()
71 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high in __muldi3()
72 + (USItype) uu.s.high * (USItype) vv.s.low); in __muldi3()
/rk3399_rockchip-uboot/lib/zlib/
H A Dinftrees.c47 unsigned low; /* low bits for current root entry */ in inflate_table() local
203 low = (unsigned)(-1); /* trigger new sub-table when len > root */ in inflate_table()
256 if (len > root && (huff & mask) != low) { in inflate_table()
280 low = huff & mask; in inflate_table()
281 (*table)[low].op = (unsigned char)curr; in inflate_table()
282 (*table)[low].bits = (unsigned char)root; in inflate_table()
283 (*table)[low].val = (unsigned short)(next - *table); in inflate_table()
299 if (drop != 0 && (huff & mask) != low) { in inflate_table()
/rk3399_rockchip-uboot/board/rockchip/gva_rk3229/
H A Dgva_rk3229.c39 u8 low[RK3229_CPUID_LEN/2], high[RK3229_CPUID_LEN/2]; in set_serialno() local
68 low[i] = cpuid[1 + (i << 1)]; in set_serialno()
71 serialno = crc32_no_comp(0, low, 8); in set_serialno()
103 serialnr->low = (u32)(serial & 0xffffffff); in get_board_serial()
/rk3399_rockchip-uboot/doc/device-tree-bindings/power/
H A Dtps65090.txt7 -ti,enable-low-current-chrg: Enables charging when a low current is detected
16 ti,enable-low-current-chrg;
/rk3399_rockchip-uboot/arch/x86/cpu/intel_common/
H A Dmicrocode.c77 uint32_t low, high; in microcode_read_rev()
89 "=a" (low), "=d" (high) in microcode_read_rev()
105 uint32_t low, high; in microcode_read_cpu() local
109 rdmsr(MSR_IA32_UCODE_REV, low, cpu->update_revision); in microcode_read_cpu()
116 rdmsr(0x17, low, high); in microcode_read_cpu()

123456789