reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
23 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent; 24 const unsigned int bExponent = toRep(b) >> significandBits & maxExponent; 32 if (aExponent - 1U >= maxExponent - 1U || 33 bExponent - 1U >= maxExponent - 1U) { 167 if (writtenExponent >= maxExponent) {projects/compiler-rt/lib/builtins/divsf3.c
23 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent; 24 const unsigned int bExponent = toRep(b) >> significandBits & maxExponent; 32 if (aExponent - 1U >= maxExponent - 1U || 33 bExponent - 1U >= maxExponent - 1U) { 152 if (writtenExponent >= maxExponent) {projects/compiler-rt/lib/builtins/fp_add_impl.inc
68 int aExponent = aRep >> significandBits & maxExponent; 69 int bExponent = bRep >> significandBits & maxExponent; 129 if (aExponent >= maxExponent)projects/compiler-rt/lib/builtins/fp_lib.h
273 if (exp == maxExponent) {
projects/compiler-rt/lib/builtins/fp_mul_impl.inc17 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent; 18 const unsigned int bExponent = toRep(b) >> significandBits & maxExponent; 26 if (aExponent - 1U >= maxExponent - 1U || 27 bExponent - 1U >= maxExponent - 1U) { 94 if (productExponent >= maxExponent)