Searched refs:high (Results 1 - 25 of 1272) sorted by relevance

1234567891011>>

/src/sys/external/bsd/compiler_rt/dist/lib/builtins/
H A Dudivmoddi4.c36 if (n.s.high == 0)
38 if (d.s.high == 0)
56 /* n.s.high != 0 */
59 if (d.s.high == 0)
66 *rem = n.s.high % d.s.low;
67 return n.s.high / d.s.low;
69 /* d.s.high != 0 */
78 r.s.high = n.s.high % d.s.high;
[all...]
H A Dudivmodti4.c38 if (n.s.high == 0)
40 if (d.s.high == 0)
58 /* n.s.high != 0 */
61 if (d.s.high == 0)
68 *rem = n.s.high % d.s.low;
69 return n.s.high / d.s.low;
71 /* d.s.high != 0 */
80 r.s.high = n.s.high % d.s.high;
[all...]
H A Dlshrti3.c32 result.s.high = 0;
33 result.s.low = input.s.high >> (b - bits_in_dword);
39 result.s.high = input.s.high >> b;
40 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
H A Dashrdi3.c30 /* result.s.high = input.s.high < 0 ? -1 : 0 */
31 result.s.high = input.s.high >> (bits_in_word - 1);
32 result.s.low = input.s.high >> (b - bits_in_word);
38 result.s.high = input.s.high >> b;
39 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
H A Dashrti3.c32 /* result.s.high = input.s.high < 0 ? -1 : 0 */
33 result.s.high = input.s.high >> (bits_in_dword - 1);
34 result.s.low = input.s.high >> (b - bits_in_dword);
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
H A Dfixunsxfsi.c37 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
38 if (e < 0 || (fb.u.high.s.low & 0x00008000))
42 return fb.u.low.s.high >> (31 - e);
H A Dint_types.h40 si_int high; member in struct:__anon162d19a1010a::__anon162d19a10208
42 si_int high;
55 su_int high; member in struct:__anon162d19a1030a::__anon162d19a10408
57 su_int high;
81 di_int high; member in struct:__anon162d19a1050a::__anon162d19a10608
83 di_int high;
96 du_int high; member in struct:__anon162d19a1070a::__anon162d19a10808
98 du_int high;
106 r.s.high = h;
113 r.s.high
136 udwords high; member in struct:__anon162d19a10b08
[all...]
H A Dcmpdi2.c29 if (x.s.high < y.s.high)
31 if (x.s.high > y.s.high)
H A Dcmpti2.c31 if (x.s.high < y.s.high)
33 if (x.s.high > y.s.high)
H A Ducmpdi2.c29 if (x.s.high < y.s.high)
31 if (x.s.high > y.s.high)
H A Ducmpti2.c31 if (x.s.high < y.s.high)
33 if (x.s.high > y.s.high)
H A Dclzti2.c28 const di_int f = -(x.s.high == 0);
29 return __builtin_clzll((x.s.high & ~f) | (x.s.low & f)) +
H A Dffsdi2.c28 if (x.s.high == 0)
30 return __builtin_ctz(x.s.high) + (1 + sizeof(si_int) * CHAR_BIT);
H A Dffsti2.c30 if (x.s.high == 0)
32 return __builtin_ctzll(x.s.high) + (1 + sizeof(di_int) * CHAR_BIT);
H A Dlshrdi3.c30 result.s.high = 0;
31 result.s.low = input.s.high >> (b - bits_in_word);
37 result.s.high = input.s.high >> b;
38 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
H A Dashlti3.c33 result.s.high = input.s.low << (b - bits_in_dword);
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - b));
H A Dfixunsdfdi.c23 su_int high = a / 4294967296.f; /* a / 0x1p32f; */ local in function:__fixunsdfdi
24 su_int low = a - (double)high * 4294967296.f; /* high * 0x1p32f; */
25 return ((du_int)high << 32) | low;
/src/lib/libm/src/
H A Ds_fabs.c32 u_int32_t high; local in function:__strong_alias
33 GET_HIGH_WORD(high,x);
34 SET_HIGH_WORD(x,high&0x7fffffff);
H A Ds_modf.c45 if(jj0<20) { /* integer part in high x */
52 u_int32_t high; local in function:__strong_alias
54 GET_HIGH_WORD(high,x);
55 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
63 u_int32_t high; local in function:__strong_alias
67 GET_HIGH_WORD(high,x);
68 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
73 u_int32_t high; local in function:__strong_alias
75 GET_HIGH_WORD(high,x);
76 INSERT_WORDS(x,high
[all...]
H A Ds_cbrt.c47 u_int32_t high,low; local in function:cbrt
61 t*=x; GET_HIGH_WORD(high,t); SET_HIGH_WORD(t,high/3+B2);
73 GET_HIGH_WORD(high,t);
74 INSERT_WORDS(t,high+0x00000001,0);
85 GET_HIGH_WORD(high,t);
86 SET_HIGH_WORD(t,high|sign);
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
H A Dnuvoton-npcm750-pincfg-evb.dtsi11 pin9_output_high: pin9-output-high {
14 output-high;
21 pin11_output_high: pin11-output-high {
24 output-high;
31 pin24_output_high: pin24-output-high {
34 output-high;
41 pin32_output_high: pin32-output-high {
44 output-high;
46 pin61_output_high: pin61-output-high {
49 output-high;
[all...]
/xsrc/external/mit/xorg-server.old/dist/os/
H A Doscolor.c1583 int low, mid, high; local in function:OsLookupColor
1587 high = NUM_BUILTIN_COLORS - 1;
1588 while (high >= low)
1590 mid = (low + high) / 2;
1603 high = mid - 1;
/xsrc/external/mit/xorg-server/dist/os/
H A Doscolor.c1640 int low, mid, high; local in function:OsLookupColor
1644 high = ARRAY_SIZE(BuiltinColors) - 1;
1645 while (high >= low) {
1646 mid = (low + high) / 2;
1658 high = mid - 1;
/src/sys/lib/libkern/
H A Dsoftfloat-specialize.h70 bits64 high, low; member in struct:__anonaffa31db0108
115 z.high = ( (bits64) a )<<41;
128 return ( ( (bits32) a.sign )<<31 ) | 0x7FC00000 | ( a.high>>41 );
184 z.high = a<<12;
200 | ( a.high>>12 );
242 | The `high' and `low' values hold the most- and least-significant bits,
256 return ( ( a.high & 0x7FFF ) == 0x7FFF ) && (bits64) ( a.low<<1 );
271 ( ( a.high & 0x7FFF ) == 0x7FFF )
288 z.sign = a.high>>15;
290 z.high
[all...]
/src/sys/arch/x86/include/
H A Dcpufunc.h103 uint32_t low, high; \
108 : "=a" (low), "=d" (high) \
112 return (low | ((uint64_t)high << 32)); \
363 uint32_t low, high; local in function:rdxcr
367 : "=a" (low), "=d" (high)
371 return (low | ((uint64_t)high << 32));
377 uint32_t low, high; local in function:wrxcr
380 high = val >> 32;
384 : "a" (low), "d" (high), "c" (xcr)
444 uint32_t low, high; local in function:xsave
460 uint32_t low, high; local in function:xsaveopt
476 uint32_t low, high; local in function:xrstor
519 uint32_t low, high; local in function:xsave64
535 uint32_t low, high; local in function:xsaveopt64
551 uint32_t low, high; local in function:xrstor64
604 uint32_t low, high; local in function:rdmsr
618 uint32_t low, high, pass = OPTERON_MSR_PASSCODE; local in function:rdmsr_locked
634 uint32_t low, high; local in function:wrmsr
649 uint32_t low, high, pass = OPTERON_MSR_PASSCODE; local in function:wrmsr_locked
[all...]

Completed in 41 milliseconds

1234567891011>>