Home
last modified time | relevance | path

Searched refs:xMant (Results 1 – 18 of 18) sorted by relevance

/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libc/utils/FPUtil/
H A DSqrtLongDoubleX86.h70 UIntType xMant = bits.getMantissa();
74 xMant |= One;
76 internal::normalize<long double>(xExp, xMant);
82 xMant <<= 1;
98 UIntType r = xMant - One;
H A DSqrt.h122 UIntType xMant = bits.getMantissa(); in sqrt() local
127 internal::normalize<T>(xExp, xMant); in sqrt()
129 xMant |= One; in sqrt()
135 xMant <<= 1; in sqrt()
151 UIntType r = xMant - One; in sqrt()
/dports/devel/llvm12/llvm-project-12.0.1.src/libc/utils/FPUtil/
H A DSqrtLongDoubleX86.h71 UIntType xMant = bits.mantissa; variable
75 xMant |= One;
77 internal::normalize<long double>(xExp, xMant);
83 xMant <<= 1;
99 UIntType r = xMant - One;
H A DSqrt.h116 UIntType xMant = bits.mantissa; in sqrt() local
121 internal::normalize<T>(xExp, xMant); in sqrt()
123 xMant |= One; in sqrt()
129 xMant <<= 1; in sqrt()
145 UIntType r = xMant - One; in sqrt()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libc/src/__support/FPUtil/
H A DSqrtLongDoubleX86.h70 UIntType xMant = bits.getMantissa();
74 xMant |= One;
76 internal::normalize<long double>(xExp, xMant);
82 xMant <<= 1;
98 UIntType r = xMant - One;
H A DSqrt.h122 UIntType xMant = bits.getMantissa(); in sqrt() local
127 internal::normalize<T>(xExp, xMant); in sqrt()
129 xMant |= One; in sqrt()
135 xMant <<= 1; in sqrt()
151 UIntType r = xMant - One; in sqrt()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/libc/utils/FPUtil/
H A DSqrtLongDoubleX86.h70 UIntType xMant = bits.getMantissa();
74 xMant |= One;
76 internal::normalize<long double>(xExp, xMant);
82 xMant <<= 1;
98 UIntType r = xMant - One;
H A DSqrt.h122 UIntType xMant = bits.getMantissa(); in sqrt() local
127 internal::normalize<T>(xExp, xMant); in sqrt()
129 xMant |= One; in sqrt()
135 xMant <<= 1; in sqrt()
151 UIntType r = xMant - One; in sqrt()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/libc/utils/FPUtil/
H A DSqrtLongDoubleX86.h71 UIntType xMant = bits.mantissa; variable
75 xMant |= One;
77 internal::normalize<long double>(xExp, xMant);
83 xMant <<= 1;
99 UIntType r = xMant - One;
H A DSqrt.h116 UIntType xMant = bits.mantissa; in sqrt() local
121 internal::normalize<T>(xExp, xMant); in sqrt()
123 xMant |= One; in sqrt()
129 xMant <<= 1; in sqrt()
145 UIntType r = xMant - One; in sqrt()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/libc/utils/FPUtil/
H A DSqrtLongDoubleX86.h71 UIntType xMant = bits.mantissa; variable
75 xMant |= One;
77 internal::normalize<long double>(xExp, xMant);
83 xMant <<= 1;
99 UIntType r = xMant - One;
H A DSqrt.h116 UIntType xMant = bits.mantissa; in sqrt() local
121 internal::normalize<T>(xExp, xMant); in sqrt()
123 xMant |= One; in sqrt()
129 xMant <<= 1; in sqrt()
145 UIntType r = xMant - One; in sqrt()
/dports/devel/llvm13/llvm-project-13.0.1.src/libc/utils/FPUtil/
H A DSqrtLongDoubleX86.h70 UIntType xMant = bits.getMantissa();
74 xMant |= One;
76 internal::normalize<long double>(xExp, xMant);
82 xMant <<= 1;
98 UIntType r = xMant - One;
H A DSqrt.h122 UIntType xMant = bits.getMantissa(); in sqrt() local
127 internal::normalize<T>(xExp, xMant); in sqrt()
129 xMant |= One; in sqrt()
135 xMant <<= 1; in sqrt()
151 UIntType r = xMant - One; in sqrt()
/dports/lang/voc/voc-63008f6/src/library/ooc/
H A DoocLRealMath.Mod120 xMant, yEst, z: LONGREAL; xExp: INTEGER;
127 xMant:=l.fraction(x)*HALF; xExp:=l.exponent(x)+1;
130 yEst:=P0+P1*xMant;
133 z:=(yEst+xMant/yEst); yEst:=0.25*z+xMant/z;
134 yEst:=HALF*(yEst+xMant/yEst);
H A DoocRealMath.Mod122 xMant, yEst, z: REAL; xExp: INTEGER;
129 xMant:=l.fraction(x)*HALF; xExp:=l.exponent(x)+1;
132 yEst:=P0+P1*xMant;
135 z:=(yEst+xMant/yEst); yEst:=0.25*z+xMant/z;
/dports/lang/voc/voc-63008f6/src/runtime/
H A DMathL.Mod269 xMant, yEst, z: LONGREAL; xExp: INTEGER;
276 xMant := fraction(x)*HALF; xExp := exponent(x) + 1;
279 yEst := P0 + P1*xMant;
282 z := (yEst + xMant/yEst); yEst := 0.25*z + xMant/z;
283 yEst := HALF*(yEst + xMant/yEst);
H A DMath.Mod287 xMant, yEst, z: REAL; xExp: INTEGER;
294 xMant := fraction(x) * HALF; xExp := exponent(x) + 1;
297 yEst := P0 + P1 * xMant;
300 z := (yEst + xMant/yEst); yEst := 0.25 * z + xMant/z;