HomeSort by relevance Sort by last modified time
    Searched refs:FLT_MANT_DIG (Results 1 - 25 of 28) sorted by null

1 2

  /external/compiler-rt/lib/
floatundisf.c 35 if (sd > FLT_MANT_DIG)
41 * P = bit FLT_MANT_DIG-1 bits to the right of 1
42 * Q = bit FLT_MANT_DIG bits to the right of 1
47 case FLT_MANT_DIG + 1:
50 case FLT_MANT_DIG + 2:
53 a = (a >> (sd - (FLT_MANT_DIG+2))) |
54 ((a & ((du_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
60 /* a is now rounded to FLT_MANT_DIG or FLT_MANT_DIG+1 bits */
61 if (a & ((du_int)1 << FLT_MANT_DIG))
    [all...]
floatuntisf.c 37 if (sd > FLT_MANT_DIG)
43 * P = bit FLT_MANT_DIG-1 bits to the right of 1
44 * Q = bit FLT_MANT_DIG bits to the right of 1
49 case FLT_MANT_DIG + 1:
52 case FLT_MANT_DIG + 2:
55 a = (a >> (sd - (FLT_MANT_DIG+2))) |
56 ((a & ((tu_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
62 /* a is now rounded to FLT_MANT_DIG or FLT_MANT_DIG+1 bits */
63 if (a & ((tu_int)1 << FLT_MANT_DIG))
    [all...]
floatdisf.c 37 if (sd > FLT_MANT_DIG)
43 * P = bit FLT_MANT_DIG-1 bits to the right of 1
44 * Q = bit FLT_MANT_DIG bits to the right of 1
49 case FLT_MANT_DIG + 1:
52 case FLT_MANT_DIG + 2:
55 a = ((du_int)a >> (sd - (FLT_MANT_DIG+2))) |
56 ((a & ((du_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
62 /* a is now rounded to FLT_MANT_DIG or FLT_MANT_DIG+1 bits */
63 if (a & ((du_int)1 << FLT_MANT_DIG))
    [all...]
floattisf.c 39 if (sd > FLT_MANT_DIG)
45 * P = bit FLT_MANT_DIG-1 bits to the right of 1
46 * Q = bit FLT_MANT_DIG bits to the right of 1
51 case FLT_MANT_DIG + 1:
54 case FLT_MANT_DIG + 2:
57 a = ((tu_int)a >> (sd - (FLT_MANT_DIG+2))) |
58 ((a & ((tu_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
64 /* a is now rounded to FLT_MANT_DIG or FLT_MANT_DIG+1 bits */
65 if (a & ((tu_int)1 << FLT_MANT_DIG))
    [all...]
  /frameworks/compile/libbcc/runtime/lib/
floatundisf.c 34 if (sd > FLT_MANT_DIG)
40 * P = bit FLT_MANT_DIG-1 bits to the right of 1
41 * Q = bit FLT_MANT_DIG bits to the right of 1
46 case FLT_MANT_DIG + 1:
49 case FLT_MANT_DIG + 2:
52 a = (a >> (sd - (FLT_MANT_DIG+2))) |
53 ((a & ((du_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
59 /* a is now rounded to FLT_MANT_DIG or FLT_MANT_DIG+1 bits */
60 if (a & ((du_int)1 << FLT_MANT_DIG))
    [all...]
floatdisf.c 36 if (sd > FLT_MANT_DIG)
42 * P = bit FLT_MANT_DIG-1 bits to the right of 1
43 * Q = bit FLT_MANT_DIG bits to the right of 1
48 case FLT_MANT_DIG + 1:
51 case FLT_MANT_DIG + 2:
54 a = ((du_int)a >> (sd - (FLT_MANT_DIG+2))) |
55 ((a & ((du_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
61 /* a is now rounded to FLT_MANT_DIG or FLT_MANT_DIG+1 bits */
62 if (a & ((du_int)1 << FLT_MANT_DIG))
    [all...]
floattisf.c 40 if (sd > FLT_MANT_DIG)
46 * P = bit FLT_MANT_DIG-1 bits to the right of 1
47 * Q = bit FLT_MANT_DIG bits to the right of 1
52 case FLT_MANT_DIG + 1:
55 case FLT_MANT_DIG + 2:
58 a = ((tu_int)a >> (sd - (FLT_MANT_DIG+2))) |
59 ((a & ((tu_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
65 /* a is now rounded to FLT_MANT_DIG or FLT_MANT_DIG+1 bits */
66 if (a & ((tu_int)1 << FLT_MANT_DIG))
    [all...]
floatuntisf.c 38 if (sd > FLT_MANT_DIG)
44 * P = bit FLT_MANT_DIG-1 bits to the right of 1
45 * Q = bit FLT_MANT_DIG bits to the right of 1
50 case FLT_MANT_DIG + 1:
53 case FLT_MANT_DIG + 2:
56 a = (a >> (sd - (FLT_MANT_DIG+2))) |
57 ((a & ((tu_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
63 /* a is now rounded to FLT_MANT_DIG or FLT_MANT_DIG+1 bits */
64 if (a & ((tu_int)1 << FLT_MANT_DIG))
    [all...]
  /external/clang/lib/Headers/
float.h 39 # undef FLT_MANT_DIG
80 #define FLT_MANT_DIG __FLT_MANT_DIG__
  /prebuilts/sdk/renderscript/clang-include/
float.h 39 # undef FLT_MANT_DIG
75 #define FLT_MANT_DIG __FLT_MANT_DIG__
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/include/
float.h 36 #undef FLT_MANT_DIG
39 #define FLT_MANT_DIG __FLT_MANT_DIG__
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/include/
float.h 36 #undef FLT_MANT_DIG
39 #define FLT_MANT_DIG __FLT_MANT_DIG__
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/lib/gcc/mipsel-linux-android/4.4.3/include/
float.h 36 #undef FLT_MANT_DIG
39 #define FLT_MANT_DIG __FLT_MANT_DIG__
  /prebuilts/gcc/darwin-x86/x86/i686-android-linux-4.4.3/lib/gcc/i686-android-linux/4.4.3/include/
float.h 36 #undef FLT_MANT_DIG
39 #define FLT_MANT_DIG __FLT_MANT_DIG__
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include/
float.h 36 #undef FLT_MANT_DIG
39 #define FLT_MANT_DIG __FLT_MANT_DIG__
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/lib/gcc/mipsel-linux-android/4.4.3/include/
float.h 36 #undef FLT_MANT_DIG
39 #define FLT_MANT_DIG __FLT_MANT_DIG__
  /prebuilts/gcc/linux-x86/x86/i686-android-linux-4.4.3/lib/gcc/i686-android-linux/4.4.3/include/
float.h 36 #undef FLT_MANT_DIG
39 #define FLT_MANT_DIG __FLT_MANT_DIG__
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/include/
float.h 36 #undef FLT_MANT_DIG
39 #define FLT_MANT_DIG __FLT_MANT_DIG__
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/
float.h 36 #undef FLT_MANT_DIG
39 #define FLT_MANT_DIG __FLT_MANT_DIG__
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/include/
float.h 36 #undef FLT_MANT_DIG
39 #define FLT_MANT_DIG __FLT_MANT_DIG__
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include/
float.h 36 #undef FLT_MANT_DIG
39 #define FLT_MANT_DIG __FLT_MANT_DIG__
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include/
float.h 36 #undef FLT_MANT_DIG
39 #define FLT_MANT_DIG __FLT_MANT_DIG__
  /external/webkit/Source/WebCore/html/
NumberInputType.cpp 206 return step / pow(2.0, FLT_MANT_DIG);
  /external/stlport/stlport/stl/
_limits.h 402 FLT_MANT_DIG, // Binary digits of precision
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_limits.h 402 FLT_MANT_DIG, // Binary digits of precision

Completed in 456 milliseconds

1 2