Home
last modified time | relevance | path

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

/Linux-v5.10/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()
2335 && (U64)(size_t)(oend - op) >= zds->fParams.frameContentSize) { in ZSTD_decompressStream()
/Linux-v5.10/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-v5.10/drivers/scsi/mpt3sas/mpi/
Dmpi2_cnfg.h775 U64 WWID; /*0x00 */
776 U64 DeviceName; /*0x08 */
946 U64 UniqueValue; /*0x04 */
1030 U64
1032 U64
1034 U64
1068 U64
1643 U64 SASAddress; /*0x00 */
1653 U64 EnclosureLogicalID; /*0x00 */
1665 U64 DeviceName; /*0x00 */
[all …]
Dmpi2_type.h43 typedef __le64 U64 __attribute__ ((aligned(4))); typedef
54 typedef U64 *PU64;
Dmpi2_ioc.h222 U64 SystemRequestFrameBaseAddress; /*0x28 */
223 U64 ReplyDescriptorPostQueueAddress; /*0x30 */
224 U64 ReplyFreeQueueAddress; /*0x38 */
225 U64 TimeStamp; /*0x40 */
262 U64 RDPQBaseAddress; /* 0x00 */
591 U64 TimeStamp; /*0x00 */
727 U64 SASAddress; /*0x0C */
948 U64 SASAddress; /*0x04 */
963 U64 SASAddress; /*0x04 */
1046 U64 EnclosureLogicalID; /*0x04 */
[all …]
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;
Dmpi2_raid.h222 U64 VolumeMaxLBA; /*0x10 */
277 U64 TotalBlocks; /*0x00 */
278 U64 BlocksRemaining; /*0x08 */
Dmpi2_sas.h116 U64 SASAddress; /*0x10 */
247 U64 LookupAddress; /*0x18 */
Dmpi2_pci.h64 U64 ErrorResponseBaseAddress; /*0x10 */
Dmpi2_tool.h481 U64 BufferAddress; /*0x0C */
/Linux-v5.10/lib/lz4/
Dlz4defs.h52 typedef uint64_t U64; typedef
153 U64 a = get_unaligned((const U64 *)src); in LZ4_copy8()
155 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-v5.10/include/linux/
Dproperty.h310 __PROPERTY_ENTRY_ARRAY_LEN(_name_, u64_data, U64, _val_, _len_)
347 __PROPERTY_ENTRY_ELEMENT(_name_, u64_data, U64, _val_)