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

1 2

  /external/compiler-rt/test/builtins/Unit/
trunctfsf2_test.c 43 UINT32_C(0x7fc00000)))
47 UINT32_C(0x7fc08000)))
51 UINT32_C(0x7f800000)))
54 if (test__trunctfsf2(0.0L, UINT32_C(0x0)))
58 UINT32_C(0x4211d156)))
61 UINT32_C(0x3b71e9e2)))
64 UINT32_C(0x7f800000)))
67 UINT32_C(0x0)))
extendsftf2_test.c 48 if (test__extendsftf2(makeNaN32(UINT32_C(0x410000)),
  /external/llvm/unittests/Support/
ScaledNumberTest.cpp 195 EXPECT_EQ(0, getLg(UINT32_C(1), 0));
196 EXPECT_EQ(1, getLg(UINT32_C(1), 1));
197 EXPECT_EQ(1, getLg(UINT32_C(2), 0));
198 EXPECT_EQ(3, getLg(UINT32_C(1), 3));
199 EXPECT_EQ(3, getLg(UINT32_C(7), 0));
200 EXPECT_EQ(3, getLg(UINT32_C(8), 0));
201 EXPECT_EQ(3, getLg(UINT32_C(9), 0));
202 EXPECT_EQ(3, getLg(UINT32_C(64), -3));
205 EXPECT_EQ(-1, getLg(UINT32_C(1), -1));
206 EXPECT_EQ(-1, getLg(UINT32_C(2), -2))
    [all...]
  /external/compiler-rt/lib/builtins/ppc/
fixunstfdi.c 15 const uint32_t highWordMinusOne = (uint32_t)(hibits.x >> 32) - UINT32_C(0x3ff00000);
18 if (UINT32_C(0x04000000) > highWordMinusOne)
fixtfdi.c 17 const uint32_t absHighWord = (uint32_t)(hibits.x >> 32) & UINT32_C(0x7fffffff);
18 const uint32_t absHighWordMinusOne = absHighWord - UINT32_C(0x3ff00000);
21 if (UINT32_C(0x03f00000) > absHighWordMinusOne)
gcc_qdiv.c 14 static const uint32_t infinityHi = UINT32_C(0x7ff00000);
gcc_qmul.c 14 static const uint32_t infinityHi = UINT32_C(0x7ff00000);
gcc_qadd.c 14 static const uint32_t infinityHi = UINT32_C(0x7ff00000);
gcc_qsub.c 14 static const uint32_t infinityHi = UINT32_C(0x7ff00000);
  /development/ndk/platforms/android-3/include/
stdint.h 114 # define UINT_FAST16_C(c) UINT32_C(c)
145 # define UINT32_C(c) c ## U
146 # define UINT_LEAST32_C(c) UINT32_C(c)
147 # define UINT_FAST32_C(c) UINT32_C(c)
212 # define UINTPTR_C(c) UINT32_C(c)
  /external/compiler-rt/lib/builtins/
fp_trunc.h 44 #define DST_REP_C UINT32_C
fp_extend.h 22 #define SRC_REP_C UINT32_C
divdf3.c 84 uint32_t recip32 = UINT32_C(0x7504f333) - q31b;
divsf3.c 84 uint32_t reciprocal = UINT32_C(0x7504f333) - q31b;
  /external/llvm/include/llvm/Support/
DataTypes.h 161 #ifndef UINT32_C
162 # define UINT32_C(C) C##ui32
  /bionic/libc/include/
stdint.h 122 #define UINT_FAST16_C(c) UINT32_C(c)
127 #define UINT32_C(c) c ## U
128 #define UINT_LEAST32_C(c) UINT32_C(c)
129 #define UINT_FAST32_C(c) UINT32_C(c)
149 # define UINTPTR_C(c) UINT32_C(c)
  /development/ndk/platforms/android-L/include/
stdint.h 122 #define UINT_FAST16_C(c) UINT32_C(c)
127 #define UINT32_C(c) c ## U
128 #define UINT_LEAST32_C(c) UINT32_C(c)
129 #define UINT_FAST32_C(c) UINT32_C(c)
149 # define UINTPTR_C(c) UINT32_C(c)
  /external/chromium_org/media/cast/net/
cast_transport_defines.h 80 static const uint32 kStartFrameId = UINT32_C(0xffffffff);
  /external/chromium_org/third_party/smhasher/src/
pstdint.h 254 # if !defined (UINT32_C)
255 # define UINT32_C(x) (x + (UINT32_MAX - UINT32_MAX))
386 # define UINT32_C(v) v ## U
389 # define UINT32_C(v) v ## UL
395 # define UINT32_C(v) ((unsigned short) (v))
563 # define UINTMAX_C(v) UINT32_C(v)
  /external/clang/test/Preprocessor/
stdint.c     [all...]
  /external/libcxx/test/depr/depr.c.headers/
stdint_h.pass.cpp 275 #ifndef UINT32_C
276 #error UINT32_C not defined
  /external/libcxx/test/language.support/cstdint/cstdint.syn/
cstdint.pass.cpp 275 #ifndef UINT32_C
276 #error UINT32_C not defined
  /external/chromium_org/media/cast/
cast_defines.h 25 const uint32 kStartFrameId = UINT32_C(0xffffffff);
  /external/chromium_org/third_party/libusb/src/msvc/
stdint.h 249 #define UINT32_C(val) (val##i32)
  /external/chromium_org/third_party/mesa/src/include/c99/
stdint.h 237 #define UINT32_C(val) val##ui32

Completed in 813 milliseconds

1 2