Home
last modified time | relevance | path

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

123456

/third_party/ffmpeg/libavutil/
H A Dsha512.c50 UINT64_C(0x428a2f98d728ae22), UINT64_C(0x7137449123ef65cd),
51 UINT64_C(0xb5c0fbcfec4d3b2f), UINT64_C(0xe9b5dba58189dbbc),
52 UINT64_C(0x3956c25bf348b538), UINT64_C(0x59f111f1b605d019),
53 UINT64_C(0x923f82a4af194f9b), UINT64_C(0xab1c5ed5da6d8118),
54 UINT64_C(0xd807aa98a3030242), UINT64_C(
[all...]
H A Dmurmur3.c51 static const uint64_t c1 = UINT64_C(0x87c37b91114253d5);
52 static const uint64_t c2 = UINT64_C(0x4cf5ad432745937f);
136 k *= UINT64_C(0xff51afd7ed558ccd); in fmix()
138 k *= UINT64_C(0xc4ceb9fe1a85ec53); in fmix()
/third_party/skia/third_party/externals/angle2/include/GLSLANG/
H A DShaderLang.h98 const ShCompileOptions SH_VALIDATE_LOOP_INDEXING = UINT64_C(1) << 0;
99 const ShCompileOptions SH_INTERMEDIATE_TREE = UINT64_C(1) << 1;
100 const ShCompileOptions SH_OBJECT_CODE = UINT64_C(1) << 2;
101 const ShCompileOptions SH_VARIABLES = UINT64_C(1) << 3;
102 const ShCompileOptions SH_LINE_DIRECTIVES = UINT64_C(1) << 4;
103 const ShCompileOptions SH_SOURCE_PATH = UINT64_C(1) << 5;
106 const ShCompileOptions SH_VALIDATE_AST = UINT64_C(1) << 6;
120 const ShCompileOptions SH_REMOVE_INVARIANT_AND_CENTROID_FOR_ESSL3 = UINT64_C(1) << 7;
124 const ShCompileOptions SH_EMULATE_ABS_INT_FUNCTION = UINT64_C(1) << 8;
132 const ShCompileOptions SH_ENFORCE_PACKING_RESTRICTIONS = UINT64_C(
[all...]
/third_party/mesa3d/src/imagination/vulkan/pds/
H A Dpvr_rogue_pds_defs.h578 #define PVR_ROGUE_PDSINST_LD_SRCADD_MASK (UINT64_C(0x0000003FFFFFFFFF))
585 (UINT64_C(0x3FFFFFFFFFFFFFFF))
587 (UINT64_C(0x0000000000000000))
589 (UINT64_C(0x4000000000000000))
591 (UINT64_C(0xc000000000000000))
597 #define PVR_ROGUE_PDSINST_LD_LD_SRC0_DEST_CLRMSK (UINT64_C(0xFFF07FFFFFFFFFFF))
601 #define PVR_ROGUE_PDSINST_LD_LD_SRC0_CMODE_CLRMSK (UINT64_C(0xFFFFCFFFFFFFFFFF))
602 #define PVR_ROGUE_PDSINST_LD_LD_SRC0_CMODE_CACHED (UINT64_C(0x0000000000000000))
603 #define PVR_ROGUE_PDSINST_LD_LD_SRC0_CMODE_BYPASS (UINT64_C(0x0000100000000000))
605 (UINT64_C(
[all...]
/third_party/vixl/src/
H A Dcompiler-intrinsics-vixl.cc52 if ((value & UINT64_C(0xffffffff00000000)) == 0) { in CountLeadingZerosFallBack()
56 if ((value & UINT64_C(0xffff000000000000)) == 0) { in CountLeadingZerosFallBack()
60 if ((value & UINT64_C(0xff00000000000000)) == 0) { in CountLeadingZerosFallBack()
64 if ((value & UINT64_C(0xf000000000000000)) == 0) { in CountLeadingZerosFallBack()
68 if ((value & UINT64_C(0xc000000000000000)) == 0) { in CountLeadingZerosFallBack()
72 if ((value & UINT64_C(0x8000000000000000)) == 0) { in CountLeadingZerosFallBack()
84 value &= (UINT64_C(0xffffffffffffffff) >> (64 - width)); in CountSetBitsFallBack()
98 UINT64_C(0x5555555555555555), in CountSetBitsFallBack()
99 UINT64_C(0x3333333333333333), in CountSetBitsFallBack()
100 UINT64_C( in CountSetBitsFallBack()
[all...]
H A Dutils-vixl.cc34 const double kFP64DefaultNaN = RawbitsToDouble(UINT64_C(0x7ff8000000000000));
48 RawbitsToDouble(UINT64_C(0x7ff0000000000000));
50 RawbitsToDouble(UINT64_C(0xfff0000000000000));
387 mantissa |= (UINT64_C(1) << 52); in FPToFloat()
426 payload |= (UINT64_C(1) << 51); // Force a quiet NaN. in FPToDouble()
546 mantissa += (UINT64_C(1) << 52); in FPToFloat16()
H A Dutils-vixl.h223 uint64_t base = (bits >= 64) ? 0 : (UINT64_C(1) << bits); in GetUintMask()
229 return UINT64_C(1) << (bits - 1); in GetSignMask()
284 return static_cast<uint64_t>(x) & ((UINT64_C(1) << n) - 1); in TruncateToUintN()
359 temp |= ~UINT64_C(0) << (msb - lsb); in ExtractSignedBitfield64()
379 uint64_t width_mask = ~UINT64_C(0) >> (64 - width); in RotateRight()
454 return (bits >= UINT64_C(0x8000000000000000)) in RawbitsToInt64()
460 return (bits >= UINT64_C(0x80000000)) in RawbitsToInt32()
580 const uint64_t kFP64QuietNaNMask = UINT64_C(0x0008000000000000); in IsSignallingNaN()
613 const uint64_t kFP64QuietNaNMask = UINT64_C(0x0008000000000000); in ToQuietNaN()
701 uint64_t mask = UINT64_C( in ReverseBytes()
[all...]
/third_party/elfutils/tests/
H A Ddwfl-bug-addr-overflow.c47 UINT64_C (0xffffffff00010000), in main()
48 UINT64_C (0xffffffff00020000)); in main()
51 UINT64_C (0x00010000), in main()
52 UINT64_C (0x00020000)); in main()
55 UINT64_C (0xffff00010000), in main()
56 UINT64_C (0xffff00020000)); in main()
62 Dwfl_Module *mod = dwfl_addrmodule (dwfl, UINT64_C (0xffffffff00010123)); in main()
64 mod = dwfl_addrmodule (dwfl, UINT64_C (0x00010123)); in main()
66 mod = dwfl_addrmodule (dwfl, UINT64_C (0xffff00010123)); in main()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DSIDefines.h58 VM_CNT = UINT64_C(1) << 32,
59 EXP_CNT = UINT64_C(1) << 33,
60 LGKM_CNT = UINT64_C(1) << 34,
62 WQM = UINT64_C(1) << 35,
63 DisableWQM = UINT64_C(1) << 36,
64 Gather4 = UINT64_C(1) << 37,
65 SOPK_ZEXT = UINT64_C(1) << 38,
66 SCALAR_STORE = UINT64_C(1) << 39,
67 FIXED_SIZE = UINT64_C(1) << 40,
68 VOPAsmPrefer32Bit = UINT64_C(
[all...]
/third_party/python/Include/internal/
H A Dpycore_bitutils.h74 return ( ((word & UINT64_C(0x00000000000000FF)) << 56) in _Py_bswap64()
75 | ((word & UINT64_C(0x000000000000FF00)) << 40) in _Py_bswap64()
76 | ((word & UINT64_C(0x0000000000FF0000)) << 24) in _Py_bswap64()
77 | ((word & UINT64_C(0x00000000FF000000)) << 8) in _Py_bswap64()
78 | ((word & UINT64_C(0x000000FF00000000)) >> 8) in _Py_bswap64()
79 | ((word & UINT64_C(0x0000FF0000000000)) >> 24) in _Py_bswap64()
80 | ((word & UINT64_C(0x00FF000000000000)) >> 40) in _Py_bswap64()
81 | ((word & UINT64_C(0xFF00000000000000)) >> 56)); in _Py_bswap64()
/third_party/mesa3d/src/freedreno/common/
H A Dfreedreno_dev_info.c58 ((ref->chip_id & UINT64_C(0xffffff00)) == in dev_id_compare()
59 (id->chip_id & UINT64_C(0xffffff00)))) in dev_id_compare()
61 #define WILDCARD_FUSE_ID UINT64_C(0x0000ffff00000000) in dev_id_compare()
75 ((ref->chip_id & UINT64_C(0xffffff00)) == in dev_id_compare()
76 (chip_id & UINT64_C(0xffffff00)))) in dev_id_compare()
/third_party/vixl/src/aarch64/
H A Dinstructions-aarch64.h79 const uint64_t kWRegMask = UINT64_C(0xffffffff);
80 const uint64_t kXRegMask = UINT64_C(0xffffffffffffffff);
81 const uint64_t kHRegMask = UINT64_C(0xffff);
82 const uint64_t kSRegMask = UINT64_C(0xffffffff);
83 const uint64_t kDRegMask = UINT64_C(0xffffffffffffffff);
84 const uint64_t kHSignMask = UINT64_C(0x8000);
85 const uint64_t kSSignMask = UINT64_C(0x80000000);
86 const uint64_t kDSignMask = UINT64_C(0x8000000000000000);
87 const uint64_t kWSignMask = UINT64_C(0x80000000);
88 const uint64_t kXSignMask = UINT64_C(
[all...]
/third_party/gptfdisk/
H A Dsupport.h56 #define APM_SIGNATURE1 UINT64_C(0x00004D5000000000)
57 #define APM_SIGNATURE2 UINT64_C(0x0000535400000000)
63 #define GPT_SIGNATURE UINT64_C(0x5452415020494645)
H A Dattributes.cc80 if ((UINT64_C(1) << i) & attributes) { in DisplayAttributes()
98 bitset = (UINT64_C(1) << bitNum) & attributes; in ShowAttributes()
120 bitValue = UINT64_C(1) << response; // Find the integer value of the bit in ChangeAttributes()
H A Dgpt.cc257 if (secondHeader.currentLBA != (diskSize - UINT64_C(1))) { in Verify()
323 << mainHeader.backupLBA + UINT64_C(1) << " sectors.)\n" in Verify()
680 secondHeader.partitionEntriesLBA = secondHeader.lastUsableLBA + UINT64_C(1); in RebuildSecondHeader()
701 mbrLast = mbrFirst + (uint64_t) protectiveMBR.GetLength(i) - UINT64_C(1); in FindHybridMismatches()
931 allOK = LoadHeader(&secondHeader, myDisk, diskSize - UINT64_C(1), &secondCrcOk) && allOK; in ForceLoadGPTData()
1212 if (mainHeader.backupLBA < (diskSize - UINT64_C(1))) { in SaveGPTData()
1452 if (secondHeader.currentLBA != diskSize - UINT64_C(1)) { in LoadGPTBackup()
1813 if (allOK && (partitions[gptPart].GetLastLBA() == UINT64_C(0))) { in OnePartToMBR()
1934 mainHeader.lastUsableLBA = secondHeader.partitionEntriesLBA - UINT64_C(1); in MoveSecondTable()
2045 mainHeader.currentLBA = UINT64_C( in ClearGPTData()
[all...]
H A Dbsd.cc244 uint64_t retval = UINT64_C(0); in GetFirstSector()
254 uint64_t retval = UINT64_C(0); in GetLength()
303 guid.SetAttributes(UINT64_C(0)); in AsGPT()
/third_party/mesa3d/src/imagination/common/
H A Dpvr_device_info.h44 #define PVR_BVNC_PACK_MASK_B UINT64_C(0xFFFF000000000000)
45 #define PVR_BVNC_PACK_MASK_V UINT64_C(0x0000FFFF00000000)
46 #define PVR_BVNC_PACK_MASK_N UINT64_C(0x00000000FFFF0000)
47 #define PVR_BVNC_PACK_MASK_C UINT64_C(0x000000000000FFFF)
/third_party/icu/icu4c/source/common/unicode/
H A Dumachine.h235 # ifndef UINT64_C
238 * note: may be wrong for some 64 bit platforms - ensure your compiler provides UINT64_C
241 # define UINT64_C(c) c ## ULL macro
253 # define U_UINT64_MAX ((uint64_t)(UINT64_C(18446744073709551615)))
/third_party/node/deps/icu-small/source/common/unicode/
H A Dumachine.h213 # ifndef UINT64_C
216 * note: may be wrong for some 64 bit platforms - ensure your compiler provides UINT64_C
219 # define UINT64_C(c) c ## ULL macro
231 # define U_UINT64_MAX ((uint64_t)(UINT64_C(18446744073709551615)))
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Dumachine.h235 # ifndef UINT64_C
238 * note: may be wrong for some 64 bit platforms - ensure your compiler provides UINT64_C
241 # define UINT64_C(c) c ## ULL macro
253 # define U_UINT64_MAX ((uint64_t)(UINT64_C(18446744073709551615)))
/third_party/vixl/test/
H A Dtest-api.cc121 {true, true, 32, UINT64_C(0x0)}, in TEST()
122 {true, false, 32, UINT64_C(0xabcdabcd)}, in TEST()
123 {true, false, 32, UINT64_C(0x80000000)}, in TEST()
124 {true, false, 32, UINT64_C(0xffffffff)}, in TEST()
137 {false, false, 54, UINT64_C(0xabcdef9012345678)}, in TEST()
138 {true, false, 33, UINT64_C(0x100000000)}, in TEST()
139 {true, false, 62, UINT64_C(0x3fffffffffffffff)}, in TEST()
140 {true, false, 63, UINT64_C(0x7fffffffffffffff)}, in TEST()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Windows/include/llvm/Support/
H A DDataTypes.h167 #ifndef UINT64_C
168 #define UINT64_C(C) C##ui64 macro
/third_party/musl/porting/liteos_m/kernel/include/
H A Dstdint.h107 #define UINT64_C(c) c ## UL macro
112 #define UINT64_C(c) c ## ULL macro
/third_party/musl/porting/liteos_m/user/include/
H A Dstdint.h107 #define UINT64_C(c) c ## UL macro
112 #define UINT64_C(c) c ## ULL macro
/third_party/musl/porting/liteos_a/kernel/include/
H A Dstdint.h107 #define UINT64_C(c) c ## UL macro
112 #define UINT64_C(c) c ## ULL macro

Completed in 31 milliseconds

123456