Searched refs:UINT64_C (Results 51 - 75 of 162) sorted by relevance

1234567

/external/gptfdisk/
H A Dattributes.cc80 if ((UINT64_C(1) << i) & attributes) {
98 bitset = (UINT64_C(1) << bitNum) & attributes;
120 bitValue = UINT64_C(1) << response; // Find the integer value of the bit
H A Dbsd.cc244 uint64_t retval = UINT64_C(0);
254 uint64_t retval = UINT64_C(0);
303 guid.SetAttributes(UINT64_C(0));
H A Dgpt.cc214 if (secondHeader.currentLBA != (diskSize - UINT64_C(1))) {
280 << mainHeader.backupLBA + UINT64_C(1) << " sectors.)\n"
560 mainHeader.partitionEntriesLBA = UINT64_C(2);
581 secondHeader.partitionEntriesLBA = secondHeader.lastUsableLBA + UINT64_C(1);
602 mbrLast = mbrFirst + (uint64_t) protectiveMBR.GetLength(i) - UINT64_C(1);
815 allOK = LoadHeader(&secondHeader, myDisk, diskSize - UINT64_C(1), &secondCrcOk) && allOK;
1060 if (mainHeader.backupLBA < (diskSize - UINT64_C(1))) {
1300 if (secondHeader.currentLBA != diskSize - UINT64_C(1)) {
1656 if (allOK && (partitions[gptPart].GetLastLBA() == UINT64_C(0))) {
1854 mainHeader.currentLBA = UINT64_C(
[all...]
/external/compiler-rt/lib/builtins/
H A Dfp_lib.h36 # undef UINT64_C macro
37 # define UINT64_C(c) (c ## ULL) macro
66 #define REP_C UINT64_C
140 #define Word_LoMask UINT64_C(0x00000000ffffffff)
141 #define Word_HiMask UINT64_C(0xffffffff00000000)
142 #define Word_FullMask UINT64_C(0xffffffffffffffff)
H A Dfloatundidf.c43 low.x |= a & UINT64_C(0x00000000ffffffff);
/external/boringssl/src/crypto/fipsmodule/bn/
H A Dmontgomery_inv.c108 static const uint64_t alpha = UINT64_C(1) << (LG_LITTLE_R - 1);
126 uint64_t u_is_odd = UINT64_C(0) - (u & 1); /* Either 0xff..ff or 0. */
/external/boringssl/src/crypto/fipsmodule/modes/
H A Dgcm_test.cc118 EXPECT_EQ(UINT64_C(0x0807060504030201),
119 CRYPTO_bswap8(UINT64_C(0x0102030405060708)));
/external/clang/test/CodeGen/
H A Daarch64-neon-scalar-x-indexed-elem.c512 arg1 = vcreate_f64(UINT64_C(0x3fd6304bc43ab5c2));
513 arg2 = vcreate_f64(UINT64_C(0x3fee211e215aeef3));
539 arg1 = vcreate_f64(UINT64_C(0x3fd6304bc43ab5c2));
540 arg2 = vcreate_f64(UINT64_C(0x3fee211e215aeef3));
/external/compiler-rt/test/builtins/Unit/
H A Dtruncdfhf2_test.c41 if (test__truncdfhf2(makeNaN64(UINT64_C(0x8000)),
/external/libchrome/base/
H A Drand_util.cc45 uint64_t random_bits = bits & ((UINT64_C(1) << kBits) - 1);
/external/bison/darwin-lib/
H A Dstdint.h597 #undef UINT64_C macro
606 # define UINT64_C(x) x##UL macro
608 # define UINT64_C(x) x##ui64 macro
610 # define UINT64_C(x) x##ULL macro
629 # define UINTMAX_C(x) UINT64_C(x)
/external/bison/lib/
H A Dstdint.in.h596 #undef UINT64_C
605 # define UINT64_C(x) x##UL
607 # define UINT64_C(x) x##ui64
609 # define UINT64_C(x) x##ULL
628 # define UINTMAX_C(x) UINT64_C(x)
/external/vixl/src/aarch64/
H A Dinstructions-aarch64.cc40 RawbitsToDouble(UINT64_C(0x7ff0000000000000));
42 RawbitsToDouble(UINT64_C(0xfff0000000000000));
46 const double kFP64DefaultNaN = RawbitsToDouble(UINT64_C(0x7ff8000000000000));
57 uint64_t result = value & ((UINT64_C(1) << width) - 1);
154 uint64_t bits = (UINT64_C(1) << (imm_s + 1)) - 1;
166 uint64_t bits = (UINT64_C(1) << ((imm_s & mask) + 1)) - 1;
/external/clang/test/Preprocessor/
H A Dstdint.c1161 // TCE:UINT64_C_(0) UINT64_C(0)
1492 UINT64_C_(0) UINT64_C(0)
/external/jemalloc/include/jemalloc/internal/
H A Dprng.h26 #define PRNG_A_64 UINT64_C(6364136223846793005)
27 #define PRNG_C_64 UINT64_C(1442695040888963407)
/external/jemalloc/include/msvc_compat/C99/
H A Dstdint.h238 #define UINT64_C(val) val##ui64 macro
242 #define UINTMAX_C UINT64_C
/external/libvncserver/compat/msvc/
H A Dstdint.h238 #define UINT64_C(val) val##ui64 macro
242 #define UINTMAX_C UINT64_C
/external/llvm/unittests/Support/
H A DBranchProbabilityTest.cpp139 auto Two63 = UINT64_C(1) << 63;
140 auto Two31 = UINT64_C(1) << 31;
151 EXPECT_EQ(UINT64_C(9223372045444710399),
172 auto Two63 = UINT64_C(1) << 63;
173 auto Two31 = UINT64_C(1) << 31;
188 EXPECT_EQ(UINT64_C(18446744060824649767),
190 .scaleByInverse(UINT64_C(9223372047592194056)));
191 EXPECT_EQ(UINT64_C(18446744060824649739),
/external/vixl/test/aarch64/
H A Dtest-utils-aarch64.cc45 const double kFP64SignallingNaN = RawbitsToDouble(UINT64_C(0x7ff000007f800001));
49 const double kFP64QuietNaN = RawbitsToDouble(UINT64_C(0x7ff800007fc00001));
282 if (((UINT64_C(1) << n) & allowed) != 0) {
293 list |= (UINT64_C(1) << n);
313 if (((UINT64_C(1) << n) & allowed) != 0) {
324 list |= (UINT64_C(1) << n);
338 if (reg_list & (UINT64_C(1) << i)) {
361 if (reg_list & (UINT64_C(1) << i)) {
/external/llvm/lib/Target/WebAssembly/
H A DWebAssemblySetP2AlignOperands.cpp92 (UINT64_C(1)
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DDataTypes.h.cmake166 #ifndef UINT64_C
167 # define UINT64_C(C) C##ui64
H A DDataTypes.h.in166 #ifndef UINT64_C
167 # define UINT64_C(C) C##ui64
/external/syslinux/dos/
H A Dstdint.h135 # define UINT64_C(n) n ## ULL macro
/external/libchrome/base/numerics/
H A Dsafe_numerics_unittest.cc671 EXPECT_TRUE(IsValueInRangeForNumericType<uint32_t>(UINT64_C(0xffffffff)));
672 EXPECT_FALSE(IsValueInRangeForNumericType<uint32_t>(UINT64_C(0x100000000)));
673 EXPECT_FALSE(IsValueInRangeForNumericType<uint32_t>(UINT64_C(0x100000001)));
704 EXPECT_TRUE(IsValueInRangeForNumericType<uint64_t>(UINT64_C(0xffffffff)));
705 EXPECT_TRUE(IsValueInRangeForNumericType<uint64_t>(UINT64_C(0x100000000)));
706 EXPECT_TRUE(IsValueInRangeForNumericType<uint64_t>(UINT64_C(0x100000001)));
727 IsValueInRangeForNumericType<int64_t>(UINT64_C(0x7fffffffffffffff)));
729 IsValueInRangeForNumericType<int64_t>(UINT64_C(0x8000000000000000)));
731 IsValueInRangeForNumericType<int64_t>(UINT64_C(0xffffffffffffffff)));
/external/llvm/include/llvm/Analysis/
H A DMemoryLocation.h45 enum : uint64_t { UnknownSize = ~UINT64_C(0) };

Completed in 921 milliseconds

1234567