Searched refs:UINT64_C (Results 1 - 17 of 17) sorted by relevance

/fuchsia/zircon/third_party/ulib/jemalloc/include/jemalloc/internal/
H A Dsmoothstep.h31 STEP( 1, UINT64_C(0x0000000000000014), 0.005, 0.000001240643750) \
32 STEP( 2, UINT64_C(0x00000000000000a5), 0.010, 0.000009850600000) \
33 STEP( 3, UINT64_C(0x0000000000000229), 0.015, 0.000032995181250) \
34 STEP( 4, UINT64_C(0x0000000000000516), 0.020, 0.000077619200000) \
35 STEP( 5, UINT64_C(0x00000000000009dc), 0.025, 0.000150449218750) \
36 STEP( 6, UINT64_C(0x00000000000010e8), 0.030, 0.000257995800000) \
37 STEP( 7, UINT64_C(0x0000000000001aa4), 0.035, 0.000406555756250) \
38 STEP( 8, UINT64_C(0x0000000000002777), 0.040, 0.000602214400000) \
39 STEP( 9, UINT64_C(0x00000000000037c2), 0.045, 0.000850847793750) \
40 STEP( 10, UINT64_C(
[all...]
H A Dprng_types.h26 #define PRNG_A_64 UINT64_C(6364136223846793005)
27 #define PRNG_C_64 UINT64_C(1442695040888963407)
/fuchsia/zircon/third_party/ulib/uboringssl/crypto/fipsmodule/sha/
H A Dsha512.c90 sha->h[0] = UINT64_C(0xcbbb9d5dc1059ed8);
91 sha->h[1] = UINT64_C(0x629a292a367cd507);
92 sha->h[2] = UINT64_C(0x9159015a3070dd17);
93 sha->h[3] = UINT64_C(0x152fecd8f70e5939);
94 sha->h[4] = UINT64_C(0x67332667ffc00b31);
95 sha->h[5] = UINT64_C(0x8eb44a8768581511);
96 sha->h[6] = UINT64_C(0xdb0c2e0d64f98fa7);
97 sha->h[7] = UINT64_C(0x47b5481dbefa4fa4);
108 sha->h[0] = UINT64_C(0x6a09e667f3bcc908);
109 sha->h[1] = UINT64_C(
[all...]
/fuchsia/zircon/third_party/ulib/jemalloc/test/integration/
H A Dposix_memalign.c43 alignment = UINT64_C(0x8000000000000000);
44 size = UINT64_C(0x8000000000000000);
54 alignment = UINT64_C(0x4000000000000000);
55 size = UINT64_C(0xc000000000000001);
66 size = UINT64_C(0xfffffffffffffff0);
H A Daligned_alloc.c45 alignment = UINT64_C(0x8000000000000000);
46 size = UINT64_C(0x8000000000000000);
58 alignment = UINT64_C(0x4000000000000000);
59 size = UINT64_C(0xc000000000000001);
72 size = UINT64_C(0xfffffffffffffff0);
/fuchsia/zircon/third_party/ulib/jemalloc/include/msvc_compat/C99/
H A Dstdint.h238 #define UINT64_C(val) val##ui64 macro
242 #define UINTMAX_C UINT64_C
/fuchsia/zircon/system/host/kernel-buildsig/
H A Dkernel-buildsig.cpp13 #define BUILDSIG_START_MAGIC UINT64_C(0x5452545347495342) // BSIGSTRT
14 #define BUILDSIG_END_MAGIC UINT64_C(0x53444e4547495342) // BSIGENDS
/fuchsia/zircon/third_party/ulib/uboringssl/crypto/cipher_extra/
H A De_aesgcmsiv.c344 if (in_len_64 > (UINT64_C(1) << 36) ||
345 ad_len_64 >= (UINT64_C(1) << 61)) {
411 if (ad_len_64 >= (UINT64_C(1) << 61)) {
418 in_len_64 > (UINT64_C(1) << 36) + AES_BLOCK_SIZE) {
726 in_len_64 > (UINT64_C(1) << 36) ||
727 ad_len_64 >= (UINT64_C(1) << 61)) {
764 if (ad_len_64 >= (UINT64_C(1) << 61)) {
771 in_len_64 > (UINT64_C(1) << 36) + AES_BLOCK_SIZE) {
/fuchsia/zircon/third_party/ulib/jemalloc/src/
H A Dnstime.c3 #define BILLION UINT64_C(1000000000)
H A Dprof.c1706 #define VSEQ_INVALID UINT64_C(0xffffffffffffffff)
/fuchsia/zircon/system/utest/int-types/
H A Dint-types.c214 static_assert(UINT64_C(0) == 0, "");
215 static_assert(UINT64_C(0xffffffffffffffff) == 0xffffffffffffffff, "");
H A Dint-types.cpp212 static_assert(UINT64_C(0) == fbl::integral_constant<uint_least64_t, 0>::value, "");
213 static_assert(UINT64_C(0xffffffffffffffff) == fbl::integral_constant<uint_least64_t, 0xffffffffffffffff>::value, "");
/fuchsia/zircon/third_party/ulib/uboringssl/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)) {
566 if (mlen > ((UINT64_C(1) << 36) - 32) ||
692 if (mlen > ((UINT64_C(1) << 36) - 32) ||
824 if (mlen > ((UINT64_C(1) << 36) - 32) ||
925 if (mlen > ((UINT64_C(1) << 36) - 32) ||
/fuchsia/zircon/kernel/lib/libc/include/
H A Dstdint.h272 #define UINT64_C(c) __UINT64_C(c) macro
/fuchsia/zircon/third_party/ulib/jemalloc/test/unit/
H A Dprng.c69 assert_u64_eq((rb & (UINT64_C(0xffffffffffffffff) << lg_range)),
H A Dnstime.c3 #define BILLION UINT64_C(1000000000)
/fuchsia/zircon/third_party/ulib/uboringssl/crypto/fipsmodule/rand/
H A Dctrdrbg.c28 static const uint64_t kMaxReseedCount = UINT64_C(1) << 48;

Completed in 73 milliseconds