/titanic_44/usr/src/common/lzma/ |
H A D | LzFind.h | 9 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 D | LzFind.c | 15 #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 D | LzmaEnc.c | 39 #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 D | LzHash.h | 15 #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 D | LzmaDec.h | 14 #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 D | LzmaDec.c | 16 #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 D | LzmaEnc.h | 19 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 D | Types.h | 56 typedef unsigned long UInt32; typedef 59 typedef unsigned int UInt32; typedef 83 typedef UInt32 SizeT;
|
/titanic_44/usr/src/common/bzip2/ |
H A D | bzlib_private.h | 49 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 D | decompress.c | 47 UInt32 v; \ 57 ((UInt32) \ 243 s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc); in BZ2_decompress() 245 s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc); in BZ2_decompress() 247 s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc); in BZ2_decompress() 249 s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc); in BZ2_decompress() 412 s->tt[nblock] = (UInt32)uc; in BZ2_decompress() 426 UInt32 nn; in BZ2_decompress() 427 nn = (UInt32)(nextSym - 1); in BZ2_decompress() 480 s->tt[nblock] = (UInt32)(s->seqToUnseq[uc]); in BZ2_decompress() [all …]
|
H A D | blocksort.c | 32 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 D | bzlib.c | 255 s->arr1 = BZALLOC( n * sizeof(UInt32) ); in BZ_API() 256 s->arr2 = BZALLOC( (n+BZ_N_OVERSHOOT) * sizeof(UInt32) ); in BZ_API() 257 s->ftab = BZALLOC( 65537 * sizeof(UInt32) ); in BZ_API() 279 s->ptr = (UInt32*)s->arr1; in BZ_API() 304 t += ( n * sizeof(UInt32) ); in BZ_API() 306 t += ( (n+BZ_N_OVERSHOOT) * sizeof(UInt32) ); in BZ_API() 308 t += ( 65537 * sizeof(UInt32) ); in BZ_API() 335 s->ptr = (UInt32*)s->arr1; in BZ_API() 424 UInt32 zchh = (UInt32)(zchh0); \ 464 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) ); in copy_input_until_stop() [all …]
|
H A D | crctable.c | 31 UInt32 BZ2_crc32Table[256] = {
|
H A D | compress.c | 74 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 D | Solaris.README.txt | 167 + 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);
|
/titanic_44/usr/src/lib/fm/topo/libtopo/common/ |
H A D | topo_parse.h | 167 #define UInt32 "uint32" macro
|
H A D | topo_2xml.c | 129 (void) snprintf(tbuf, 10, "%s", UInt32); in txml_print_prop()
|
H A D | topo_xml.c | 162 } else if (xmlStrcmp(str, (xmlChar *)UInt32) == 0) { in xmlattr_to_type()
|
/titanic_44/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/ |
H A D | kerberos.ldif | 350 ##### 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,
|
/titanic_44/usr/src/lib/libsqlite/src/ |
H A D | os.c | 1406 UInt32 finalTicks; 1512 UInt32 finalTicks; 1691 UInt32 finalTicks; 1692 UInt32 ticks = (((UInt32)ms+16)*3)/50; /* 1/60 sec per tick */
|