Searched defs:bexp (Results 1 - 7 of 7) sorted by relevance
/external/valgrind/main/VEX/useful/ |
H A D | fp_80_64.c | 106 Int bexp, i, j, shift; local 110 bexp = (f64[7] << 4) | ((f64[6] >> 4) & 0x0F); 111 bexp &= 0x7FF; 114 if (bexp == 0 || bexp == 0x7FF) { 129 if (bexp == 0) { 159 bexp -= shift; 160 bexp += (16383 - 1023); 161 f80[9] = toUChar( (sign << 7) | ((bexp >> 8) & 0xFF) ); 162 f80[8] = toUChar( bexp 247 Int bexp, i, j; local [all...] |
H A D | hd_fpu.c | 75 Int bexp = ((UInt)e_lsb[9] << 8) | (UInt)e_lsb[8]; local 76 bexp &= 0x7fff; 78 if (bexp == 0) 79 bexp = 0; /* preserve zeroes */ 81 if (bexp == 0x7FFF) 82 bexp = 0x7FF; /* preserve Infs/Nans */ 84 bexp -= (16383 - 1023); 85 if (bexp < 0) bexp = 0; 86 if (bexp > 109 Int bexp = ((UInt)d_lsb[7] << 4) | local [all...] |
/external/valgrind/main/VEX/priv/ |
H A D | guest_generic_x87.c | 108 Int bexp, i, j, shift; local 112 bexp = (f64[7] << 4) | ((f64[6] >> 4) & 0x0F); 113 bexp &= 0x7FF; 116 if (bexp == 0 || bexp == 0x7FF) { 131 if (bexp == 0) { 161 bexp -= shift; 162 bexp += (16383 - 1023); 163 f80[9] = toUChar( (sign << 7) | ((bexp >> 8) & 0xFF) ); 164 f80[8] = toUChar( bexp 249 Int bexp, i, j; local [all...] |
H A D | guest_x86_helpers.c | 1370 Int bexp; local 1389 bexp = (f64[7] << 4) | ((f64[6] >> 4) & 0x0F); 1390 bexp &= 0x7FF; 1400 if (bexp == 0 && mantissaIsZero) { 1408 if (bexp == 0 && !mantissaIsZero) { 1416 if (bexp == 0x7FF && mantissaIsZero) { 1424 if (bexp == 0x7FF && !mantissaIsZero) {
|
H A D | guest_amd64_helpers.c | 1462 Int bexp; local 1481 bexp = (f64[7] << 4) | ((f64[6] >> 4) & 0x0F); 1482 bexp &= 0x7FF; 1492 if (bexp == 0 && mantissaIsZero) { 1500 if (bexp == 0 && !mantissaIsZero) { 1508 if (bexp == 0x7FF && mantissaIsZero) { 1516 if (bexp == 0x7FF && !mantissaIsZero) {
|
/external/stlport/src/ |
H A D | num_get_float.cpp | 265 // Convert a 64-bitb fraction * 10^exp to a 64-bit fraction * 2^bexp. 268 // bexp: base-2 exponent (output parameter) 269 static void _Stl_tenscale(uint64& p, int exp, int& bexp) { argument 270 bexp = 0; 309 bexp += _Stl_twoexp[hi] - norm; 316 bexp += _Stl_twoexp[lo] - norm; 347 int bexp; /* binary exponent */ local 368 bexp = 64; /* convert from 64b int to fraction */ 382 bexp -= 64 - nzero; 390 bexp 503 int bexp = 64; /* convert from 64b int to fraction */ local [all...] |
/external/e2fsprogs/intl/ |
H A D | plural.c | 138 new_exp_3 (enum operator op, struct expression *bexp, argument 143 args[0] = bexp;
|
Completed in 285 milliseconds