Home
last modified time | relevance | path

Searched refs:U64 (Results 1 – 25 of 93) sorted by relevance

1234

/external/vulkan-validation-layers/layers/
Dxxhash.c528 typedef uint64_t U64; typedef
530 …typedef unsigned long long U64; /* if your compiler doesn't support unsigned long long, replace … typedef
538 static U64 XXH_read64(const void* memPtr) { return *(const U64*) memPtr; } in XXH_read64()
544 typedef union { U32 u32; U64 u64; } __attribute__((packed)) unalign64;
545 static U64 XXH_read64(const void* ptr) { return ((const unalign64*)ptr)->u64; } in XXH_read64()
553 static U64 XXH_read64(const void* memPtr) in XXH_read64()
555 U64 val; in XXH_read64()
567 static U64 XXH_swap64 (U64 x) in XXH_swap64()
580 FORCE_INLINE U64 XXH_readLE64_align(const void* ptr, XXH_endianess endian, XXH_alignment align) in XXH_readLE64_align()
585 return endian==XXH_littleEndian ? *(const U64*)ptr : XXH_swap64(*(const U64*)ptr); in XXH_readLE64_align()
[all …]
/external/lz4/lib/
Dxxhash.c534 typedef uint64_t U64; typedef
536 …typedef unsigned long long U64; /* if your compiler doesn't support unsigned long long, replace … typedef
544 static U64 XXH_read64(const void* memPtr) { return *(const U64*) memPtr; } in XXH_read64()
550 typedef union { U32 u32; U64 u64; } __attribute__((packed)) unalign64;
551 static U64 XXH_read64(const void* ptr) { return ((const unalign64*)ptr)->u64; } in XXH_read64()
559 static U64 XXH_read64(const void* memPtr) in XXH_read64()
561 U64 val; in XXH_read64()
573 static U64 XXH_swap64 (U64 x) in XXH_swap64()
586 XXH_FORCE_INLINE U64 XXH_readLE64_align(const void* ptr, XXH_endianess endian, XXH_alignment align) in XXH_readLE64_align()
591 return endian==XXH_littleEndian ? *(const U64*)ptr : XXH_swap64(*(const U64*)ptr); in XXH_readLE64_align()
[all …]
Dlz4frame.c122 typedef uint64_t U64; typedef
128 typedef unsigned long long U64; typedef
152 static U64 LZ4F_readLE64 (const void* src) in LZ4F_readLE64()
155 U64 value64 = srcPtr[0]; in LZ4F_readLE64()
156 value64 += ((U64)srcPtr[1]<<8); in LZ4F_readLE64()
157 value64 += ((U64)srcPtr[2]<<16); in LZ4F_readLE64()
158 value64 += ((U64)srcPtr[3]<<24); in LZ4F_readLE64()
159 value64 += ((U64)srcPtr[4]<<32); in LZ4F_readLE64()
160 value64 += ((U64)srcPtr[5]<<40); in LZ4F_readLE64()
161 value64 += ((U64)srcPtr[6]<<48); in LZ4F_readLE64()
[all …]
Dlz4.c181 typedef uint64_t U64; typedef
188 typedef unsigned long long U64; typedef
193 typedef U64 reg_t; /* 64-bits in x32 mode */
354 _BitScanForward64( &r, (U64)val ); in LZ4_NbCommonBytes()
357 return (__builtin_ctzll((U64)val) >> 3); in LZ4_NbCommonBytes()
367 return DeBruijnBytePos[((U64)((val & -(long long)val) * 0x0218A392CDABBD3FULL)) >> 58]; in LZ4_NbCommonBytes()
391 return (__builtin_clzll((U64)val) >> 3); in LZ4_NbCommonBytes()
523 static U32 LZ4_hash5(U64 sequence, tableType_t const tableType) in LZ4_hash5()
525 static const U64 prime5bytes = 889523592379ULL; in LZ4_hash5()
526 static const U64 prime8bytes = 11400714785074694791ULL; in LZ4_hash5()
/external/lz4/programs/
Dutil.h61 typedef uint64_t U64; typedef
69 typedef unsigned long long U64;
148 UTIL_STATIC U64 UTIL_getSpanTimeMicro(UTIL_time_t clockStart, UTIL_time_t clockEnd) in UTIL_getSpanTimeMicro()
159 UTIL_STATIC U64 UTIL_getSpanTimeNano(UTIL_time_t clockStart, UTIL_time_t clockEnd) in UTIL_getSpanTimeNano()
174 typedef U64 UTIL_time_t;
176 UTIL_STATIC U64 UTIL_getSpanTimeMicro(UTIL_time_t clockStart, UTIL_time_t clockEnd) in UTIL_getSpanTimeMicro()
184 return (((clockEnd - clockStart) * (U64)rate.numer) / ((U64)rate.denom)) / 1000ULL; in UTIL_getSpanTimeMicro()
186 UTIL_STATIC U64 UTIL_getSpanTimeNano(UTIL_time_t clockStart, UTIL_time_t clockEnd) in UTIL_getSpanTimeNano()
194 return ((clockEnd - clockStart) * (U64)rate.numer) / ((U64)rate.denom); in UTIL_getSpanTimeNano()
220 UTIL_STATIC U64 UTIL_getSpanTimeMicro(UTIL_time_t begin, UTIL_time_t end) in UTIL_getSpanTimeMicro()
[all …]
Dbench.c223 { U64 fastestC = (U64)(-1LL), fastestD = (U64)(-1LL); in BMK_benchMem()
224 U64 const crcOrig = XXH64(srcBuffer, srcSize, 0); in BMK_benchMem()
226 U64 const maxTime = (g_nbSeconds * TIMELOOP_NANOSEC) + 100; in BMK_benchMem()
229 U64 totalCTime=0, totalDTime=0; in BMK_benchMem()
264 { U64 const clockSpan = UTIL_clockSpanNano(clockStart); in BMK_benchMem()
308 { U64 const clockSpan = UTIL_clockSpanNano(clockStart); in BMK_benchMem()
329 { U64 const crcCheck = XXH64(resultBuffer, srcSize, 0); in BMK_benchMem()
374 static size_t BMK_findMaxMem(U64 requiredMem) in BMK_findMaxMem()
434 U64 fileSize = UTIL_getFileSize(fileNamesTable[n]); in BMK_loadFiles()
464 U64 const totalSizeToLoad = UTIL_getTotalFileSize(fileNamesTable, nbFiles); in BMK_benchFileTable()
[all …]
/external/skia/third_party/skcms/src/
DTransform_inl.h191 SI U64 swap_endian_16x4(const U64& rgba) { in swap_endian_16x4()
437 SI void gather_48(const uint8_t* p, I32 ix, U64* v) { in gather_48()
449 *v = U64{ in gather_48()
453 *v = U64{ in gather_48()
550 U64 rgb; in sample_clut_16()
751 U64 px = load<U64>(rgba); in exec_ops()
791 U64 px = swap_endian_16x4(load<U64>(rgba)); in exec_ops()
830 U64 px = load<U64>(rgba); in exec_ops()
1072 U64 px = cast<U64>(to_fixed(r * 65535)) << 0 in exec_ops()
1073 | cast<U64>(to_fixed(g * 65535)) << 16 in exec_ops()
[all …]
/external/skqp/third_party/skcms/src/
DTransform_inl.h191 SI U64 swap_endian_16x4(const U64& rgba) { in swap_endian_16x4()
437 SI void gather_48(const uint8_t* p, I32 ix, U64* v) { in gather_48()
449 *v = U64{ in gather_48()
453 *v = U64{ in gather_48()
550 U64 rgb; in sample_clut_16()
751 U64 px = load<U64>(rgba); in exec_ops()
791 U64 px = swap_endian_16x4(load<U64>(rgba)); in exec_ops()
830 U64 px = load<U64>(rgba); in exec_ops()
1072 U64 px = cast<U64>(to_fixed(r * 65535)) << 0 in exec_ops()
1073 | cast<U64>(to_fixed(g * 65535)) << 16 in exec_ops()
[all …]
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dprng.cc131 auto const32 = ConstantR0WithType(builder, U64, 32); in Uint64ToUint32s()
139 return ConvertElementType(u32s[0], U64) | in Uint32sToUint64()
140 ShiftLeft(ConvertElementType(u32s[1], U64), in Uint32sToUint64()
141 ConstantR0WithType(builder, U64, 32)); in Uint32sToUint64()
201 return StatelessRngUniformInt(bits, minval, maxval, type, U64); in StatelessRngUniform()
/external/tensorflow/tensorflow/compiler/xla/
Dprimitive_util.cc53 return type == U8 || type == U16 || type == U32 || type == U64; in IsUnsignedIntegralType()
80 case U64: in BitWidth()
109 return xla::U64; in UnsignedIntegralTypeForBitWidth()
Dliteral_util.cc113 case U64: in Zero()
152 case U64: in One()
192 case U64: in MinValue()
236 case U64: in MaxValue()
334 case U64: in ReshapeSlice()
404 case U64: in GetFirstScalarLiteral()
Dprimitive_util.h82 return U64;
189 struct PrimitiveTypeToNative<U64> {
Dliteral.cc405 COPY_ELEMENTS(U64, uint64); in CopyFrom()
523 case U64: in CopySliceFrom()
754 case U64: in Slice()
809 case U64: in GetAsString()
862 case U64: in GetSparseElementAsString()
907 case U64: in GetIntegralAsS64()
955 case U64: in SetIntegralAsS64()
1003 case U64: in SortSparseElements()
1348 CONVERT_IF_TYPES_MATCH(U64) in ConvertIfDestTypeMatches()
1393 CONVERT_IF_DEST_TYPE_MATCHES(U64) in ConvertSwitch()
[all …]
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dstateful_random_ops.cc41 auto input_u64 = Iota(builder, xla::U64, size); in GetInputsFromCounter()
105 case xla::U64: // fall through in StatefulRngUniform()
111 xla::StatelessRngUniformInt(bits, minval, maxval, type, xla::U64), in StatefulRngUniform()
141 case xla::U64: in StatefulRngUniformFullInt()
218 xla::Reshape(xla::Slice(var, {0}, {COUNTER_SIZE}, {1}), {}), xla::U64); in CompileImpl()
222 xla::U64); in CompileImpl()
/external/lz4/tests/
Dfuzzer.c980 U64 crcOrig; in FUZ_unitTests()
996 { U64 const crcNew = XXH64(testVerify, testCompressedSize, 0); in FUZ_unitTests()
1031 { U64 const crcNew = XXH64_digest(&xxhNewSafe); in FUZ_unitTests()
1038 { U64 const crcNew = XXH64_digest(&xxhNewFast); in FUZ_unitTests()
1055 U64 crcOrig; in FUZ_unitTests()
1071 { U64 const crcNew = XXH64(testVerify, testCompressedSize, 0); in FUZ_unitTests()
1083 { U64 const crcNew = XXH64(testVerify, testCompressedSize, 0); in FUZ_unitTests()
1101 { U64 const crcNew = XXH64(testVerify, testCompressedSize, 0); in FUZ_unitTests()
1114 { U64 const crcNew = XXH64(testVerify, testCompressedSize, 0); in FUZ_unitTests()
1143 { U64 const crcNew = XXH64_digest(&crcNewState); in FUZ_unitTests()
[all …]
Dframetest.c185 U64 crcOrig; in basicTests()
246 { U64 const crcDest = XXH64(decodedBuffer, decodedBufferSize, 1); in basicTests()
273 { U64 const crcDest = XXH64(decodedBuffer, op-ostart, 1); in basicTests()
346 { U64 const crcDest = XXH64(decodedBuffer, COMPRESSIBLE_NOISE_LENGTH, 1); in basicTests()
389 U64 const crcDest = XXH64(decodedBuffer, decodedSize, 1); in basicTests()
445 { U64 const crcDest = XXH64(decodedBuffer, decodedSize, 1); in basicTests()
446 U64 const crcSrc = XXH64(CNBuffer, testSize, 1); in basicTests()
555 { U64 const crcDest = XXH64(decodedBuffer, decodedSize, 0); in basicTests()
613 { U64 const crcDest = XXH64(decodedBuffer, decodedSize, 0); in basicTests()
649 { U64 const crcDest = XXH64(decodedBuffer, decodedSize, 0); in basicTests()
[all …]
/external/tensorflow/tensorflow/compiler/xla/python_api/
Dtypes.py110 xla_data_pb2.U64:
112 primitive_type=xla_data_pb2.U64,
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DStringRefTest.cpp609 uint64_t U64; in TEST() local
633 bool U64Success = StringRef(Unsigned[i].Str).getAsInteger(0, U64); in TEST()
636 EXPECT_EQ(U64, Unsigned[i].Expected); in TEST()
696 unsigned long long U64; in TEST() local
698 bool IsBadNumber = StringRef(BadStrings[i]).getAsInteger(0, U64); in TEST()
778 uint64_t U64; in TEST() local
815 bool U64Success = Str.consumeInteger(0, U64); in TEST()
819 EXPECT_EQ(U64, ConsumeUnsigned[i].Expected); in TEST()
/external/llvm/unittests/ADT/
DStringRefTest.cpp470 uint64_t U64; in TEST() local
494 bool U64Success = StringRef(Unsigned[i].Str).getAsInteger(0, U64); in TEST()
497 EXPECT_EQ(U64, Unsigned[i].Expected); in TEST()
554 unsigned long long U64; in TEST() local
556 bool IsBadNumber = StringRef(BadStrings[i]).getAsInteger(0, U64); in TEST()
/external/google-breakpad/src/third_party/linux/include/gflags/
Dgflags.h496 #define DECLARE_uint64(name) DECLARE_VARIABLE(::google::uint64,U64, name)
497 #define DEFINE_uint64(name,val,txt) DEFINE_VARIABLE(::google::uint64,U64, name, val, txt)
/external/webrtc/third_party/gflags/gen/posix/include/gflags/
Dgflags.h532 #define DECLARE_uint64(name) DECLARE_VARIABLE(::google::uint64, U64, name)
533 #define DEFINE_uint64(name,val,txt) DEFINE_VARIABLE(::google::uint64, U64, name, val, txt)
/external/swiftshader/third_party/subzero/unittest/AssemblerX8632/
DTestUtil.h253 U64[0] = U64_0; in Dqword()
254 U64[1] = U64_1; in Dqword()
269 uint64_t U64[2]; member
717 setQwordTo(InitialDword, qdword.U64[0]); in setDqwordTo()
718 setQwordTo(InitialDword + 2, qdword.U64[1]); in setDqwordTo()
/external/libyuv/files/third_party/gflags/gen/win/include/gflags/
Dgflags_declare.h127 DECLARE_VARIABLE(::GFLAGS_NAMESPACE::uint64, U64, name)
/external/libyuv/files/third_party/gflags/gen/posix/include/gflags/
Dgflags_declare.h127 DECLARE_VARIABLE(::GFLAGS_NAMESPACE::uint64, U64, name)
/external/webrtc/third_party/gflags/gen/win/include/gflags/
Dgflags.h552 #define DECLARE_uint64(name) DECLARE_VARIABLE(::google::uint64, U64, name)
553 #define DEFINE_uint64(name,val,txt) DEFINE_VARIABLE(::google::uint64, U64, name, val, txt)

1234