/linux/lib/zstd/common/ |
A D | mem.h | 37 typedef uint64_t U64; typedef 51 MEM_STATIC U64 MEM_read64(const void* memPtr); 62 MEM_STATIC U64 MEM_readLE64(const void* memPtr); 82 MEM_STATIC U64 MEM_swap64(U64 in); 119 MEM_STATIC U64 MEM_read64(const void *memPtr) in MEM_read64() 121 return get_unaligned((const U64 *)memPtr); in MEM_read64() 141 put_unaligned(value, (U64 *)memPtr); in MEM_write64() 200 MEM_writeLE64(memPtr, (U64)val); in MEM_writeLEST() 238 MEM_writeBE64(memPtr, (U64)val); in MEM_writeBEST() 246 MEM_STATIC U64 MEM_swap64(U64 in) in MEM_swap64() [all …]
|
A D | fse_decompress.c | 115 U64 const add = 0x0101010101010101ull; in FSE_buildDTable_internal() 117 U64 sv = 0; in FSE_buildDTable_internal()
|
/linux/drivers/message/fusion/lsi/ |
A D | mpi_cnfg.h | 726 U64 BaseWWID; /* 04h */ 849 U64 UniqueValue; /* 04h */ 1362 U64 WWPN; /* 00h */ 1381 U64 SASAddress; /* 00h */ 1400 U64 EnclosureLogicalID; /* 00h */ 1460 U64 ReassignmentBaseWWID; /* 04h */ 1739 U64 WWNN; /* 10h */ 1740 U64 WWPN; /* 18h */ 1745 U64 FabricWWNN; /* 30h */ 1746 U64 FabricWWPN; /* 38h */ [all …]
|
A D | mpi_type.h | 66 } U64; typedef 80 typedef U64 *PU64;
|
A D | mpi.h | 367 U64 Address; 377 U64 Address64; 400 U64 Address; 412 U64 Address64;
|
A D | mpi_ioc.h | 605 U64 SASAddress; /* 10h */ 830 U64 SASAddress; /* 04h */ 896 U64 SASAddress; /* 04h */ 914 U64 SASAddress; /* 04h */ 932 U64 SASAddress; /* 04h */ 948 U64 SASAddress; /* 08h */
|
A D | mpi_raid.h | 165 U64 TotalBlocks; /* 00h */ 166 U64 BlocksRemaining; /* 08h */
|
A D | mpi_sas.h | 112 U64 SASAddress; /* 10h */ 234 U64 SASAddress; /* 14h */
|
/linux/lib/zstd/compress/ |
A D | zstd_compress_internal.h | 567 return (__builtin_ctzll((U64)val) >> 3); in ZSTD_NbCommonBytes() 667 static const U64 prime5bytes = 889523592379ULL; 671 static const U64 prime6bytes = 227718039650203ULL; 675 static const U64 prime7bytes = 58295818150454627ULL; 679 static const U64 prime8bytes = 0xCF1BBCDCB7A56463ULL; 700 static U64 ZSTD_ipow(U64 base, U64 exponent) in ZSTD_ipow() 702 U64 power = 1; in ZSTD_ipow() 716 static U64 ZSTD_rollingHash_append(U64 hash, void const* buf, size_t size) in ZSTD_rollingHash_append() 730 MEM_STATIC U64 ZSTD_rollingHash_compute(void const* buf, size_t size) in ZSTD_rollingHash_compute() 739 MEM_STATIC U64 ZSTD_rollingHash_primePower(U32 length) in ZSTD_rollingHash_primePower() [all …]
|
A D | fse_compress.c | 411 { U64 const vStepLog = 62 - tableLog; in FSE_normalizeM2() 412 U64 const mid = (1ULL << (vStepLog-1)) - 1; in FSE_normalizeM2() 413 …U64 const rStep = ZSTD_div64((((U64)1<<vStepLog) * ToDistribute) + mid, (U32)total); /* scale on… in FSE_normalizeM2() 414 U64 tmpTotal = mid; in FSE_normalizeM2() 417 U64 const end = tmpTotal + (count[s] * rStep); in FSE_normalizeM2() 442 U64 const scale = 62 - tableLog; in FSE_normalizeCount() 443 U64 const step = ZSTD_div64((U64)1<<62, (U32)total); /* <== here, one division ! */ in FSE_normalizeCount() 444 U64 const vStep = 1ULL<<(scale-20); in FSE_normalizeCount() 460 U64 restToBeat = vStep * rtbTable[proba]; in FSE_normalizeCount() 461 proba += (count[s]*step) - ((U64)proba<<scale) > restToBeat; in FSE_normalizeCount()
|
A D | zstd_ldm.c | 24 U64 rolling; 25 U64 stopMask; 53 state->stopMask = (((U64)1 << hashRateLog) - 1) << (maxBitsInMask - hashRateLog); in ZSTD_ldm_gear_init() 56 state->stopMask = ((U64)1 << hashRateLog) - 1; in ZSTD_ldm_gear_init() 74 U64 hash, mask; in ZSTD_ldm_gear_feed() 265 U64 const xxhash = xxh64(split, minMatchLength, 0); in ZSTD_ldm_fillHashTable() 351 U64 const xxhash = xxh64(split, minMatchLength, 0); in ZSTD_ldm_generateSequences_internal()
|
A D | zstd_ldm_geartab.h | 14 static U64 ZSTD_ldm_gearTab[256] = {
|
A D | zstd_compress.c | 1096 static U32 ZSTD_dictAndWindowLog(U32 windowLog, U64 srcSize, U64 dictSize) in ZSTD_dictAndWindowLog() 1106 U64 const windowSize = 1ULL << windowLog; in ZSTD_dictAndWindowLog() 1135 const U64 minSrcSize = 513; /* (1<<9) + 1 */ in ZSTD_adjustCParams_internal() 1176 … U32 const dictAndWindowLog = ZSTD_dictAndWindowLog(cPar.windowLog, (U64)srcSize, (U64)dictSize); in ZSTD_adjustCParams_internal() 1264 const U64 pledgedSrcSize) in ZSTD_estimateCCtxSize_usingCCtxParams_internal() 1751 U64 pledgedSrcSize) in ZSTD_shouldAttachDict() 1768 U64 pledgedSrcSize, in ZSTD_resetCCtx_byAttachingCDict() 1824 U64 pledgedSrcSize, in ZSTD_resetCCtx_byCopyingCDict() 1891 U64 pledgedSrcSize, in ZSTD_resetCCtx_usingCDict() 1917 U64 pledgedSrcSize, in ZSTD_copyCCtx_internal() [all …]
|
/linux/drivers/scsi/mpt3sas/mpi/ |
A D | mpi2_cnfg.h | 1030 U64 1032 U64 1034 U64 1068 U64 2671 U64 2715 U64 2741 U64 2884 U64 2906 U64 2977 U64 [all …]
|
A D | mpi2_ioc.h | 222 U64 SystemRequestFrameBaseAddress; /*0x28 */ 224 U64 ReplyFreeQueueAddress; /*0x38 */ 225 U64 TimeStamp; /*0x40 */ 591 U64 TimeStamp; /*0x00 */ 727 U64 SASAddress; /*0x0C */ 948 U64 SASAddress; /*0x04 */ 963 U64 SASAddress; /*0x04 */ 1046 U64 EnclosureLogicalID; /*0x04 */ 1073 U64 SASAddress; /*0x0C */ 1087 U64 TimeStamp; /*0x00 */ [all …]
|
A D | mpi2_type.h | 43 typedef __le64 U64 __attribute__ ((aligned(4))); typedef 54 typedef U64 *PU64;
|
A D | mpi2.h | 477 U64 Words; 629 U64 Words; 878 U64 Address; 886 U64 Address64; 909 U64 Address; 919 U64 Address64; 1129 U64 Address; 1165 U64 Address;
|
A D | mpi2_raid.h | 222 U64 VolumeMaxLBA; /*0x10 */ 277 U64 TotalBlocks; /*0x00 */ 278 U64 BlocksRemaining; /*0x08 */
|
A D | mpi2_sas.h | 116 U64 SASAddress; /*0x10 */ 247 U64 LookupAddress; /*0x18 */
|
A D | mpi2_pci.h | 64 U64 ErrorResponseBaseAddress; /*0x10 */
|
/linux/lib/lz4/ |
A D | lz4defs.h | 52 typedef uint64_t U64; typedef 154 U64 a = get_unaligned((const U64 *)src); in LZ4_copy8() 156 put_unaligned(a, (U64 *)dst); in LZ4_copy8()
|
A D | lz4_compress.c | 61 U64 sequence, in LZ4_hash5() 69 static const U64 prime5bytes = 889523592379ULL; in LZ4_hash5() 73 static const U64 prime8bytes = 11400714785074694791ULL; in LZ4_hash5()
|
/linux/lib/zstd/decompress/ |
A D | zstd_decompress_internal.h | 76 #define ZSTD_BUILD_FSE_TABLE_WKSP_SIZE (sizeof(S16) * (MaxSeq + 1) + (1u << MaxFSELog) + sizeof(U64… 123 U64 processedCSize; 124 U64 decodedSize;
|
A D | zstd_decompress.c | 89 const U64 hash = xxh64(&dictID, sizeof(U32), 0); in ZSTD_DDictHashSet_getIndex() 444 U64 windowSize = 0; in ZSTD_getFrameHeader_advanced() 446 U64 frameContentSize = ZSTD_CONTENTSIZE_UNKNOWN; in ZSTD_getFrameHeader_advanced() 772 static void ZSTD_DCtx_trace_end(ZSTD_DCtx const* dctx, U64 uncompressedSize, U64 compressedSize, un… in ZSTD_DCtx_trace_end() 852 RETURN_ERROR_IF((U64)(op-ostart) != dctx->fParams.frameContentSize, in ZSTD_decompressFrame() 866 ZSTD_DCtx_trace_end(dctx, (U64)(op-ostart), (U64)(ip-istart), /* streaming */ 0); in ZSTD_decompressFrame() 1880 && (U64)(size_t)(oend-op) >= zds->fParams.frameContentSize) { in ZSTD_decompressStream() 1899 && (U64)(size_t)(oend-op) < zds->fParams.frameContentSize) { in ZSTD_decompressStream()
|
/linux/include/linux/ |
A D | property.h | 321 __PROPERTY_ENTRY_ARRAY_LEN(_name_, u64_data, U64, _val_, _len_) 358 __PROPERTY_ENTRY_ELEMENT(_name_, u64_data, U64, _val_)
|