Home
last modified time | relevance | path

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

12

/linux-6.3-rc2/lib/zstd/common/
A Dmem.h39 typedef uint64_t U64; typedef
53 MEM_STATIC U64 MEM_read64(const void* memPtr);
64 MEM_STATIC U64 MEM_readLE64(const void* memPtr);
84 MEM_STATIC U64 MEM_swap64(U64 in);
121 MEM_STATIC U64 MEM_read64(const void *memPtr) in MEM_read64()
123 return get_unaligned((const U64 *)memPtr); in MEM_read64()
143 put_unaligned(value, (U64 *)memPtr); in MEM_write64()
202 MEM_writeLE64(memPtr, (U64)val); in MEM_writeLEST()
240 MEM_writeBE64(memPtr, (U64)val); in MEM_writeBEST()
248 MEM_STATIC U64 MEM_swap64(U64 in) in MEM_swap64()
[all …]
A Dzstd_internal.h382 return __builtin_ctzll((U64)val); in ZSTD_countTrailingZeros()
392 return DeBruijnBytePos[((U64)((val & -(long long)val) * 0x0218A392CDABBD3FULL)) >> 58]; in ZSTD_countTrailingZeros()
A Dfse_decompress.c115 U64 const add = 0x0101010101010101ull; in FSE_buildDTable_internal()
117 U64 sv = 0; in FSE_buildDTable_internal()
/linux-6.3-rc2/drivers/message/fusion/lsi/
A Dmpi_cnfg.h726 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 Dmpi_type.h66 } U64; typedef
80 typedef U64 *PU64;
A Dmpi.h367 U64 Address;
377 U64 Address64;
400 U64 Address;
412 U64 Address64;
A Dmpi_raid.h165 U64 TotalBlocks; /* 00h */
166 U64 BlocksRemaining; /* 08h */
A Dmpi_sas.h112 U64 SASAddress; /* 10h */
234 U64 SASAddress; /* 14h */
A Dmpi_ioc.h605 U64 SASAddress; /* 10h */
830 U64 SASAddress; /* 04h */
896 U64 SASAddress; /* 04h */
914 U64 SASAddress; /* 04h */
932 U64 SASAddress; /* 04h */
948 U64 SASAddress; /* 08h */
/linux-6.3-rc2/lib/zstd/compress/
A Dzstd_compress_internal.h693 return (__builtin_ctzll((U64)val) >> 3); in ZSTD_NbCommonBytes()
793 static const U64 prime5bytes = 889523592379ULL;
797 static const U64 prime6bytes = 227718039650203ULL;
801 static const U64 prime7bytes = 58295818150454627ULL;
805 static const U64 prime8bytes = 0xCF1BBCDCB7A56463ULL;
826 static U64 ZSTD_ipow(U64 base, U64 exponent) in ZSTD_ipow()
828 U64 power = 1; in ZSTD_ipow()
842 static U64 ZSTD_rollingHash_append(U64 hash, void const* buf, size_t size) in ZSTD_rollingHash_append()
856 MEM_STATIC U64 ZSTD_rollingHash_compute(void const* buf, size_t size) in ZSTD_rollingHash_compute()
865 MEM_STATIC U64 ZSTD_rollingHash_primePower(U32 length) in ZSTD_rollingHash_primePower()
[all …]
A Dfse_compress.c120 { U64 const add = 0x0101010101010101ull; in FSE_buildCTable_wksp()
122 U64 sv = 0; in FSE_buildCTable_wksp()
454 { U64 const vStepLog = 62 - tableLog; in FSE_normalizeM2()
455 U64 const mid = (1ULL << (vStepLog-1)) - 1; in FSE_normalizeM2()
456U64 const rStep = ZSTD_div64((((U64)1<<vStepLog) * ToDistribute) + mid, (U32)total); /* scale on… in FSE_normalizeM2()
457 U64 tmpTotal = mid; in FSE_normalizeM2()
460 U64 const end = tmpTotal + (count[s] * rStep); in FSE_normalizeM2()
485 U64 const scale = 62 - tableLog; in FSE_normalizeCount()
486 U64 const step = ZSTD_div64((U64)1<<62, (U32)total); /* <== here, one division ! */ in FSE_normalizeCount()
487 U64 const vStep = 1ULL<<(scale-20); in FSE_normalizeCount()
[all …]
A Dzstd_ldm.c24 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()
68 U64 hash = state->rolling; in ZSTD_ldm_gear_reset()
101 U64 hash, mask; in ZSTD_ldm_gear_feed()
292 U64 const xxhash = xxh64(split, minMatchLength, 0); in ZSTD_ldm_fillHashTable()
370 U64 const xxhash = xxh64(split, minMatchLength, 0); in ZSTD_ldm_generateSequences_internal()
A Dzstd_ldm_geartab.h17 static UNUSED_ATTR const U64 ZSTD_ldm_gearTab[256] = {
A Dzstd_compress.c1213 static U32 ZSTD_dictAndWindowLog(U32 windowLog, U64 srcSize, U64 dictSize) in ZSTD_dictAndWindowLog()
1223 U64 const windowSize = 1ULL << windowLog; in ZSTD_dictAndWindowLog()
1252 const U64 minSrcSize = 513; /* (1<<9) + 1 */ in ZSTD_adjustCParams_internal()
1293 … U32 const dictAndWindowLog = ZSTD_dictAndWindowLog(cPar.windowLog, (U64)srcSize, (U64)dictSize); in ZSTD_adjustCParams_internal()
1396 const U64 pledgedSrcSize) in ZSTD_estimateCCtxSize_usingCCtxParams_internal()
1948 U64 pledgedSrcSize) in ZSTD_shouldAttachDict()
1965 U64 pledgedSrcSize, in ZSTD_resetCCtx_byAttachingCDict()
2025 U64 pledgedSrcSize, in ZSTD_resetCCtx_byCopyingCDict()
2107 U64 pledgedSrcSize, in ZSTD_resetCCtx_usingCDict()
2133 U64 pledgedSrcSize, in ZSTD_copyCCtx_internal()
[all …]
/linux-6.3-rc2/drivers/scsi/mpt3sas/mpi/
A Dmpi2_cnfg.h1031 U64
1033 U64
1035 U64
1069 U64
2672 U64
2716 U64
2742 U64
2885 U64
2907 U64
2978 U64
[all …]
A Dmpi2_type.h43 typedef __le64 U64 __attribute__ ((aligned(4))); typedef
54 typedef U64 *PU64;
A Dmpi2_ioc.h222 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 Dmpi2.h477 U64 Words;
629 U64 Words;
878 U64 Address;
886 U64 Address64;
909 U64 Address;
919 U64 Address64;
1129 U64 Address;
1165 U64 Address;
A Dmpi2_raid.h222 U64 VolumeMaxLBA; /*0x10 */
277 U64 TotalBlocks; /*0x00 */
278 U64 BlocksRemaining; /*0x08 */
A Dmpi2_sas.h116 U64 SASAddress; /*0x10 */
247 U64 LookupAddress; /*0x18 */
A Dmpi2_pci.h64 U64 ErrorResponseBaseAddress; /*0x10 */
/linux-6.3-rc2/lib/lz4/
A Dlz4defs.h54 typedef uint64_t U64; typedef
156 U64 a = get_unaligned((const U64 *)src); in LZ4_copy8()
158 put_unaligned(a, (U64 *)dst); in LZ4_copy8()
/linux-6.3-rc2/lib/zstd/decompress/
A Dzstd_decompress_internal.h76 #define ZSTD_BUILD_FSE_TABLE_WKSP_SIZE (sizeof(S16) * (MaxSeq + 1) + (1u << MaxFSELog) + sizeof(U64
139 U64 processedCSize;
140 U64 decodedSize;
A Dhuf_decompress.c149 U64 bits[4];
208 args->ip[0] = args->iend[1] - sizeof(U64); in HUF_DecompressAsmArgs_init()
209 args->ip[1] = args->iend[2] - sizeof(U64); in HUF_DecompressAsmArgs_init()
210 args->ip[2] = args->iend[3] - sizeof(U64); in HUF_DecompressAsmArgs_init()
211 args->ip[3] = (BYTE const*)src + srcSize - sizeof(U64); in HUF_DecompressAsmArgs_init()
283 static U64 HUF_DEltX1_set4(BYTE symbol, BYTE nbBits) { in HUF_DEltX1_set4()
284 U64 D4; in HUF_DEltX1_set4()
442 U64 const D4 = HUF_DEltX1_set4(wksp->symbols[symbol + s], nbBits); in HUF_readDTableX1_wksp_bmi2()
449 U64 const D4 = HUF_DEltX1_set4(wksp->symbols[symbol + s], nbBits); in HUF_readDTableX1_wksp_bmi2()
854 static U64 HUF_buildDEltX2U64(U32 symbol, U32 nbBits, U16 baseSeq, int level) in HUF_buildDEltX2U64()
[all …]
A Dzstd_decompress.c88 const U64 hash = xxh64(&dictID, sizeof(U32), 0); in ZSTD_DDictHashSet_getIndex()
460 U64 windowSize = 0; in ZSTD_getFrameHeader_advanced()
462 U64 frameContentSize = ZSTD_CONTENTSIZE_UNKNOWN; in ZSTD_getFrameHeader_advanced()
818 static void ZSTD_DCtx_trace_end(ZSTD_DCtx const* dctx, U64 uncompressedSize, U64 compressedSize, un… in ZSTD_DCtx_trace_end()
898 RETURN_ERROR_IF((U64)(op-ostart) != dctx->fParams.frameContentSize, in ZSTD_decompressFrame()
912 ZSTD_DCtx_trace_end(dctx, (U64)(op-ostart), (U64)(ip-istart), /* streaming */ 0); in ZSTD_decompressFrame()
1926 && (U64)(size_t)(oend-op) >= zds->fParams.frameContentSize) { in ZSTD_decompressStream()
1945 && (U64)(size_t)(oend-op) < zds->fParams.frameContentSize) { in ZSTD_decompressStream()

Completed in 108 milliseconds

12