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

  /external/chromium_org/third_party/WebKit/Source/wtf/
dtoa.cpp 85 #define Exp_shift 20
561 if ((de = (int)(d0 >> Exp_shift)))
    [all...]
  /bionic/libc/stdlib/
strtod.c 243 #define Exp_shift 20
273 #define Exp_shift 24
297 #define Exp_shift 23
1037 L = (ULong)-L >> Exp_shift;
1038 if (L < Exp_shift) {
1044 L -= Exp_shift;
1162 de = (int)(d0 >> Exp_shift);
1167 if ((de = (int)(d0 >> Exp_shift)) != 0)
    [all...]
  /external/chromium/base/third_party/dmg_fp/
dtoa.cc 344 #define Exp_shift 20
401 #define Exp_shift 24
430 #define Exp_shift 23
1178 L = -L >> Exp_shift;
1179 if (L < Exp_shift) {
1185 L -= Exp_shift;
1297 de = (int)(d0 >> Exp_shift);
1302 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
1178 L = -L >> Exp_shift;
1179 if (L < Exp_shift) {
1185 L -= Exp_shift;
1297 de = (int)(d0 >> Exp_shift);
1302 if ((de = (int)(d0 >> Exp_shift)))
    [all...]

Completed in 36 milliseconds