Home
last modified time | relevance | path

Searched refs:UInt32 (Results 1 – 20 of 20) sorted by relevance

/illumos-gate/usr/src/common/lzma/
H A DLzFind.h9 typedef UInt32 CLzRef;
14 UInt32 pos;
15 UInt32 posLimit;
16 UInt32 streamPos;
17 UInt32 lenLimit;
19 UInt32 cyclicBufferPos;
20 UInt32 cyclicBufferSize; /* it must be = (historySize + 1) */
22 UInt32 matchMaxLen;
25 UInt32 hashMask;
26 UInt32 cutValue;
[all …]
H A DLzFind.c15 #define kMaxValForNormalize ((UInt32)0xFFFFFFFF)
18 #define kMaxHistorySize ((UInt32)3 << 30)
33 static int LzInWindow_Create(CMatchFinder *p, UInt32 keepSizeReserv, ISzAlloc *alloc) in LzInWindow_Create()
35 UInt32 blockSize = p->keepSizeBefore + p->keepSizeAfter + keepSizeReserv; in LzInWindow_Create()
53 UInt32 MatchFinder_GetNumAvailableBytes(CMatchFinder *p) { return p->streamPos - p->pos; } in MatchFinder_GetNumAvailableBytes()
55 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue) in MatchFinder_ReduceOffsets()
80 p->streamPos += (UInt32)size; in MatchFinder_ReadBlock()
129 UInt32 i; in MatchFinder_Construct()
137 UInt32 r = i; in MatchFinder_Construct()
157 static CLzRef* AllocRefs(UInt32 num, ISzAlloc *alloc) in AllocRefs()
[all …]
H A DLzmaEnc.c39 #define kTopValue ((UInt32)1 << kNumTopBits)
75 UInt32 LzmaEncProps_GetDictSize(const CLzmaEncProps *props2) in LzmaEncProps_GetDictSize()
92 UInt32 GetPosSlot1(UInt32 pos) in GetPosSlot1()
94 UInt32 res; in GetPosSlot1()
114 UInt32 k = (1 << ((slotFast >> 1) - 1)); in LzmaEnc_FastPosInit()
115 UInt32 j; in LzmaEnc_FastPosInit()
121 #define BSR2_RET(pos, res) { UInt32 i = 6 + ((kNumLogBits - 1) & \
122 (0 - (((((UInt32)1 << (kNumLogBits + 6)) - 1) - pos) >> 31))); \
143 UInt32 price;
149 UInt32 posPrev2;
[all …]
H A DLzHash.h15 #define HASH2_CALC hashValue = cur[0] | ((UInt32)cur[1] << 8);
18 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
20 hashValue = (temp ^ ((UInt32)cur[2] << 8)) & p->hashMask; }
23 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
25 hash3Value = (temp ^ ((UInt32)cur[2] << 8)) & (kHash3Size - 1); \
26 hashValue = (temp ^ ((UInt32)cur[2] << 8) ^ (p->crc[cur[3]] << 5)) & p->hashMask; }
29 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
31 hash3Value = (temp ^ ((UInt32)cur[2] << 8)) & (kHash3Size - 1); \
32 hash4Value = (temp ^ ((UInt32)cur[2] << 8) ^ (p->crc[cur[3]] << 5)); \
37 #define HASH_ZIP_CALC hashValue = ((cur[2] | ((UInt32)cur[0] << 8)) ^ p->crc[cur[1]]) & 0xFFFF;
[all …]
H A DLzmaDec.h14 #define CLzmaProb UInt32
27 UInt32 dicSize;
52 UInt32 range, code;
55 UInt32 processedPos;
56 UInt32 checkDicSize;
58 UInt32 reps[4];
62 UInt32 numProbs;
H A DLzmaDec.c16 #define kTopValue ((UInt32)1 << kNumTopBits)
117 #define LzmaProps_GetNumProbs(p) ((UInt32)LZMA_BASE_SIZE + (LZMA_LIT_SIZE << ((p)->lc + (p)->lp)))
153 UInt32 rep0 = p->reps[0], rep1 = p->reps[1], rep2 = p->reps[2], rep3 = p->reps[3]; in LzmaDec_DecodeReal()
162 UInt32 processedPos = p->processedPos; in LzmaDec_DecodeReal()
163 UInt32 checkDicSize = p->checkDicSize; in LzmaDec_DecodeReal()
167 UInt32 range = p->range; in LzmaDec_DecodeReal()
168 UInt32 code = p->code; in LzmaDec_DecodeReal()
173 UInt32 bound; in LzmaDec_DecodeReal()
248 UInt32 distance; in LzmaDec_DecodeReal()
314 UInt32 distance; in LzmaDec_DecodeReal()
[all …]
H A DLzmaEnc.h19 UInt32 dictSize; /* (1 << 12) <= dictSize <= (1 << 27) for 32-bit version
29 UInt32 mc; /* 1 <= mc <= (1 << 30), default = 32 */
36 UInt32 LzmaEncProps_GetDictSize(const CLzmaEncProps *props2);
H A DTypes.h56 typedef unsigned long UInt32; typedef
59 typedef unsigned int UInt32; typedef
83 typedef UInt32 SizeT;
/illumos-gate/usr/src/common/bzip2/
H A Dbzlib_private.h49 typedef unsigned int UInt32; typedef
160 extern UInt32 BZ2_crc32Table[256];
212 UInt32 avail_in_expect;
215 UInt32* arr1;
216 UInt32* arr2;
217 UInt32* ftab;
221 UInt32* ptr;
230 UInt32 state_in_ch;
246 UInt32 bsBuff;
250 UInt32 blockCRC;
[all …]
H A Ddecompress.c48 UInt32 v; \
58 ((UInt32) \
244 s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc); in BZ2_decompress()
246 s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc); in BZ2_decompress()
248 s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc); in BZ2_decompress()
250 s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc); in BZ2_decompress()
413 s->tt[nblock] = (UInt32)uc; in BZ2_decompress()
427 UInt32 nn; in BZ2_decompress()
428 nn = (UInt32)(nextSym - 1); in BZ2_decompress()
481 s->tt[nblock] = (UInt32)(s->seqToUnseq[uc]); in BZ2_decompress()
[all …]
H A Dblocksort.c32 void fallbackSimpleSort ( UInt32* fmap, in fallbackSimpleSort()
33 UInt32* eclass, in fallbackSimpleSort()
38 UInt32 ec_tmp; in fallbackSimpleSort()
93 void fallbackQSort3 ( UInt32* fmap, in fallbackQSort3()
94 UInt32* eclass, in fallbackQSort3()
100 UInt32 med, r, r3; in fallbackQSort3()
212 void fallbackSort ( UInt32* fmap, in fallbackSort()
213 UInt32* eclass, in fallbackSort()
214 UInt32* bhtab, in fallbackSort()
347 Bool mainGtU ( UInt32 i1, in mainGtU()
[all …]
H A Dbzlib.c260 s->arr1 = BZALLOC( n * sizeof(UInt32) ); in BZ_API()
261 s->arr2 = BZALLOC( (n+BZ_N_OVERSHOOT) * sizeof(UInt32) ); in BZ_API()
262 s->ftab = BZALLOC( 65537 * sizeof(UInt32) ); in BZ_API()
284 s->ptr = (UInt32*)s->arr1; in BZ_API()
309 t += ( n * sizeof(UInt32) ); in BZ_API()
311 t += ( (n+BZ_N_OVERSHOOT) * sizeof(UInt32) ); in BZ_API()
313 t += ( 65537 * sizeof(UInt32) ); in BZ_API()
340 s->ptr = (UInt32*)s->arr1; in BZ_API()
401 UInt32 zchh = (UInt32)(zchh0); \
441 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) ); in copy_input_until_stop()
[all …]
H A Dcrctable.c31 UInt32 BZ2_crc32Table[256] = {
H A Dcompress.c74 void bsW ( EState* s, Int32 n, UInt32 v ) in bsW()
84 void bsPutUInt32 ( EState* s, UInt32 u ) in bsPutUInt32()
97 bsW( s, 8, (UInt32)c ); in bsPutUChar()
151 UInt32* ptr = s->ptr; in generateMTFValues()
361 register UInt32 cost01, cost23, cost45; in sendMTFValues()
H A DSolaris.README.txt167 + t += ( n * sizeof(UInt32) );
169 + t += ( (n+BZ_N_OVERSHOOT) * sizeof(UInt32) );
171 + t += ( 65537 * sizeof(UInt32) );
198 + s->ptr = (UInt32*)s->arr1;
621 s->storedCombinedCRC = (s->storedCombinedCRC << 8) | ((UInt32)uc);
/illumos-gate/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/
H A Dkerberos.ldif350 ##### kvno [2] UInt32,
351 ##### mkvno [3] UInt32 OPTIONAL,
452 ##### kvno [2] UInt32,
453 ##### mkvno [3] UInt32 OPTIONAL -- actually kadmin/history key,
503 ##### kvno [0] UInt32,
/illumos-gate/usr/src/lib/fm/topo/libtopo/common/
H A Dtopo_parse.h171 #define UInt32 "uint32" macro
H A Dtopo_2xml.c150 UInt32, Value, vbuf, NULL); in txml_print_prop()
H A Dtopo_xml.c179 } else if (xmlStrcmp(str, (xmlChar *)UInt32) == 0) { in xmlattr_to_type()
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dos.c1403 UInt32 finalTicks;
1509 UInt32 finalTicks;
1688 UInt32 finalTicks;
1689 UInt32 ticks = (((UInt32)ms+16)*3)/50; /* 1/60 sec per tick */