Home
last modified time | relevance | path

Searched refs:xh (Results 1 - 23 of 23) sorted by relevance

/third_party/musl/src/math/
H A Dhypot.c13 double_t xh, xl, xc; in sq() local
16 xh = x - xc + xc; in sq()
17 xl = x - xh; in sq()
19 *lo = xh*xh - *hi + 2*xh*xl + xl*xl; in sq()
53 /* xh*xh must not overflow and xl*xl must not underflow in sq */ in hypot()
H A Dhypotl.c17 long double xh, xl, xc; in sq() local
19 xh = x - xc + xc; in sq()
20 xl = x - xh; in sq()
22 *lo = xh*xh - *hi + 2*xh*xl + xl*xl; in sq()
/third_party/musl/porting/liteos_a/kernel/src/math/
H A Dhypot.c13 double_t xh, xl, xc; in sq() local
16 xh = x - xc + xc; in sq()
17 xl = x - xh; in sq()
19 *lo = xh*xh - *hi + 2*xh*xl + xl*xl; in sq()
53 /* xh*xh must not overflow and xl*xl must not underflow in sq */ in hypot()
H A Dhypotl.c17 long double xh, xl, xc; in sq() local
19 xh = x - xc + xc; in sq()
20 xl = x - xh; in sq()
22 *lo = xh*xh - *hi + 2*xh*xl + xl*xl; in sq()
/third_party/musl/src/math/x32/
H A Dexpl.s55 # xh = x - c*x + c*x
56 # xl = x - xh
67 # fpu stack: 2^hi x hi xh xl yh
68 # lo = hi - xh*yh + xl*yh
78 # fpu stack: 2^hi x lo xh xl yl
79 # lo += xh*yl + xl*yl
/third_party/musl/src/math/i386/
H A Dexpl.s56 # xh = x - c*x + c*x
57 # xl = x - xh
68 # fpu stack: 2^hi x hi xh xl yh
69 # lo = hi - xh*yh + xl*yh
79 # fpu stack: 2^hi x lo xh xl yl
80 # lo += xh*yl + xl*yl
/third_party/musl/src/math/x86_64/
H A Dexpl.s55 # xh = x - c*x + c*x
56 # xl = x - xh
67 # fpu stack: 2^hi x hi xh xl yh
68 # lo = hi - xh*yh + xl*yh
78 # fpu stack: 2^hi x lo xh xl yl
79 # lo += xh*yl + xl*yl
/third_party/node/deps/npm/node_modules/fastest-levenshtein/
H A Dmod.js63 var xh = ((((eq | mb) & pv_1) + pv_1) ^ pv_1) | eq | mb;
64 var ph = mv_1 | ~(xh | pv_1);
65 var mh = pv_1 & xh;
94 var xh = ((((eq | mb) & pv) + pv) ^ pv) | eq | mb;
95 var ph = mv | ~(xh | pv);
96 var mh = pv & xh;
/third_party/optimized-routines/math/test/rtest/
H A Dsemi.c15 uint32 xh, xl, roundword; in test_rint() local
42 xh = in[0]; in test_rint()
49 xl = (xl >> 1) | ((xh & 1) << 31); in test_rint()
50 xh = xh >> 1; in test_rint()
54 xh += (xl==0); in test_rint()
57 xh = (xh << 1) | ((xl >> 31) & 1); in test_rint()
60 out[0] = xh; in test_rint()
429 uint32 xh, x in test_frexp() local
[all...]
/third_party/mesa3d/src/amd/addrlib/src/core/
H A Daddrlib2.cpp1742 UINT_32 xh, yh, zh;
1750 xh = pIn->x >> 3;
1760 xh = pIn->x >> 2;
1770 xh = pIn->x >> 2;
1780 xh = pIn->x >> 2;
1789 xh = pIn->x >> 1;
1794 microBlockOffset |= ((MortonGen3d(xh, yh, zh, 1) << 7) & 0x380);
/third_party/mbedtls/library/
H A Daesni.c212 __m128i xh = gcm_mix(dx); in mbedtls_aesni_gcm_mult() local
213 cc = _mm_xor_si128(xh, dd); // x3+h1:x2+h0 in mbedtls_aesni_gcm_mult()
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fFragDepthTests.cpp255 float xh = ((float)(x - half) + 0.5f) / (float)(referenceFrame.getWidth()-half); in iterate() local
256 float rd = 1.0f - (xh + yf) * 0.5f; in iterate()
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fDepthRangeTests.cpp248 float xh = ((float)(x - half) + 0.5f) / (float)(referenceFrame.getWidth()-half); in iterate() local
249 float rd = 1.0f - (xh + yf) * 0.5f; in iterate()
/third_party/mbedtls/3rdparty/p256-m/p256-m/
H A Dp256-m.c236 * x = xh:xl = 2^16 * xh + xl
239 * x*y = xl*yl + 2**16 (xh*yl + yl*yh) + 2**32 xh*yh
253 /* now we have %[x], %[y], %[u], %[v] = xl, yl, xh, yh */ in u32_muladd64()
260 /* now we have %[x], %[y], %[v], %[w] = xl*yl, xh*yl, xl*yh, xh*yh */ in u32_muladd64()
312 /* x = xl + 2**16 xh, y = yl + 2**16 yh */ in u32_muladd64()
315 const uint16_t xh = x >> 16; in u32_muladd64() local
318 /* x*y = xl*yl + 2**16 (xh*y in u32_muladd64()
[all...]
/third_party/node/deps/npm/node_modules/jsbn/
H A Dindex.js47 var xl = x&0x7fff, xh = x>>15;
51 var m = xh*l+h*xl;
53 c = (l>>>30)+(m>>>15)+xh*h+(c>>>30);
61 var xl = x&0x3fff, xh = x>>14;
65 var m = xh*l+h*xl;
67 c = (l>>28)+(m>>14)+xh*h;
/third_party/vk-gl-cts/external/openglcts/modules/common/
H A DglcFragDepthTests.cpp253 float xh = ((float)x - (float)half + 0.5f) / (float)(referenceFrame.getWidth() - half); in iterate() local
254 float rd = 1.0f - (xh + yf) * 0.5f; in iterate()
/third_party/icu/icu4c/source/common/
H A Dlocmap.cpp759 ILCID_POSIX_ELEMENT_ARRAY(0x0434, xh, xh_ZA)
941 ILCID_POSIX_MAP(xh), /* xh Xhosa 0x34 */
/third_party/node/deps/icu-small/source/common/
H A Dlocmap.cpp759 ILCID_POSIX_ELEMENT_ARRAY(0x0434, xh, xh_ZA)
941 ILCID_POSIX_MAP(xh), /* xh Xhosa 0x34 */
/third_party/skia/third_party/externals/icu/source/common/
H A Dlocmap.cpp759 ILCID_POSIX_ELEMENT_ARRAY(0x0434, xh, xh_ZA)
941 ILCID_POSIX_MAP(xh), /* xh Xhosa 0x34 */
/third_party/ffmpeg/libavfilter/
H A Dvsrc_testsrc.c796 int pos, xh, yh; in test2_fill_picture() local
802 xh = pos < 1 * l ? pos : in test2_fill_picture()
809 xh -= l >> 1; in test2_fill_picture()
812 int x = av_rescale(xh, i, steps) + xc; in test2_fill_picture()
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_arit.c1428 LLVMValueRef xl, xh, v0l, v0h, v1l, v1h, resl, resh; in lp_build_lerp() local
1443 lp_build_unpack2_native(bld->gallivm, type, wide_type, x, &xl, &xh); in lp_build_lerp()
1454 resh = lp_build_lerp_simple(&wide_bld, xh, v0h, v1h, flags); in lp_build_lerp()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DSubzeroReactor.cpp3018 auto xh = x >> 16;
3023 auto xhyl = xh * yl;
3031 return (xh * yh) + (xlyhh + xhylh) + oflow;
/third_party/vixl/test/aarch64/
H A Dtest-simulator-aarch64.cc2950 CALL_TEST_FP_HELPER(mnemonic, xh, type, kInputFloat16##input); \

Completed in 35 milliseconds