Searched refs:UINT64_C (Results 101 - 125 of 162) sorted by relevance

1234567

/external/boringssl/src/crypto/cipher_extra/
H A De_aesctrhmac.c186 if (in_len_64 >= (UINT64_C(1) << 32) * AES_BLOCK_SIZE) {
/external/boringssl/src/crypto/fipsmodule/rand/
H A Dctrdrbg.c28 static const uint64_t kMaxReseedCount = UINT64_C(1) << 48;
/external/gptfdisk/
H A Dgpt.h25 #define SMALLEST_ADVANCED_FORMAT UINT64_C(585937500)
H A Dmbrpart.cc225 return (uint64_t) firstLBA + (uint64_t) lengthLBA - UINT64_C(1);
H A Dgptpart.cc71 length = lastLBA - firstLBA + UINT64_C(1);
/external/jemalloc/test/unit/
H A Dnstime.c3 #define BILLION UINT64_C(1000000000)
H A Dprng.c69 assert_u64_eq((rb & (UINT64_C(0xffffffffffffffff) << lg_range)),
/external/llvm/include/llvm/Support/
H A DScaledNumber.h91 Digits & (UINT64_C(1) << (Shift - 1)));
200 if (Digits == UINT64_C(1) << LocalFloor)
205 bool Round = Digits & UINT64_C(1) << (LocalFloor - 1);
436 uint64_t Unsigned = N == INT64_MIN ? UINT64_C(1) << 63 : uint64_t(-N);
H A DMathExtras.h292 return N >= 64 || x < (UINT64_C(1)<<(N));
319 return (UINT64_C(1) << N) - 1;
/external/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp190 return (N >> Shift) + (UINT64_C(1) & N >> (Shift - 1));
223 assert(Total == std::accumulate(Weights.begin(), Weights.end(), UINT64_C(0),
240 W.Amount = std::max(UINT64_C(1), shiftRightAndRound(W.Amount, Shift));
463 BFI.Freqs[Index].Integer = std::max(UINT64_C(1), Scaled.toInt<uint64_t>());
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_query.c239 td->frequency = UINT64_C(1000000000);
/external/mesa3d/src/gallium/drivers/swr/
H A Dswr_query.cpp126 result->timestamp_disjoint.frequency = UINT64_C(1000000000);
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DMathExtras.h57 return N >= 64 || x < (UINT64_C(1)<<N);
/external/vixl/src/aarch64/
H A Doperands-aarch64.h546 list_ = (UINT64_C(1) << (last_reg + 1)) - 1;
547 list_ &= ~((UINT64_C(1) << first_reg) - 1);
597 list_ |= (UINT64_C(1) << code);
603 list_ &= ~(UINT64_C(1) << code);
H A Ddisasm-aarch64.cc297 if (((value & UINT64_C(0xffffffffffff0000)) == 0) ||
298 ((value & UINT64_C(0xffffffff0000ffff)) == 0) ||
299 ((value & UINT64_C(0xffff0000ffffffff)) == 0) ||
300 ((value & UINT64_C(0x0000ffffffffffff)) == 0)) {
306 (((~value & UINT64_C(0xffffffffffff0000)) == 0) ||
307 ((~value & UINT64_C(0xffffffff0000ffff)) == 0) ||
308 ((~value & UINT64_C(0xffff0000ffffffff)) == 0) ||
309 ((~value & UINT64_C(0x0000ffffffffffff)) == 0))) {
4312 if (!instr->GetSixtyFourBits()) imm &= UINT64_C(0xffffffff);
4489 imm |= (UINT64_C(
[all...]
H A Dsimulator-aarch64.cc117 UINT64_C(0x7ff00cab7f8ba9e1), UINT64_C(0x7ff0dead7f8beef1),
364 uvalue |= ~UINT64_C(0) << (reg_size - amount);
400 value |= ~UINT64_C(0) << 8;
406 value |= ~UINT64_C(0) << 16;
412 value |= ~UINT64_C(0) << 32;
1911 uint64_t mask = (UINT64_C(1) << i) - 1;
2080 uint64_t sign_mask = UINT64_C(0x8000000000000000);
2083 sign_ext = UINT64_C(0xffffffff00000000);
2166 mask = ~UINT64_C(
[all...]
/external/vixl/test/aarch32/
H A Dtest-disasm-a32.cc2664 COMPARE_BOTH(Vmov(I64, d0, UINT64_C(0xa5a5a5a5a5a5a5a5)),
2666 COMPARE_BOTH(Vmov(I64, d0, UINT64_C(0x0a01248315ffffff)),
2672 COMPARE_BOTH(Vmov(I64, d0, UINT64_C(0x6fe1a7a779e33af2)),
2679 COMPARE_BOTH(Vmov(I64, d0, UINT64_C(0x2efa8b440000c1da)),
2685 COMPARE_BOTH(Vmov(I64, d0, UINT64_C(0x00008bb75c3036fd)),
2698 COMPARE_T32(Vmov(I64, d0, UINT64_C(0x2fff2fff3e2869e7)),
2708 COMPARE_A32(Vmov(I64, d0, UINT64_C(0x65ffffff16a0ef46)),
2738 COMPARE_BOTH(Vmov(I64, q0, UINT64_C(0xa5a5a5a5a5a5a5a5)),
2740 COMPARE_BOTH(Vmov(I64, q0, UINT64_C(0x0a01248315ffffff)),
2747 COMPARE_BOTH(Vmov(I64, q0, UINT64_C(
[all...]
/external/libcxx/test/std/depr/depr.c.headers/
H A Dinttypes_h.pass.cpp247 #ifndef UINT64_C
248 #error UINT64_C not defined
/external/libcxx/test/std/input.output/file.streams/c.files/
H A Dcinttypes.pass.cpp247 #ifndef UINT64_C
248 #error UINT64_C not defined
/external/python/cpython2/Lib/plat-atheos/
H A DIN.py290 def UINT64_C(c): return c ## UL function
292 def UINT64_C(c): return c ## ULL function
/external/llvm/lib/CodeGen/
H A DSpillPlacement.cpp251 Threshold = std::max(UINT64_C(1), Scaled);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_query.c144 td->frequency = UINT64_C(1000000000);
/external/syslinux/core/fs/ntfs/
H A Dntfs.c115 const uint64_t blk_size = UINT64_C(1) << BLOCK_SHIFT(fs);
416 const uint64_t blk_size = UINT64_C(1) << BLOCK_SHIFT(fs);
732 const uint64_t blk_size = UINT64_C(1) << BLOCK_SHIFT(fs);
1025 const uint64_t blk_size = UINT64_C(1) << BLOCK_SHIFT(fs);
/external/libusb/libusb/os/
H A Dwince_usb.c34 const uint64_t epoch_time = UINT64_C(116444736000000000); // 1970.01.01 00:00:000 in MS Filetime
212 hires_ticks_to_ps = UINT64_C(1000000000000) / hires_frequency;
217 hires_ticks_to_ps = UINT64_C(0);
/external/mdnsresponder/mDNSShared/
H A DCommonServices.h829 #if( !defined( UINT64_C ) )
831 #define UINT64_C( value ) value ## UI64 macro
833 #define UINT64_C( value ) value ## ULL macro

Completed in 602 milliseconds

1234567