Searched refs:UINT64_C (Results 76 - 100 of 162) sorted by relevance

1234567

/external/mesa3d/src/util/
H A Du_atomic_test.c138 test_atomic(uint64_t, UINT64_C(0xffffffffffffffff))
/external/v4l2_codec2/vda/
H A Dbit_reader_core.cc39 *flag = (reg_ & (UINT64_C(1) << (kRegWidthInBits - 1))) != 0;
/external/boringssl/src/crypto/cipher_extra/
H A De_aesgcmsiv.c337 if (in_len_64 > (UINT64_C(1) << 36) ||
338 ad_len_64 >= (UINT64_C(1) << 61)) {
404 if (ad_len_64 >= (UINT64_C(1) << 61)) {
411 in_len_64 > (UINT64_C(1) << 36) + AES_BLOCK_SIZE) {
719 in_len_64 > (UINT64_C(1) << 36) ||
720 ad_len_64 >= (UINT64_C(1) << 61)) {
757 if (ad_len_64 >= (UINT64_C(1) << 61)) {
764 in_len_64 > (UINT64_C(1) << 36) + AES_BLOCK_SIZE) {
H A De_chacha20poly1305.c185 if (in_len_64 >= (UINT64_C(1) << 32) * 64 - 64) {
258 if (in_len_64 >= (UINT64_C(1) << 32) * 64 - 64) {
/external/gptfdisk/
H A Ddiskio-unix.cc455 if ((bytes % UINT64_C(512)) != 0)
458 sectors = bytes / UINT64_C(512);
H A Dsupport.cc173 bytesPerUnit = UINT64_C(1) << (10 * (foundAt + 1));
214 response = UINT64_C(0);
H A Dbasicmbr.cc695 chs[2] = (uint8_t) (cylinder & UINT64_C(0xFF));
1058 uint64_t start = UINT64_C(1); // starting point for each search
1062 uint64_t selectedSegment = UINT64_C(0); // location of largest segment
1063 uint64_t selectedSize = UINT64_C(0); // size of largest segment in blocks
1069 if (firstBlock > UINT64_C(0)) { // something's free...
1071 segmentSize = lastBlock - firstBlock + UINT64_C(1);
1079 if ((selectedSize > UINT64_C(0)) && (selectedSize < diskSize)) {
1517 retval = UINT64_C(0);
/external/libcxx/test/std/depr/depr.c.headers/
H A Dstdint_h.pass.cpp280 #ifndef UINT64_C
281 #error UINT64_C not defined
/external/libcxx/test/std/language.support/cstdint/cstdint.syn/
H A Dcstdint.pass.cpp281 #ifndef UINT64_C
282 #error UINT64_C not defined
/external/llvm/unittests/ADT/
H A DAPSIntTest.cpp52 EXPECT_EQ(UINT64_C(0) - 7, APSInt::get(-7).getZExtValue());
63 EXPECT_EQ(UINT64_C(0) - 7, APSInt::getUnsigned(-7).getZExtValue());
/external/python/cpython2/Lib/plat-sunos5/
H A DTYPES.py90 def UINT64_C(c): return __CONCAT__(c,ul) function
92 def UINT64_C(c): return __CONCAT__(c,ull) function
/external/vixl/src/
H A Dutils-vixl.h82 uint64_t limit = UINT64_C(1) << (n - 1);
118 return static_cast<uint64_t>(x) & ((UINT64_C(1) << n) - 1);
193 temp |= ~UINT64_C(0) << (msb - lsb);
215 uint64_t width_mask = ~UINT64_C(0) >> (64 - width);
305 const uint64_t kFP64QuietNaNMask = UINT64_C(0x0008000000000000);
338 const uint64_t kFP64QuietNaNMask = UINT64_C(0x0008000000000000);
416 uint64_t mask = UINT64_C(0xff00000000000000);
626 if (((bits ^ (bits << 1)) & (UINT64_C(1) << 62)) == 0) {
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DMathExtras.h285 return isInt<N + S>(x) && (x % (UINT64_C(1) << S) == 0);
292 /// return N >= 64 || X < (UINT64_C(1) << N);
300 return X < (UINT64_C(1) << (N));
328 return isUInt<N + S>(x) && (x % (UINT64_C(1) << S) == 0);
346 return -(UINT64_C(1)<<(N-1));
355 return (UINT64_C(1) << (N - 1)) - 1;
/external/libusb/libusb/os/
H A Dwindows_nt_common.c36 const uint64_t epoch_time = UINT64_C(116444736000000000); // 1970.01.01 00:00:000 in MS Filetime
316 hires_ticks_to_ps = UINT64_C(1000000000000) / hires_frequency;
362 hires_ticks_to_ps = UINT64_C(0);
/external/compiler-rt/lib/builtins/
H A Ddivtf3.c82 uint64_t recip64 = UINT64_C(0x7504f333F9DE6484) - q63b;
/external/jemalloc/src/
H A Dnstime.c3 #define BILLION UINT64_C(1000000000)
/external/libchrome/base/strings/
H A Dstring_number_conversions_unittest.cc313 {"2147483648", UINT64_C(2147483648), true},
314 {"99999999999", UINT64_C(99999999999), true},
336 {"9223372036854775808", UINT64_C(9223372036854775808), true},
638 {"0x8000000000000000", UINT64_C(0x8000000000000000), true},
/external/libusb/msvc/
H A Dstdint.h250 #define UINT64_C(val) val##ui64 macro
/external/llvm/lib/Target/AMDGPU/Utils/
H A DAMDKernelCodeTUtils.cpp136 const uint64_t Mask = ((UINT64_C(1) << width) - 1) << shift;
/external/boringssl/src/crypto/evp/
H A Dscrypt.c154 N > UINT64_C(1) << 32 ||
156 (16 * r <= 63 && N >= UINT64_C(1) << (16 * r))) {
/external/llvm/lib/Support/
H A DScaledNumber.cpp53 Shift && (Lower & UINT64_C(1) << (Shift - 1)));
254 uint64_t Error = UINT64_C(1) << (64 - Width);
/external/clang/lib/Headers/
H A Dstdint.h318 # define UINT64_C(v) __uint_c(v, __int64_c_suffix) macro
321 # define UINT64_C(v) v ## U macro
477 # define UINT64_MAX UINT64_C(18446744073709551615)
/external/boringssl/src/crypto/fipsmodule/modes/
H A Dgcm.c71 uint64_t T = UINT64_C(0xe100000000000000) & (0 - ((V).lo & 1)); \
501 if (alen > (UINT64_C(1) << 61) || (sizeof(len) == 8 && alen < len)) {
567 if (mlen > ((UINT64_C(1) << 36) - 32) ||
697 if (mlen > ((UINT64_C(1) << 36) - 32) ||
835 if (mlen > ((UINT64_C(1) << 36) - 32) ||
936 if (mlen > ((UINT64_C(1) << 36) - 32) ||
/external/llvm/lib/MC/
H A DMCFragment.cpp79 assert(F->Offset != ~UINT64_C(0) && "Address not set!");
248 Offset(~UINT64_C(0)) {
/external/python/cpython2/Lib/plat-linux2/
H A DIN.py161 def UINT64_C(c): return c ## UL function
163 def UINT64_C(c): return c ## ULL function

Completed in 1883 milliseconds

1234567