Home
last modified time | relevance | path

Searched refs:bexp (Results 1 – 7 of 7) sorted by relevance

/external/valgrind/VEX/priv/
Dguest_generic_x87.c108 Int bexp, i, j, shift; in convert_f64le_to_f80le() local
112 bexp = (f64[7] << 4) | ((f64[6] >> 4) & 0x0F); in convert_f64le_to_f80le()
113 bexp &= 0x7FF; in convert_f64le_to_f80le()
116 if (bexp == 0 || bexp == 0x7FF) { in convert_f64le_to_f80le()
131 if (bexp == 0) { in convert_f64le_to_f80le()
161 bexp -= shift; in convert_f64le_to_f80le()
162 bexp += (16383 - 1023); in convert_f64le_to_f80le()
163 f80[9] = toUChar( (sign << 7) | ((bexp >> 8) & 0xFF) ); in convert_f64le_to_f80le()
164 f80[8] = toUChar( bexp & 0xFF ); in convert_f64le_to_f80le()
175 if (bexp == 0x7FF) { in convert_f64le_to_f80le()
[all …]
Dguest_x86_helpers.c1408 Int bexp; in x86g_calculate_FXAM() local
1427 bexp = (f64[7] << 4) | ((f64[6] >> 4) & 0x0F); in x86g_calculate_FXAM()
1428 bexp &= 0x7FF; in x86g_calculate_FXAM()
1438 if (bexp == 0 && mantissaIsZero) { in x86g_calculate_FXAM()
1446 if (bexp == 0 && !mantissaIsZero) { in x86g_calculate_FXAM()
1454 if (bexp == 0x7FF && mantissaIsZero) { in x86g_calculate_FXAM()
1462 if (bexp == 0x7FF && !mantissaIsZero) { in x86g_calculate_FXAM()
Dguest_amd64_helpers.c1870 Int bexp; in amd64g_calculate_FXAM() local
1889 bexp = (f64[7] << 4) | ((f64[6] >> 4) & 0x0F); in amd64g_calculate_FXAM()
1890 bexp &= 0x7FF; in amd64g_calculate_FXAM()
1900 if (bexp == 0 && mantissaIsZero) { in amd64g_calculate_FXAM()
1908 if (bexp == 0 && !mantissaIsZero) { in amd64g_calculate_FXAM()
1916 if (bexp == 0x7FF && mantissaIsZero) { in amd64g_calculate_FXAM()
1924 if (bexp == 0x7FF && !mantissaIsZero) { in amd64g_calculate_FXAM()
/external/e2fsprogs/intl/
Dplural.y117 new_exp_3 (enum operator op, struct expression *bexp, in new_exp_3() argument
122 args[0] = bexp; in new_exp_3()
Dplural.c138 new_exp_3 (enum operator op, struct expression *bexp, in new_exp_3() argument
143 args[0] = bexp; in new_exp_3()
/external/icu/icu4c/source/test/cintltst/
Dcnumtst.c2902 char bexp[kBBufSize]; in TestVariousStylesAndAttributes() local
2904 u_strToUTF8(bexp, kBBufSize, NULL, uexp, uexplen, &status); in TestVariousStylesAndAttributes()
2907 … (int)lsaTestPtr->style, lsaTestPtr->locale, lsaTestPtr->attribute, veItemPtr->value, bexp, bget); in TestVariousStylesAndAttributes()
/external/python/cpython3/Lib/test/
Dtest_statistics.py55 bexp = b.as_tuple()[2]
56 return (aexp == bexp) and (aexp in ('n', 'N')) # Both NAN or both sNAN.