HomeSort by relevance Sort by last modified time
    Searched refs:bexp (Results 1 - 9 of 9) sorted by null

  /external/valgrind/main/VEX/useful/
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 & 0xFF )
247 Int bexp, i, j; local
    [all...]
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 > 0x7FF) bexp = 0x7FF
109 Int bexp = ((UInt)d_lsb[7] << 4) | local
    [all...]
  /external/stlport/src/
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) {
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 += sexp
503 int bexp = 64; \/* convert from 64b int to fraction *\/ local
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
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) {
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 += sexp
503 int bexp = 64; \/* convert from 64b int to fraction *\/ local
    [all...]
  /external/valgrind/main/VEX/priv/
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 & 0xFF )
249 Int bexp, i, j; local
    [all...]
guest_x86_helpers.c 1370 Int bexp; local
    [all...]
guest_amd64_helpers.c 1462 Int bexp; local
    [all...]
  /external/e2fsprogs/intl/
plural.y 117 new_exp_3 (enum operator op, struct expression *bexp,
122 args[0] = bexp;
plural.c 138 new_exp_3 (enum operator op, struct expression *bexp,
143 args[0] = bexp;
    [all...]

Completed in 568 milliseconds