/external/compiler-rt/lib/builtins/ |
D | divsf3.c | 27 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent; in ARM_EABI_FNALIAS() 28 const unsigned int bExponent = toRep(b) >> significandBits & maxExponent; in ARM_EABI_FNALIAS() 29 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit; in ARM_EABI_FNALIAS() 31 rep_t aSignificand = toRep(a) & significandMask; in ARM_EABI_FNALIAS() 32 rep_t bSignificand = toRep(b) & significandMask; in ARM_EABI_FNALIAS() 38 const rep_t aAbs = toRep(a) & absMask; in ARM_EABI_FNALIAS() 39 const rep_t bAbs = toRep(b) & absMask; in ARM_EABI_FNALIAS() 42 if (aAbs > infRep) return fromRep(toRep(a) | quietBit); in ARM_EABI_FNALIAS() 44 if (bAbs > infRep) return fromRep(toRep(b) | quietBit); in ARM_EABI_FNALIAS()
|
D | divdf3.c | 27 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent; in ARM_EABI_FNALIAS() 28 const unsigned int bExponent = toRep(b) >> significandBits & maxExponent; in ARM_EABI_FNALIAS() 29 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit; in ARM_EABI_FNALIAS() 31 rep_t aSignificand = toRep(a) & significandMask; in ARM_EABI_FNALIAS() 32 rep_t bSignificand = toRep(b) & significandMask; in ARM_EABI_FNALIAS() 38 const rep_t aAbs = toRep(a) & absMask; in ARM_EABI_FNALIAS() 39 const rep_t bAbs = toRep(b) & absMask; in ARM_EABI_FNALIAS() 42 if (aAbs > infRep) return fromRep(toRep(a) | quietBit); in ARM_EABI_FNALIAS() 44 if (bAbs > infRep) return fromRep(toRep(b) | quietBit); in ARM_EABI_FNALIAS()
|
D | divtf3.c | 25 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent; in __divtf3() 26 const unsigned int bExponent = toRep(b) >> significandBits & maxExponent; in __divtf3() 27 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit; in __divtf3() 29 rep_t aSignificand = toRep(a) & significandMask; in __divtf3() 30 rep_t bSignificand = toRep(b) & significandMask; in __divtf3() 36 const rep_t aAbs = toRep(a) & absMask; in __divtf3() 37 const rep_t bAbs = toRep(b) & absMask; in __divtf3() 40 if (aAbs > infRep) return fromRep(toRep(a) | quietBit); in __divtf3() 42 if (bAbs > infRep) return fromRep(toRep(b) | quietBit); in __divtf3()
|
D | comparetf2.c | 53 const srep_t aInt = toRep(a); in __letf2() 54 const srep_t bInt = toRep(b); in __letf2() 96 const srep_t aInt = toRep(a); in __getf2() 97 const srep_t bInt = toRep(b); in __getf2() 115 const rep_t aAbs = toRep(a) & absMask; in __unordtf2() 116 const rep_t bAbs = toRep(b) & absMask; in __unordtf2()
|
D | comparesf2.c | 53 const srep_t aInt = toRep(a); in __lesf2() 54 const srep_t bInt = toRep(b); in __lesf2() 98 const srep_t aInt = toRep(a); in __gesf2() 99 const srep_t bInt = toRep(b); in __gesf2() 120 const rep_t aAbs = toRep(a) & absMask; in ARM_EABI_FNALIAS() 121 const rep_t bAbs = toRep(b) & absMask; in ARM_EABI_FNALIAS()
|
D | comparedf2.c | 53 const srep_t aInt = toRep(a); in __ledf2() 54 const srep_t bInt = toRep(b); in __ledf2() 98 const srep_t aInt = toRep(a); in __gedf2() 99 const srep_t bInt = toRep(b); in __gedf2() 120 const rep_t aAbs = toRep(a) & absMask; in ARM_EABI_FNALIAS() 121 const rep_t bAbs = toRep(b) & absMask; in ARM_EABI_FNALIAS()
|
D | fp_mul_impl.inc | 18 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent; 19 const unsigned int bExponent = toRep(b) >> significandBits & maxExponent; 20 const rep_t productSign = (toRep(a) ^ toRep(b)) & signBit; 22 rep_t aSignificand = toRep(a) & significandMask; 23 rep_t bSignificand = toRep(b) & significandMask; 29 const rep_t aAbs = toRep(a) & absMask; 30 const rep_t bAbs = toRep(b) & absMask; 33 if (aAbs > infRep) return fromRep(toRep(a) | quietBit); 35 if (bAbs > infRep) return fromRep(toRep(b) | quietBit);
|
D | fp_add_impl.inc | 18 rep_t aRep = toRep(a); 19 rep_t bRep = toRep(b); 27 if (aAbs > infRep) return fromRep(toRep(a) | quietBit); 29 if (bAbs > infRep) return fromRep(toRep(b) | quietBit); 33 if ((toRep(a) ^ toRep(b)) == signBit) return fromRep(qnanRep); 44 if (!bAbs) return fromRep(toRep(a) & toRep(b));
|
D | negdf2.c | 21 return fromRep(toRep(a) ^ signBit); in ARM_EABI_FNALIAS()
|
D | negsf2.c | 21 return fromRep(toRep(a) ^ signBit); in ARM_EABI_FNALIAS()
|
D | subdf3.c | 23 return __adddf3(a, fromRep(toRep(b) ^ signBit)); in ARM_EABI_FNALIAS()
|
D | subsf3.c | 23 return __addsf3(a, fromRep(toRep(b) ^ signBit)); in ARM_EABI_FNALIAS()
|
D | subtf3.c | 24 return __addtf3(a, fromRep(toRep(b) ^ signBit)); in __subtf3()
|
/external/llvm-project/compiler-rt/lib/builtins/ |
D | comparetf2.c | 47 const srep_t aInt = toRep(a); in __letf2() 48 const srep_t bInt = toRep(b); in __letf2() 100 const srep_t aInt = toRep(a); in __getf2() 101 const srep_t bInt = toRep(b); in __getf2() 129 const rep_t aAbs = toRep(a) & absMask; in COMPILER_RT_ALIAS() 130 const rep_t bAbs = toRep(b) & absMask; in COMPILER_RT_ALIAS()
|
D | comparesf2.c | 46 const srep_t aInt = toRep(a); in __lesf2() 47 const srep_t bInt = toRep(b); in __lesf2() 101 const srep_t aInt = toRep(a); in __gesf2() 102 const srep_t bInt = toRep(b); in __gesf2() 131 const rep_t aAbs = toRep(a) & absMask; in COMPILER_RT_ALIAS() 132 const rep_t bAbs = toRep(b) & absMask; in COMPILER_RT_ALIAS()
|
D | comparedf2.c | 46 const srep_t aInt = toRep(a); in __ledf2() 47 const srep_t bInt = toRep(b); in __ledf2() 101 const srep_t aInt = toRep(a); in __gedf2() 102 const srep_t bInt = toRep(b); in __gedf2() 131 const rep_t aAbs = toRep(a) & absMask; in COMPILER_RT_ALIAS() 132 const rep_t bAbs = toRep(b) & absMask; in COMPILER_RT_ALIAS()
|
D | fp_mul_impl.inc | 17 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent; 18 const unsigned int bExponent = toRep(b) >> significandBits & maxExponent; 19 const rep_t productSign = (toRep(a) ^ toRep(b)) & signBit; 21 rep_t aSignificand = toRep(a) & significandMask; 22 rep_t bSignificand = toRep(b) & significandMask; 29 const rep_t aAbs = toRep(a) & absMask; 30 const rep_t bAbs = toRep(b) & absMask; 34 return fromRep(toRep(a) | quietBit); 37 return fromRep(toRep(b) | quietBit);
|
D | fp_add_impl.inc | 18 rep_t aRep = toRep(a); 19 rep_t bRep = toRep(b); 28 return fromRep(toRep(a) | quietBit); 31 return fromRep(toRep(b) | quietBit); 35 if ((toRep(a) ^ toRep(b)) == signBit) 50 return fromRep(toRep(a) & toRep(b));
|
D | fp_div_impl.inc | 37 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent; 38 const unsigned int bExponent = toRep(b) >> significandBits & maxExponent; 39 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit; 41 rep_t aSignificand = toRep(a) & significandMask; 42 rep_t bSignificand = toRep(b) & significandMask; 49 const rep_t aAbs = toRep(a) & absMask; 50 const rep_t bAbs = toRep(b) & absMask; 54 return fromRep(toRep(a) | quietBit); 57 return fromRep(toRep(b) | quietBit);
|
D | negsf2.c | 16 COMPILER_RT_ABI fp_t __negsf2(fp_t a) { return fromRep(toRep(a) ^ signBit); } in __negsf2()
|
D | negdf2.c | 16 COMPILER_RT_ABI fp_t __negdf2(fp_t a) { return fromRep(toRep(a) ^ signBit); } in __negdf2()
|
D | subtf3.c | 21 return __addtf3(a, fromRep(toRep(b) ^ signBit)); in __subtf3()
|
/external/llvm-project/compiler-rt/test/builtins/Unit/ |
D | compiler_rt_logbf_test.c | 18 toRep(x), crt_value, toRep(crt_value), libm_value, in test__compiler_rt_logbf() 19 toRep(libm_value)); in test__compiler_rt_logbf()
|
D | compiler_rt_logb_test.c | 16 x, toRep(x), crt_value, toRep(crt_value), libm_value, in test__compiler_rt_logb() 17 toRep(libm_value)); in test__compiler_rt_logb()
|
D | compiler_rt_logbl_test.c | 20 x_t.all = toRep(x); in test__compiler_rt_logbl() 21 crt_value_t.all = toRep(crt_value); in test__compiler_rt_logbl() 22 libm_value_t.all = toRep(libm_value); in test__compiler_rt_logbl()
|