/linux-6.12.1/lib/zstd/common/ |
D | mem.h | 39 typedef uint64_t U64; typedef 53 MEM_STATIC U64 MEM_read64(const void* memPtr); 58 MEM_STATIC void MEM_write64(void* memPtr, U64 value); 64 MEM_STATIC U64 MEM_readLE64(const void* memPtr); 70 MEM_STATIC void MEM_writeLE64(void* memPtr, U64 val64); 75 MEM_STATIC U64 MEM_readBE64(const void* memPtr); 79 MEM_STATIC void MEM_writeBE64(void* memPtr, U64 val64); 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() [all …]
|
D | zstd_internal.h | 382 return __builtin_ctzll((U64)val); in ZSTD_countTrailingZeros() 392 return DeBruijnBytePos[((U64)((val & -(long long)val) * 0x0218A392CDABBD3FULL)) >> 58]; in ZSTD_countTrailingZeros()
|
/linux-6.12.1/tools/testing/selftests/bpf/prog_tests/ |
D | reg_bounds.c | 65 enum num_t { U64, first_t = U64, U32, S64, S32, last_t = S32 }; enumerator 70 case U64: return (u64)x < (u64)y ? (u64)x : (u64)y; in min_t() 81 case U64: return (u64)x > (u64)y ? (u64)x : (u64)y; in max_t() 92 case U64: return (u64)x; in cast_t() 103 case U64: return "u64"; in t_str() 114 case U64: return false; in t_is_32() 125 case U64: return S64; in t_signed() 136 case U64: return U64; in t_unsigned() 138 case S64: return U64; in t_unsigned() 151 case U64: return (u64)x <= UNUM_MAX_DECIMAL; in num_is_small() [all …]
|
/linux-6.12.1/drivers/message/fusion/lsi/ |
D | mpi_cnfg.h | 726 U64 BaseWWID; /* 04h */ 732 U64 ForceWWID[MPI_MANPAGE5_NUM_FORCEWWID]; /* 18h */ 849 U64 UniqueValue; /* 04h */ 1338 U64 WWPN; /* 00h */ 1357 U64 SASAddress; /* 00h */ 1376 U64 EnclosureLogicalID; /* 00h */ 1436 U64 ReassignmentBaseWWID; /* 04h */ 1715 U64 WWNN; /* 10h */ 1716 U64 WWPN; /* 18h */ 1721 U64 FabricWWNN; /* 30h */ [all …]
|
D | mpi_type.h | 66 } U64; typedef 80 typedef U64 *PU64;
|
D | mpi.h | 367 U64 Address; 377 U64 Address64; 400 U64 Address; 412 U64 Address64;
|
D | mpi_raid.h | 165 U64 TotalBlocks; /* 00h */ 166 U64 BlocksRemaining; /* 08h */
|
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 */
|
D | mpi_sas.h | 112 U64 SASAddress; /* 10h */ 234 U64 SASAddress; /* 14h */
|
/linux-6.12.1/lib/zstd/compress/ |
D | zstd_compress_internal.h | 693 return (__builtin_ctzll((U64)val) >> 3); in ZSTD_NbCommonBytes() 703 return DeBruijnBytePos[((U64)((val & -(long long)val) * 0x0218A392CDABBD3FULL)) >> 58]; in ZSTD_NbCommonBytes() 793 static const U64 prime5bytes = 889523592379ULL; 794 static size_t ZSTD_hash5(U64 u, U32 h) { return (size_t)(((u << (64-40)) * prime5bytes) >> (64-h))… in ZSTD_hash5() 797 static const U64 prime6bytes = 227718039650203ULL; 798 static size_t ZSTD_hash6(U64 u, U32 h) { return (size_t)(((u << (64-48)) * prime6bytes) >> (64-h))… in ZSTD_hash6() 801 static const U64 prime7bytes = 58295818150454627ULL; 802 static size_t ZSTD_hash7(U64 u, U32 h) { return (size_t)(((u << (64-56)) * prime7bytes) >> (64-h))… in ZSTD_hash7() 805 static const U64 prime8bytes = 0xCF1BBCDCB7A56463ULL; 806 static size_t ZSTD_hash8(U64 u, U32 h) { return (size_t)(((u) * prime8bytes) >> (64-h)) ; } in ZSTD_hash8() [all …]
|
D | fse_compress.c | 120 { 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() 456 …U64 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 …]
|
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() 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()
|
D | zstd_ldm_geartab.h | 17 static UNUSED_ATTR const U64 ZSTD_ldm_gearTab[256] = {
|
D | zstd_compress.c | 1213 static U32 ZSTD_dictAndWindowLog(U32 windowLog, U64 srcSize, U64 dictSize) in ZSTD_dictAndWindowLog() 1215 const U64 maxWindowSize = 1ULL << ZSTD_WINDOWLOG_MAX; in ZSTD_dictAndWindowLog() 1223 U64 const windowSize = 1ULL << windowLog; in ZSTD_dictAndWindowLog() 1224 U64 const dictAndWindowSize = dictSize + windowSize; in ZSTD_dictAndWindowLog() 1252 const U64 minSrcSize = 513; /* (1<<9) + 1 */ in ZSTD_adjustCParams_internal() 1253 const U64 maxWindowResize = 1ULL << (ZSTD_WINDOWLOG_MAX-1); in ZSTD_adjustCParams_internal() 1293 … U32 const dictAndWindowLog = ZSTD_dictAndWindowLog(cPar.windowLog, (U64)srcSize, (U64)dictSize); in ZSTD_adjustCParams_internal() 1333 … const ZSTD_CCtx_params* CCtxParams, U64 srcSizeHint, size_t dictSize, ZSTD_cParamMode_e mode) in ZSTD_getCParamsFromCCtxParams() 1396 const U64 pledgedSrcSize) in ZSTD_estimateCCtxSize_usingCCtxParams_internal() 1750 U64 const pledgedSrcSize, in ZSTD_resetCCtx_internal() [all …]
|
/linux-6.12.1/drivers/scsi/mpt3sas/mpi/ |
D | mpi2_cnfg.h | 765 U64 WWID; /*0x00 */ 766 U64 DeviceName; /*0x08 */ 931 U64 UniqueValue; /*0x04 */ 1012 U64 1014 U64 1016 U64 1050 U64 1613 U64 SASAddress; /*0x00 */ 1623 U64 EnclosureLogicalID; /*0x00 */ 1635 U64 DeviceName; /*0x00 */ [all …]
|
D | mpi2_type.h | 43 typedef __le64 U64 __attribute__ ((aligned(4))); typedef 54 typedef U64 *PU64;
|
D | mpi2_ioc.h | 222 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 */ 945 U64 SASAddress; /*0x04 */ 960 U64 SASAddress; /*0x04 */ 1040 U64 EnclosureLogicalID; /*0x04 */ [all …]
|
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;
|
D | mpi2_raid.h | 222 U64 VolumeMaxLBA; /*0x10 */ 277 U64 TotalBlocks; /*0x00 */ 278 U64 BlocksRemaining; /*0x08 */
|
D | mpi2_sas.h | 116 U64 SASAddress; /*0x10 */ 247 U64 LookupAddress; /*0x18 */
|
D | mpi2_pci.h | 64 U64 ErrorResponseBaseAddress; /*0x10 */
|
/linux-6.12.1/lib/lz4/ |
D | lz4defs.h | 54 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.12.1/lib/zstd/decompress/ |
D | zstd_decompress_internal.h | 76 #define ZSTD_BUILD_FSE_TABLE_WKSP_SIZE (sizeof(S16) * (MaxSeq + 1) + (1u << MaxFSELog) + sizeof(U64… 139 U64 processedCSize; 140 U64 decodedSize;
|
D | huf_decompress.c | 149 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() 457 U64 const D4 = HUF_DEltX1_set4(wksp->symbols[symbol + s], nbBits); in HUF_readDTableX1_wksp_bmi2() [all …]
|
D | zstd_decompress.c | 88 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() 917 RETURN_ERROR_IF((U64)(op-ostart) != dctx->fParams.frameContentSize, in ZSTD_decompressFrame() 931 ZSTD_DCtx_trace_end(dctx, (U64)(op-ostart), (U64)(ip-istart), /* streaming */ 0); in ZSTD_decompressFrame() 1945 && (U64)(size_t)(oend-op) >= zds->fParams.frameContentSize) { in ZSTD_decompressStream() 1964 && (U64)(size_t)(oend-op) < zds->fParams.frameContentSize) { in ZSTD_decompressStream()
|