Home
last modified time | relevance | path

Searched refs:U32 (Results 1 – 25 of 74) sorted by relevance

123

/linux-5.19.10/drivers/scsi/mpt3sas/mpi/
Dmpi2_image.h33 U32 Signature; /*0x00 */
34 U32 Signature0; /*0x04 */
35 U32 Signature1; /*0x08 */
36 U32 Signature2; /*0x0C */
45 U32 IOCCapabilities; /*0x28 */
46 U32 ImageSize; /*0x2C */
47 U32 NextImageHeaderOffset; /*0x30 */
48 U32 Checksum; /*0x34 */
49 U32 Reserved38; /*0x38 */
50 U32 Reserved3C; /*0x3C */
[all …]
Dmpi2_cnfg.h276 U32 Word32;
299 U32 Word32[2];
485 U32 Reserved3; /*0x10 */
487 U32 PageAddress; /*0x18 */
519 U32 IOCLogInfo; /*0x10 */
655 U32
678 U32
708 U32 Reserved1; /*0x04 */
709 U32 Flags; /*0x08 */
714 U32 RAID0VolumeSettings; /*0x48 */
[all …]
Dmpi2.h203 U32 Doorbell; /*0x00 */
204 U32 WriteSequence; /*0x04 */
205 U32 HostDiagnostic; /*0x08 */
206 U32 Reserved1; /*0x0C */
207 U32 DiagRWData; /*0x10 */
208 U32 DiagRWAddressLow; /*0x14 */
209 U32 DiagRWAddressHigh; /*0x18 */
210 U32 Reserved2[5]; /*0x1C */
211 U32 HostInterruptStatus; /*0x30 */
212 U32 HostInterruptMask; /*0x34 */
[all …]
Dmpi2_init.h81 U32 TransferLength; /*0x1C */
104 U32 SenseBufferLowAddress; /*0x0C */
112 U32 SkipCount; /*0x18 */
113 U32 DataLength; /*0x1C */
114 U32 BidirectionalDataLength; /*0x20 */
117 U32 EEDPBlockSize; /*0x28 */
118 U32 SecondaryReferenceTag; /*0x2C */
122 U32 Control; /*0x3C */
254 U32 SenseBufferLowAddress; /*0x0C */
263 U32 SkipCount; /*0x18 */
[all …]
Dmpi2_ioc.h212 U32 Reserved5; /*0x10 */
220 U32 SenseBufferAddressHigh; /*0x20 */
221 U32 SystemReplyAddressHigh; /*0x24 */
263 U32 Reserved1; /* 0x08 */
264 U32 Reserved2; /* 0x0C */
284 U32 IOCLogInfo; /*0x10 */
319 U32 IOCLogInfo; /*0x10 */
326 U32 IOCCapabilities; /*0x1C */
440 U32 IOCLogInfo; /*0x10 */
491 U32 IOCLogInfo; /*0x10 */
[all …]
Dmpi2_sas.h115 U32 Reserved2; /*0x0C */
117 U32 Reserved3; /*0x18 */
118 U32 Reserved4; /*0x1C */
143 U32 IOCLogInfo; /*0x10 */
144 U32 Reserved3; /*0x14 */
178 U32 Reserved2; /*0x0C */
179 U32 Reserved3; /*0x10 */
180 U32 Reserved4; /*0x14 */
181 U32 DataLength; /*0x18 */
213 U32 IOCLogInfo; /*0x10 */
[all …]
/linux-5.19.10/lib/zstd/compress/
Dzstd_compress_internal.h79 U32 off; /* Offset code (offset + ZSTD_REP_MOVE) for the match */
80 U32 len; /* Raw length of match */
84 U32 offset; /* Offset of sequence */
85 U32 litLength; /* Length of literals prior to match */
86 U32 matchLength; /* Raw length of match */
102 U32 off;
103 U32 mlen;
104 U32 litlen;
105 U32 rep[ZSTD_REP_NUM];
119 U32 litSum; /* nb of literals */
[all …]
Dzstd_lazy.c22 U32 mls) in ZSTD_updateDUBT()
25 U32* const hashTable = ms->hashTable; in ZSTD_updateDUBT()
26 U32 const hashLog = cParams->hashLog; in ZSTD_updateDUBT()
28 U32* const bt = ms->chainTable; in ZSTD_updateDUBT()
29 U32 const btLog = cParams->chainLog - 1; in ZSTD_updateDUBT()
30 U32 const btMask = (1 << btLog) - 1; in ZSTD_updateDUBT()
33 U32 const target = (U32)(ip - base); in ZSTD_updateDUBT()
34 U32 idx = ms->nextToUpdate; in ZSTD_updateDUBT()
45 U32 const matchIndex = hashTable[h]; in ZSTD_updateDUBT()
47 U32* const nextCandidatePtr = bt + 2*(idx&btMask); in ZSTD_updateDUBT()
[all …]
Dzstd_opt.c53 MEM_STATIC U32 ZSTD_bitWeight(U32 stat) in ZSTD_bitWeight()
58 MEM_STATIC U32 ZSTD_fracWeight(U32 rawStat) in ZSTD_fracWeight()
60 U32 const stat = rawStat + 1; in ZSTD_fracWeight()
61 U32 const hb = ZSTD_highbit32(stat); in ZSTD_fracWeight()
62 U32 const BWeight = hb * BITCOST_MULTIPLIER; in ZSTD_fracWeight()
63 U32 const FWeight = (stat << BITCOST_ACCURACY) >> hb; in ZSTD_fracWeight()
64 U32 const weight = BWeight + FWeight; in ZSTD_fracWeight()
73 MEM_STATIC double ZSTD_fCost(U32 price) in ZSTD_fCost()
97 static U32 ZSTD_downscaleStat(unsigned* table, U32 lastEltIndex, int malus) in ZSTD_downscaleStat()
99 U32 s, sum=0; in ZSTD_downscaleStat()
[all …]
Dzstd_fast.c20 U32* const hashTable = ms->hashTable; in ZSTD_fillHashTable()
21 U32 const hBits = cParams->hashLog; in ZSTD_fillHashTable()
22 U32 const mls = cParams->minMatch; in ZSTD_fillHashTable()
26 const U32 fastHashFillStep = 3; in ZSTD_fillHashTable()
32 U32 const curr = (U32)(ip - base); in ZSTD_fillHashTable()
37 { U32 p; in ZSTD_fillHashTable()
48 ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], in ZSTD_compressBlock_fast_generic()
50 U32 const mls) in ZSTD_compressBlock_fast_generic()
53 U32* const hashTable = ms->hashTable; in ZSTD_compressBlock_fast_generic()
54 U32 const hlog = cParams->hashLog; in ZSTD_compressBlock_fast_generic()
[all …]
Dzstd_double_fast.c19 U32* const hashLarge = ms->hashTable; in ZSTD_fillDoubleHashTable()
20 U32 const hBitsL = cParams->hashLog; in ZSTD_fillDoubleHashTable()
21 U32 const mls = cParams->minMatch; in ZSTD_fillDoubleHashTable()
22 U32* const hashSmall = ms->chainTable; in ZSTD_fillDoubleHashTable()
23 U32 const hBitsS = cParams->chainLog; in ZSTD_fillDoubleHashTable()
27 const U32 fastHashFillStep = 3; in ZSTD_fillDoubleHashTable()
34 U32 const curr = (U32)(ip - base); in ZSTD_fillDoubleHashTable()
35 U32 i; in ZSTD_fillDoubleHashTable()
52 ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], in ZSTD_compressBlock_doubleFast_generic()
54 U32 const mls /* template */, ZSTD_dictMode_e const dictMode) in ZSTD_compressBlock_doubleFast_generic()
[all …]
Dzstd_compress_literals.c19 U32 const flSize = 1 + (srcSize>31) + (srcSize>4095); in ZSTD_noCompressLiterals()
26 ostart[0] = (BYTE)((U32)set_basic + (srcSize<<3)); in ZSTD_noCompressLiterals()
29 MEM_writeLE16(ostart, (U16)((U32)set_basic + (1<<2) + (srcSize<<4))); in ZSTD_noCompressLiterals()
32 MEM_writeLE32(ostart, (U32)((U32)set_basic + (3<<2) + (srcSize<<4))); in ZSTD_noCompressLiterals()
39 DEBUGLOG(5, "Raw literals: %u -> %u", (U32)srcSize, (U32)(srcSize + flSize)); in ZSTD_noCompressLiterals()
46 U32 const flSize = 1 + (srcSize>31) + (srcSize>4095); in ZSTD_compressRleLiteralsBlock()
53 ostart[0] = (BYTE)((U32)set_rle + (srcSize<<3)); in ZSTD_compressRleLiteralsBlock()
56 MEM_writeLE16(ostart, (U16)((U32)set_rle + (1<<2) + (srcSize<<4))); in ZSTD_compressRleLiteralsBlock()
59 MEM_writeLE32(ostart, (U32)((U32)set_rle + (3<<2) + (srcSize<<4))); in ZSTD_compressRleLiteralsBlock()
66 DEBUGLOG(5, "RLE literals: %u -> %u", (U32)srcSize, (U32)flSize + 1); in ZSTD_compressRleLiteralsBlock()
[all …]
Dzstd_lazy.h25 U32 ZSTD_insertAndFindFirstIndex(ZSTD_matchState_t* ms, const BYTE* ip);
29 void ZSTD_preserveUnsortedMark (U32* const table, U32 const size, U32 const reducerValue); /*! use…
32 ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
35 ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
38 ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
41 ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
45 ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
48 ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
51 ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
54 ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
[all …]
Dfse_compress.c71 U32 const tableSize = 1 << tableLog; in FSE_buildCTable_wksp()
72 U32 const tableMask = tableSize - 1; in FSE_buildCTable_wksp()
75 void* const FSCT = ((U32*)ptr) + 1 /* header */ + (tableLog ? tableSize>>1 : 1) ; in FSE_buildCTable_wksp()
77 U32 const step = FSE_TABLESTEP(tableSize); in FSE_buildCTable_wksp()
79 U32* cumul = (U32*)workSpace; in FSE_buildCTable_wksp()
82 U32 highThreshold = tableSize-1; in FSE_buildCTable_wksp()
99 { U32 u; in FSE_buildCTable_wksp()
112 { U32 position = 0; in FSE_buildCTable_wksp()
113 U32 symbol; in FSE_buildCTable_wksp()
128 { U32 u; for (u=0; u<tableSize; u++) { in FSE_buildCTable_wksp()
[all …]
/linux-5.19.10/drivers/message/fusion/lsi/
Dmpi_cnfg.h353 U32 Word32;
512 U32 MsgContext; /* 08h */
515 U32 PageAddress; /* 18h */
543 U32 MsgContext; /* 08h */
546 U32 IOCLogInfo; /* 10h */
637 U32 HwSettings[MPI_MAN_PAGE_2_HW_SETTINGS_WORDS];/* 08h */
656 U32 Info[MPI_MAN_PAGE_3_INFO_WORDS];/* 08h */
666 U32 Reserved1; /* 04h */
675 U32 ISVolumeSettings; /* 48h */
676 U32 IMEVolumeSettings; /* 4Ch */
[all …]
Dmpi_fc.h69 U32 MsgContext; /* 08h */
79 U32 PortNameHigh; /* 00h */
80 U32 PortNameLow; /* 04h */
81 U32 NodeNameHigh; /* 08h */
82 U32 NodeNameLow; /* 0Ch */
96 U32 MsgContext; /* 08h */
99 U32 IOCLogInfo; /* 10h */
100 U32 TransferLength; /* 14h */
101 U32 TransactionContext; /* 18h */
102 U32 Rctl_Did; /* 1Ch */
[all …]
Dmpi_targ.h78 U32 PhysicalAddress32;
99 U32 MsgContext; /* 08h */
124 U32 MsgContext; /* 08h */
127 U32 IOCLogInfo; /* 10h */
140 U32 MsgContext; /* 08h */
144 U32 IOCLogInfo; /* 10h */
145 U32 ReplyWord; /* 14h */
158 U32 MsgContext; /* 08h */
162 U32 IOCLogInfo; /* 10h */
163 U32 ReplyWord; /* 14h */
[all …]
Dmpi_init.h87 U32 MsgContext; /* 08h */
89 U32 Control; /* 14h */
91 U32 DataLength; /* 28h */
92 U32 SenseBufferLowAddr; /* 2Ch */
159 U32 MsgContext; /* 08h */
163 U32 IOCLogInfo; /* 10h */
164 U32 TransferCount; /* 14h */
165 U32 SenseCount; /* 18h */
166 U32 ResponseInfo; /* 1Ch */
221 U32 PrimaryReferenceTag; /* 14h */
[all …]
Dmpi_ioc.h154 U32 MsgContext; /* 08h */
157 U32 HostMfaHighAddr; /* 10h */
158 U32 SenseBufferHighAddr; /* 14h */
159 U32 ReplyFifoHostSignalingAddr; /* 18h */
202 U32 MsgContext; /* 08h */
205 U32 IOCLogInfo; /* 10h */
222 U32 MsgContext; /* 08h */
237 U32 Word;
249 U32 MsgContext; /* 08h */
252 U32 IOCLogInfo; /* 10h */
[all …]
Dmpi_raid.h69 U32 MsgContext; /* 08h */
70 U32 Reserved2; /* 0Ch */
71 U32 ActionDataWord; /* 10h */
143 U32 MsgContext; /* 08h */
146 U32 IOCLogInfo; /* 10h */
147 U32 VolumeStatus; /* 14h */
148 U32 ActionData; /* 18h */
185 U32 MsgContext; /* 08h */
187 U32 Control; /* 14h */
189 U32 DataLength; /* 28h */
[all …]
Dmpi_sas.h110 U32 MsgContext; /* 08h */
111 U32 Reserved1; /* 0Ch */
113 U32 Reserved2; /* 18h */
114 U32 Reserved3; /* 1Ch */
138 U32 MsgContext; /* 08h */
142 U32 IOCLogInfo; /* 10h */
143 U32 Reserved3; /* 14h */
164 U32 MsgContext; /* 08h */
165 U32 Reserved1; /* 0Ch */
166 U32 Reserved2; /* 10h */
[all …]
Dmpi_tool.h56 U32 MsgContext; /* 08h */
59 U32 IOCLogInfo; /* 10h */
77 U32 MsgContext; /* 08h */
78 U32 Flags; /* 0Ch */
106 U32 MsgContext; /* 08h */
125 U32 MsgContext; /* 08h */
126 U32 Flags; /* 0Ch */
127 U32 Reserved3; /* 10h */
134 U32 DiagDataLength; /* 00h */
160 U32 MsgContext; /* 08h */
[all …]
/linux-5.19.10/lib/zstd/common/
Dmem.h35 typedef uint32_t U32; typedef
50 MEM_STATIC U32 MEM_read32(const void* memPtr);
55 MEM_STATIC void MEM_write32(void* memPtr, U32 value);
60 MEM_STATIC U32 MEM_readLE24(const void* memPtr);
61 MEM_STATIC U32 MEM_readLE32(const void* memPtr);
66 MEM_STATIC void MEM_writeLE24(void* memPtr, U32 val);
67 MEM_STATIC void MEM_writeLE32(void* memPtr, U32 val32);
72 MEM_STATIC U32 MEM_readBE32(const void* memPtr);
76 MEM_STATIC void MEM_writeBE32(void* memPtr, U32 val32);
81 MEM_STATIC U32 MEM_swap32(U32 in);
[all …]
Dentropy_common.c41 static U32 FSE_ctz(U32 val) in FSE_ctz()
48 U32 count = 0; in FSE_ctz()
68 U32 bitStream; in FSE_readNCount_body()
152 if ((bitStream & (threshold-1)) < (U32)max) { in FSE_readNCount_body()
251 size_t HUF_readStats(BYTE* huffWeight, size_t hwSize, U32* rankStats, in HUF_readStats()
252 U32* nbSymbolsPtr, U32* tableLogPtr, in HUF_readStats()
255 U32 wksp[HUF_READ_STATS_WORKSPACE_SIZE_U32]; in HUF_readStats()
260 HUF_readStats_body(BYTE* huffWeight, size_t hwSize, U32* rankStats, in HUF_readStats_body()
261 U32* nbSymbolsPtr, U32* tableLogPtr, in HUF_readStats_body()
266 U32 weightTotal; in HUF_readStats_body()
[all …]
/linux-5.19.10/lib/zstd/decompress/
Dzstd_decompress_internal.h30 static UNUSED_ATTR const U32 LL_base[MaxLL+1] = {
37 static UNUSED_ATTR const U32 OF_base[MaxOff+1] = {
43 static UNUSED_ATTR const U32 OF_bits[MaxOff+1] = {
49 static UNUSED_ATTR const U32 ML_base[MaxML+1] = {
63 U32 fastMode;
64 U32 tableLog;
71 U32 baseValue;
77 …TD_BUILD_FSE_TABLE_WKSP_SIZE_U32 ((ZSTD_BUILD_FSE_TABLE_WKSP_SIZE + sizeof(U32) - 1) / sizeof(U32))
84 U32 rep[ZSTD_REP_NUM];
85 U32 workspace[ZSTD_BUILD_FSE_TABLE_WKSP_SIZE_U32];
[all …]

123