Home
last modified time | relevance | path

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

/linux-4.19.296/lib/zstd/
Dmem.h40 typedef uint64_t U64; typedef
63 ZSTD_STATIC U64 ZSTD_read64(const void *memPtr) { return get_unaligned((const U64 *)memPtr); } in ZSTD_read64()
71 ZSTD_STATIC void ZSTD_write64(void *memPtr, U64 value) { put_unaligned(value, (U64 *)memPtr); } in ZSTD_write64()
91 ZSTD_STATIC U64 ZSTD_readLE64(const void *memPtr) { return get_unaligned_le64(memPtr); } in ZSTD_readLE64()
93 ZSTD_STATIC void ZSTD_writeLE64(void *memPtr, U64 val64) { put_unaligned_le64(val64, memPtr); } in ZSTD_writeLE64()
108 ZSTD_writeLE64(memPtr, (U64)val); in ZSTD_writeLEST()
117 ZSTD_STATIC U64 ZSTD_readBE64(const void *memPtr) { return get_unaligned_be64(memPtr); } in ZSTD_readBE64()
119 ZSTD_STATIC void ZSTD_writeBE64(void *memPtr, U64 val64) { put_unaligned_be64(val64, memPtr); } in ZSTD_writeBE64()
134 ZSTD_writeBE64(memPtr, (U64)val); in ZSTD_writeBEST()
Dfse_compress.c587 U64 const vStepLog = 62 - tableLog; in FSE_normalizeM2()
588 U64 const mid = (1ULL << (vStepLog - 1)) - 1; in FSE_normalizeM2()
589U64 const rStep = div_u64((((U64)1 << vStepLog) * ToDistribute) + mid, (U32)total); /* scale on re… in FSE_normalizeM2()
590 U64 tmpTotal = mid; in FSE_normalizeM2()
593 U64 const end = tmpTotal + (count[s] * rStep); in FSE_normalizeM2()
622 U64 const scale = 62 - tableLog; in FSE_normalizeCount()
623 U64 const step = div_u64((U64)1 << 62, (U32)total); /* <== here, one division ! */ in FSE_normalizeCount()
624 U64 const vStep = 1ULL << (scale - 20); in FSE_normalizeCount()
644 U64 restToBeat = vStep * rtbTable[proba]; in FSE_normalizeCount()
645 proba += (count[s] * step) - ((U64)proba << scale) > restToBeat; in FSE_normalizeCount()
Dcompress.c73 U64 frameContentSize;
188 U64 const rSize = srcSize + dictSize + minSrcSize; in ZSTD_adjustCParams()
189 if (rSize < ((U64)1 << ZSTD_WINDOWLOG_MAX)) { in ZSTD_adjustCParams()
217 static size_t ZSTD_continueCCtx(ZSTD_CCtx *cctx, ZSTD_parameters params, U64 frameContentSize) in ZSTD_continueCCtx()
242 static size_t ZSTD_resetCCtx_advanced(ZSTD_CCtx *zc, ZSTD_parameters params, U64 frameContentSize, … in ZSTD_resetCCtx_advanced()
894 return (__builtin_ctzll((U64)val) >> 3); in ZSTD_NbCommonBytes()
960 static const U64 prime5bytes = 889523592379ULL;
961 static size_t ZSTD_hash5(U64 u, U32 h) { return (size_t)(((u << (64 - 40)) * prime5bytes) >> (64 - … in ZSTD_hash5()
964 static const U64 prime6bytes = 227718039650203ULL;
965 static size_t ZSTD_hash6(U64 u, U32 h) { return (size_t)(((u << (64 - 48)) * prime6bytes) >> (64 - … in ZSTD_hash6()
[all …]
Ddecompress.c73 U64 workspace[HUF_DECOMPRESS_WORKSPACE_SIZE_U32 / 2];
242 U64 frameContentSize = 0; in ZSTD_getFrameParams()
2334 && (U64)(size_t)(oend - op) >= zds->fParams.frameContentSize) { in ZSTD_decompressStream()
/linux-4.19.296/drivers/message/fusion/lsi/
Dmpi_cnfg.h726 U64 BaseWWID; /* 04h */
732 U64 ForceWWID[MPI_MANPAGE5_NUM_FORCEWWID]; /* 18h */
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 */
[all …]
Dmpi_type.h66 } U64; typedef
80 typedef U64 *PU64;
Dmpi.h367 U64 Address;
377 U64 Address64;
400 U64 Address;
412 U64 Address64;
Dmpi_raid.h165 U64 TotalBlocks; /* 00h */
166 U64 BlocksRemaining; /* 08h */
Dmpi_sas.h112 U64 SASAddress; /* 10h */
234 U64 SASAddress; /* 14h */
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 */
Dmpi_tool.h285 U64 BufferAddress; /* 28h */
Dmpi_init.h260 U64 WWID;
Dmpi_targ.h79 U64 PhysicalAddress64;
/linux-4.19.296/lib/lz4/
Dlz4defs.h52 typedef uint64_t U64; typedef
138 U64 a = get_unaligned((const U64 *)src); in LZ4_copy8()
140 put_unaligned(a, (U64 *)dst); in LZ4_copy8()
Dlz4_compress.c61 U64 sequence, in LZ4_hash5()
69 static const U64 prime5bytes = 889523592379ULL; in LZ4_hash5()
73 static const U64 prime8bytes = 11400714785074694791ULL; in LZ4_hash5()
/linux-4.19.296/include/linux/
Dproperty.h230 PROPERTY_ENTRY_INTEGER_ARRAY(_name_, u64, U64, _val_)
256 PROPERTY_ENTRY_INTEGER(_name_, u64, U64, _val_)