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

1234

/device/linaro/bootloader/edk2/StdLib/LibC/Math/
H A Ds_fabs.c28 u_int32_t high; local
29 GET_HIGH_WORD(high,x);
30 SET_HIGH_WORD(x,high&0x7fffffff);
H A Ds_modf.c40 if(j0<20) { /* integer part in high x */
47 u_int32_t high; local
49 GET_HIGH_WORD(high,x);
50 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
58 u_int32_t high; local
60 GET_HIGH_WORD(high,x);
61 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
66 u_int32_t high; local
68 GET_HIGH_WORD(high,x);
69 INSERT_WORDS(x,high
[all...]
H A Ds_expm1.c147 hx &= 0x7fffffff; /* high word of |x| */
205 u_int32_t high; local
207 GET_HIGH_WORD(high,y);
208 SET_HIGH_WORD(y,high+(k<<20)); /* add k to y's exponent */
213 u_int32_t high; local
216 GET_HIGH_WORD(high,y);
217 SET_HIGH_WORD(y,high+(k<<20)); /* add k to y's exponent */
219 u_int32_t high; local
223 GET_HIGH_WORD(high,y);
224 SET_HIGH_WORD(y,high
[all...]
/device/linaro/bootloader/edk2/ArmPkg/Library/CompilerIntrinsicsLib/Arm/
H A Ducmpdi2.c73 if (x.high < y.high)
75 if (x.high > y.high)
H A Dashrdi3.c72 // result.high = input.high < 0 ? -1 : 0
73 result.high = input.high >> (bits_in_word - 1);
74 result.low = input.high >> (b - bits_in_word);
80 result.high = input.high >> b;
81 result.low = (input.high << (bits_in_word - b)) | (input.low >> b);
H A Dlshrdi3.c72 result.high = 0;
73 result.low = input.high >> (b - bits_in_word);
79 result.high = input.high >> b;
80 result.low = (input.high << (bits_in_word - b)) | (input.low >> b);
H A Dudivmoddi4.c85 if (n.high == 0)
87 if (d.high == 0)
103 // n.high != 0
106 if (d.high == 0)
112 *rem = n.high % d.low;
113 return n.high / d.low;
115 // d.high != 0
123 r.high = n.high % d.high;
[all...]
H A Dashldi3.c73 result.high = input.low << (b - bits_in_word);
80 result.high = (input.high << b) | (input.low >> (bits_in_word - b));
H A Dmuldi3.c75 r.high = t >> bits_in_word_2;
80 r.high += t >> bits_in_word_2;
81 r.high += (a >> bits_in_word_2) * (b >> bits_in_word_2);
96 r.high += x.high * y.low + x.low * y.high;
H A DLlvm_int_lib.h66 INT32 high; member in struct:__anon3568::__anon3569
74 UINT32 high; member in struct:__anon3570::__anon3571
/device/google/contexthub/firmware/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 Daeabi_f2ulz.c24 su_int high = da / 4294967296.f; /* da / 0x1p32f; */ local
25 su_int low = da - (float)high * 4294967296.f; /* high * 0x1p32f; */
26 return ((du_int)high << 32) | low;
H A Daeabi_llsr.c32 result.s.high = 0;
33 result.s.low = input.s.high >> (b - bits_in_word);
39 result.s.high = input.s.high >> b;
40 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
H A Daeabi_llsl.c33 result.s.high = input.s.low << (b - bits_in_word);
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
H A Dint_lib.h34 si_int high; member in struct:__anon62::__anon63
44 su_int high; member in struct:__anon64::__anon65
/device/linaro/bootloader/arm-trusted-firmware/lib/compiler-rt/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 Dint_types.h40 si_int high; member in struct:__anon2698::__anon2699
42 si_int high;
55 su_int high; member in struct:__anon2700::__anon2701
57 su_int high;
80 di_int high; member in struct:__anon2702::__anon2703
82 di_int high;
95 du_int high; member in struct:__anon2704::__anon2705
97 du_int high;
105 r.s.high = h;
112 r.s.high
135 udwords high; member in struct:__anon2708
[all...]
H A Dctzdi2.c27 return __builtin_ctz((x.s.high & f) | (x.s.low & ~f)) +
/device/linaro/bootloader/edk2/StdLib/LibC/Main/Arm/
H A Dint_types.h63 si_int high; member in struct:__anon10701::__anon10702
65 si_int high;
78 su_int high; member in struct:__anon10703::__anon10704
80 su_int high;
101 di_int high; member in struct:__anon10705::__anon10706
103 di_int high;
116 du_int high; member in struct:__anon10707::__anon10708
118 du_int high;
126 r.s.high = h;
133 r.s.high
156 udwords high; member in struct:__anon10711
[all...]
H A Dfixunsdfsi.c66 int e = ((fb.u.s.high & 0x7FF00000) >> 20) - 1023;
67 if (e < 0 || (fb.u.s.high & 0x80000000))
71 ((fb.u.s.high & 0x000FFFFF) << 11) |
/device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/
H A Dnegtf2.c37 a.high ^= FLOAT64_MANGLE(0x8000000000000000ULL);
H A Dsoftfloat-specialize112 bits64 high, low;
169 z.high = ( (bits64) a )<<41;
183 return ( ( (bits32) a.sign )<<31 ) | 0x7FC00000 | (bits32)( a.high>>41 );
271 z.high = FLOAT64_DEMANGLE(a)<<12;
288 | ( a.high>>12 ) );
324 `high' and `low' values hold the most- and least-significant bits,
340 return ( ( a.high & 0x7FFF ) == 0x7FFF ) && (bits64) ( a.low<<1 );
356 ( ( a.high & 0x7FFF ) == 0x7FFF )
374 z.sign = a.high>>15;
376 z.high
[all...]
/device/linaro/bootloader/edk2/ArmPkg/Library/ArmSoftFloatLib/
H A Dsoftfloat-specialize108 bits64 high, low;
165 z.high = ( (bits64) a )<<41;
179 return ( ( (bits32) a.sign )<<31 ) | 0x7FC00000 | (bits32)( a.high>>41 );
267 z.high = FLOAT64_DEMANGLE(a)<<12;
284 | ( a.high>>12 ) );
320 `high' and `low' values hold the most- and least-significant bits,
336 return ( ( a.high & 0x7FFF ) == 0x7FFF ) && (bits64) ( a.low<<1 );
352 ( ( a.high & 0x7FFF ) == 0x7FFF )
370 z.sign = a.high>>15;
372 z.high
[all...]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
H A DDivU64x32.c32 pop edx ; restore high-order dword of the quotient
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
H A DDivU64x32.c47 pop edx ; restore high-order dword of the quotient

Completed in 224 milliseconds

1234