Lines Matching defs:U64
174 typedef uint64_t U64;
180 typedef unsigned long long U64;
204 static U64 LZ4F_readLE64 (const void* src)
207 U64 value64 = srcPtr[0];
208 value64 += ((U64)srcPtr[1]<<8);
209 value64 += ((U64)srcPtr[2]<<16);
210 value64 += ((U64)srcPtr[3]<<24);
211 value64 += ((U64)srcPtr[4]<<32);
212 value64 += ((U64)srcPtr[5]<<40);
213 value64 += ((U64)srcPtr[6]<<48);
214 value64 += ((U64)srcPtr[7]<<56);
218 static void LZ4F_writeLE64 (void* dst, U64 value64)
274 U64 totalInSize;
437 prefs.frameInfo.contentSize = (U64)srcSize; /* auto-correct content size if selected (!=0) */
1211 U64 frameRemainingSize;