/src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
udivmoddi4.c | 36 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...] |
udivmodti4.c | 38 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...] |
lshrti3.c | 32 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);
|
ashrdi3.c | 30 /* 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);
|
ashrti3.c | 32 /* 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);
|
fixunsxfsi.c | 37 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);
|
int_types.h | 40 si_int high; member in struct:__anon692d56bb010a::__anon692d56bb0208 42 si_int high; 55 su_int high; member in struct:__anon692d56bb030a::__anon692d56bb0408 57 su_int high; 81 di_int high; member in struct:__anon692d56bb050a::__anon692d56bb0608 83 di_int high; 96 du_int high; member in struct:__anon692d56bb070a::__anon692d56bb0808 98 du_int high; 106 r.s.high = h; 113 r.s.high = h 136 udwords high; member in struct:__anon692d56bb0b08 [all...] |
cmpdi2.c | 29 if (x.s.high < y.s.high) 31 if (x.s.high > y.s.high)
|
cmpti2.c | 31 if (x.s.high < y.s.high) 33 if (x.s.high > y.s.high)
|
ucmpdi2.c | 29 if (x.s.high < y.s.high) 31 if (x.s.high > y.s.high)
|
ucmpti2.c | 31 if (x.s.high < y.s.high) 33 if (x.s.high > y.s.high)
|
clzti2.c | 28 const di_int f = -(x.s.high == 0); 29 return __builtin_clzll((x.s.high & ~f) | (x.s.low & f)) +
|
ffsdi2.c | 28 if (x.s.high == 0) 30 return __builtin_ctz(x.s.high) + (1 + sizeof(si_int) * CHAR_BIT);
|
ffsti2.c | 30 if (x.s.high == 0) 32 return __builtin_ctzll(x.s.high) + (1 + sizeof(di_int) * CHAR_BIT);
|
lshrdi3.c | 30 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);
|
ashlti3.c | 33 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));
|
fixunsdfdi.c | 23 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;
|
fixunssfdi.c | 24 su_int high = da / 4294967296.f; /* da / 0x1p32f; */ local in function:__fixunssfdi 25 su_int low = da - (double)high * 4294967296.f; /* high * 0x1p32f; */ 26 return ((du_int)high << 32) | low;
|
/src/lib/libm/src/ |
s_fabs.c | 32 u_int32_t high; local in function:__strong_alias 33 GET_HIGH_WORD(high,x); 34 SET_HIGH_WORD(x,high&0x7fffffff);
|
s_modf.c | 45 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&0x80000000,0); /* return +-0 * [all...] |
s_cbrt.c | 47 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/ |
nuvoton-npcm750-pincfg-evb.dtsi | 11 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...] |
/src/sys/lib/libkern/ |
softfloat-specialize.h | 70 bits64 high, low; member in struct:__anonc80afdf50108 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 = a.low<<1 [all...] |
/src/sys/arch/x86/include/ |
cpufunc.h | 103 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...] |
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/ppc/ |
floatunditf.c | 18 doublebits high = { .d = twop84 }; local in function:__floatunditf 21 high.x |= a >> 32; /* 0x1.0p84 + high 32 bits of a */ 24 const double high_addend = high.d - twop84_plus_twop52;
|