Home
last modified time | relevance | path

Searched refs:high (Results 1 – 25 of 1715) sorted by relevance

12345678910>>...69

/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dudivmoddi4.c70 r.s.high = n.s.high % d.s.high; in __udivmoddi4()
74 return n.s.high / d.s.high; in __udivmoddi4()
82 r.s.high = n.s.high & (d.s.high - 1); in __udivmoddi4()
85 return n.s.high >> ctzsi(d.s.high); in __udivmoddi4()
90 sr = clzsi(d.s.high) - clzsi(n.s.high); in __udivmoddi4()
103 r.s.high = n.s.high >> sr; in __udivmoddi4()
116 q.s.high = n.s.high >> sr; in __udivmoddi4()
135 r.s.high = n.s.high >> sr; in __udivmoddi4()
139 q.s.high = (n.s.high << (n_udword_bits - sr)) | in __udivmoddi4()
148 sr = clzsi(d.s.high) - clzsi(n.s.high); in __udivmoddi4()
[all …]
H A Dudivmodti4.c114 if (divisor.s.high == 0) { in __udivmodti4()
115 remainder.s.high = 0; in __udivmodti4()
116 if (dividend.s.high < divisor.s.low) { in __udivmodti4()
118 quotient.s.low = udiv128by64to64(dividend.s.high, dividend.s.low, in __udivmodti4()
120 quotient.s.high = 0; in __udivmodti4()
124 quotient.s.high = dividend.s.high / divisor.s.low; in __udivmodti4()
125 dividend.s.high = dividend.s.high % divisor.s.low; in __udivmodti4()
126 quotient.s.low = udiv128by64to64(dividend.s.high, dividend.s.low, in __udivmodti4()
135 __builtin_clzll(divisor.s.high) - __builtin_clzll(dividend.s.high); in __udivmodti4()
137 quotient.s.high = 0; in __udivmodti4()
H A Dint_types.h45 si_int high; member
47 si_int high;
58 su_int high; member
60 su_int high;
87 di_int high; member
89 di_int high;
100 du_int high; member
110 r.s.high = h; in make_ti()
117 r.s.high = h; in make_tu()
146 udwords high; member
[all …]
H A Dashrti3.c28 result.s.high = input.s.high >> (bits_in_dword - 1); in __ashrti3()
29 result.s.low = input.s.high >> (b - bits_in_dword); in __ashrti3()
33 result.s.high = input.s.high >> b; in __ashrti3()
35 ((du_int)input.s.high << (bits_in_dword - b)) | (input.s.low >> b); in __ashrti3()
H A Dashrdi3.c26 result.s.high = input.s.high >> (bits_in_word - 1); in __ashrdi3()
27 result.s.low = input.s.high >> (b - bits_in_word); in __ashrdi3()
31 result.s.high = input.s.high >> b; in __ashrdi3()
33 ((su_int)input.s.high << (bits_in_word - b)) | (input.s.low >> b); in __ashrdi3()
H A Dlshrti3.c27 result.s.high = 0; in __lshrti3()
28 result.s.low = input.s.high >> (b - bits_in_dword); in __lshrti3()
32 result.s.high = input.s.high >> b; in __lshrti3()
33 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b); in __lshrti3()
H A Dlshrdi3.c25 result.s.high = 0; in __lshrdi3()
26 result.s.low = input.s.high >> (b - bits_in_word); in __lshrdi3()
30 result.s.high = input.s.high >> b; in __lshrdi3()
31 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b); in __lshrdi3()
H A Dmuldi3.c26 r.s.high = t >> bits_in_word_2; in __muldsi3()
31 r.s.high += t >> bits_in_word_2; in __muldsi3()
32 r.s.high += (a >> bits_in_word_2) * (b >> bits_in_word_2); in __muldsi3()
45 r.s.high += x.s.high * y.s.low + x.s.low * y.s.high; in __muldi3()
/freebsd/sys/contrib/device-tree/src/arm/nuvoton/
H A Dnuvoton-npcm750-pincfg-evb.dtsi14 output-high;
24 output-high;
34 output-high;
44 output-high;
49 output-high;
54 output-high;
59 output-high;
89 output-high;
99 output-high;
104 output-high;
[all …]
/freebsd/share/security/
H A Dlomac-policy.contexts6 .* lomac/high
7 /sbin/dhclient lomac/high[low]
10 /dev/mdctl lomac/high
11 /dev/pci lomac/high
12 /dev/k?mem lomac/high
13 /dev/io lomac/high
14 /dev/agp.* lomac/high
16 /tmp/\.X11-unix lomac/high[equal]
20 (/usr)?/home lomac/high[low]
24 (/mnt)?/cdrom(/.*)? lomac/high
[all …]
/freebsd/lib/msun/src/
H A Ds_modf.c41 u_int32_t high; in modf() local
43 GET_HIGH_WORD(high,x); in modf()
44 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */ in modf()
52 u_int32_t high; in modf() local
58 GET_HIGH_WORD(high,x); in modf()
59 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */ in modf()
64 u_int32_t high; in modf() local
66 GET_HIGH_WORD(high,x); in modf()
67 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */ in modf()
/freebsd/lib/libc/gen/
H A Dmodf.c101 u_int32_t high; in modf() local
103 GET_HIGH_WORD(high,x); in modf()
104 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */ in modf()
112 u_int32_t high; in modf() local
118 GET_HIGH_WORD(high,x); in modf()
119 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */ in modf()
124 u_int32_t high; in modf() local
126 GET_HIGH_WORD(high,x); in modf()
127 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */ in modf()
/freebsd/lib/libc/softfloat/
H A Dtimesoftfloat.c1073 a.high = inputs_floatx80[ inputNum ].high; in time_a_floatx80_z_int32()
1105 a.high = inputs_floatx80[ inputNum ].high; in time_a_floatx80_z_int64()
1137 a.high = inputs_floatx80[ inputNum ].high; in time_a_floatx80_z_float32()
1169 a.high = inputs_floatx80[ inputNum ].high; in time_a_floatx80_z_float64()
1203 a.high = inputs_floatx80[ inputNum ].high; in time_a_floatx80_z_float128()
1237 a.high = inputs_floatx80[ inputNum ].high; in time_az_floatx80()
1468 a.high = inputs_float128[ inputNum ].high; in time_a_float128_z_int32()
1500 a.high = inputs_float128[ inputNum ].high; in time_a_float128_z_int64()
1532 a.high = inputs_float128[ inputNum ].high; in time_a_float128_z_float32()
1564 a.high = inputs_float128[ inputNum ].high; in time_a_float128_z_float64()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/regulator/
H A Drichtek,rtmv20-regulator.yaml38 load current pulse delay in microsecond after strobe pin pulse high.
45 Load current pulse width in microsecond after strobe pin pulse high.
52 Fsin1 pulse high delay in microsecond after vsync signal pulse high.
59 Fsin1 pulse high width in microsecond after vsync signal pulse high.
66 Fsin2 pulse high delay in microsecond after vsync signal pulse high.
73 Fsin2 pulse high width in microsecond after vsync signal pulse high.
100 richtek,strobe-polarity-high:
104 richtek,vsync-polarity-high:
149 richtek,strobe-polarity-high;
150 richtek,vsync-polarity-high;
/freebsd/sys/contrib/device-tree/src/arm/aspeed/
H A Daspeed-bmc-lenovo-hr855xg2.dts431 output-high;
438 output-high;
445 output-high;
466 output-high;
473 output-high;
480 output-high;
487 output-high;
501 output-high;
515 output-high;
522 output-high;
[all …]
/freebsd/sys/amd64/include/
H A Dcpufunc.h284 uint32_t low, high; in rdmsr() local
287 return (low | ((uint64_t)high << 32)); in rdmsr()
302 uint32_t low, high; in rdpmc() local
311 uint32_t low, high; in rdtsc() local
334 uint32_t low, high; in rdtscp() local
343 uint32_t low, high; in rdtscp_aux() local
382 uint32_t low, high; in wrmsr() local
385 high = newval >> 32; in wrmsr()
448 u_int low, high; in rxcr() local
457 u_int low, high; in load_xcr() local
[all …]
/freebsd/lib/libc/softfloat/templates/
H A Dsoftfloat-specialize62 bits64 high, low;
112 z.high = ( (bits64) a )<<41;
206 z.high = a<<12;
223 | ( a.high>>12 );
309 z.sign = a.high>>15;
311 z.high = a.low<<1;
414 z.sign = a.high>>63;
415 shortShift128Left( a.high, a.low, 16, &z.high, &z.low );
430 shift128Right( a.high, a.low, 16, &z.high, &z.low );
451 a.high |= LIT64( 0x0000800000000000 );
[all …]
/freebsd/contrib/ncurses/form/
H A Dfty_num.c62 double high; member
71 double high; member
98 argn->high = args->high; in Generic_This_Type()
125 arg.high = va_arg(*ap, double); in Make_This_Type()
187 double high = argn->high; in Check_This_Field() local
269 if (low < high) in Check_This_Field()
271 if (val < low || val > high) in Check_This_Field()
/freebsd/sys/libkern/arm/
H A Dmuldi3.c104 u_int high, mid, udiff, vdiff; in __muldi3() local
151 high = u1 * v1; in __muldi3()
156 prod.ul[H] = high + (negmid ? -mid : mid) + low.ul[L] + in __muldi3()
187 u_int u1, u0, v1, v0, udiff, vdiff, high, mid, low; in __lmulq() local
213 high = u1 * v1; in __lmulq()
216 prodh = high + HHALF(high); in __lmulq()
217 prodl = LHUP(high); in __lmulq()
/freebsd/lib/libc/quad/
H A Dmuldi3.c101 u_long high, mid, udiff, vdiff; in __muldi3() local
148 high = u1 * v1; in __muldi3()
153 prod.ul[H] = high + (negmid ? -mid : mid) + low.ul[L] + in __muldi3()
184 u_long u1, u0, v1, v0, udiff, vdiff, high, mid, low; in __lmulq() local
210 high = u1 * v1; in __lmulq()
213 prodh = high + HHALF(high); in __lmulq()
214 prodl = LHUP(high); in __lmulq()
/freebsd/sys/contrib/device-tree/src/arm64/freescale/
H A Dimx8mm-venice-gw72xx-0x-rs485.dts7 * - GPIO4_0 rs485_en needs to be driven high (active)
8 * - GPIO4_2 rs485_hd needs to be driven high (active)
10 * - RS485_EN needs to be pulled high
11 * - RS485_HALF needs to be pulled high
29 output-high;
36 output-high;
H A Dimx8mm-venice-gw73xx-0x-rs485.dts7 * - GPIO4_0 rs485_en needs to be driven high (active)
8 * - GPIO4_2 rs485_hd needs to be driven high (active)
10 * - RS485_EN needs to be pulled high
11 * - RS485_HALF needs to be pulled high
29 output-high;
36 output-high;
H A Dimx8mm-venice-gw72xx-0x-rs485.dtso7 * - GPIO4_0 rs485_en needs to be driven high (active)
8 * - GPIO4_2 rs485_hd needs to be driven high (active)
10 * - RS485_EN needs to be pulled high
11 * - RS485_HALF needs to be pulled high
29 output-high;
36 output-high;
H A Dimx8mm-venice-gw73xx-0x-rs485.dtso7 * - GPIO4_0 rs485_en needs to be driven high (active)
8 * - GPIO4_2 rs485_hd needs to be driven high (active)
10 * - RS485_EN needs to be pulled high
11 * - RS485_HALF needs to be pulled high
29 output-high;
36 output-high;
/freebsd/crypto/openssl/crypto/ec/
H A Decp_nistp256.c382 u64 high, low; in felem_shrink() local
425 high = 0 - high; in felem_shrink()
488 u64 high, low; in smallfelem_square() local
494 out[1] = high; in smallfelem_square()
501 out[2] = high; in smallfelem_square()
508 out[3] = high; in smallfelem_square()
514 out[4] = high; in smallfelem_square()
534 out[5] = high; in smallfelem_square()
541 out[6] = high; in smallfelem_square()
554 out[7] = high; in smallfelem_square()
[all …]

12345678910>>...69