HomeSort by relevance Sort by last modified time
    Searched defs:Exp_shift (Results 1 - 4 of 4) sorted by null

  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
gdtoaimp.h 307 #define Exp_shift 20
346 #define Exp_shift 24
372 #define Exp_shift 23
  /external/chromium_org/third_party/WebKit/Source/wtf/
dtoa.cpp 67 #define Exp_shift 20
562 if ((de = (int)(d0 >> Exp_shift)))
    [all...]
  /external/chromium_org/base/third_party/dmg_fp/
dtoa.cc 344 #define Exp_shift 20
401 #define Exp_shift 24
430 #define Exp_shift 23
1187 L = -L >> Exp_shift;
1188 if (L < Exp_shift) {
1194 L -= Exp_shift;
1306 de = (int)(d0 >> Exp_shift);
1311 de = (int)(d0 >> Exp_shift);
    [all...]
  /ndk/sources/android/support/src/stdio/
strtod.c 250 #define Exp_shift 20
280 #define Exp_shift 24
304 #define Exp_shift 23
1290 L = (ULong)-L >> Exp_shift;
1291 if (L < Exp_shift) {
1297 L -= Exp_shift;
1415 de = (int)(d0 >> Exp_shift);
1420 if ((de = (int)(d0 >> Exp_shift)) != 0)
    [all...]

Completed in 85 milliseconds