Searched refs:UInt32 (Results 1 - 23 of 23) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/tools/misc/lzma_src/C/
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 cutValu
[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)); \
36 /* #define HASH_ZIP_CALC hashValue = ((cur[0] | ((UInt32)cu
[all...]
H A DLzmaEnc.c34 #define kTopValue ((UInt32)1 << kNumTopBits)
78 UInt32 LzmaEncProps_GetDictSize(const CLzmaEncProps *props2)
95 UInt32 GetPosSlot1(UInt32 pos)
97 UInt32 res;
117 UInt32 k = (1 << ((slotFast >> 1) - 1));
118 UInt32 j;
124 #define BSR2_RET(pos, res) { UInt32 i = 6 + ((kNumLogBits - 1) & \
125 (0 - (((((UInt32)1 << (kNumLogBits + 6)) - 1) - pos) >> 31))); \
146 UInt32 pric
[all...]
H A DLzFind.c10 #define kMaxValForNormalize ((UInt32)0xFFFFFFFF)
13 #define kMaxHistorySize ((UInt32)3 << 30)
28 static int LzInWindow_Create(CMatchFinder *p, UInt32 keepSizeReserv, ISzAlloc *alloc)
30 UInt32 blockSize = p->keepSizeBefore + p->keepSizeAfter + keepSizeReserv;
48 UInt32 MatchFinder_GetNumAvailableBytes(CMatchFinder *p) { return p->streamPos - p->pos; }
50 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue)
75 p->streamPos += (UInt32)size;
124 UInt32 i;
132 UInt32 r = i;
152 static CLzRef* AllocRefs(UInt32 nu
[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 DLzmaEnc.h14 UInt32 dictSize; /* (1 << 12) <= dictSize <= (1 << 27) for 32-bit version
24 UInt32 mc; /* 1 <= mc <= (1 << 30), default = 32 */
31 UInt32 LzmaEncProps_GetDictSize(const CLzmaEncProps *props2);
H A DLzmaDec.c10 #define kTopValue ((UInt32)1 << kNumTopBits)
111 #define LzmaProps_GetNumProbs(p) ((UInt32)LZMA_BASE_SIZE + (LZMA_LIT_SIZE << ((p)->lc + (p)->lp)))
143 UInt32 rep0 = p->reps[0], rep1 = p->reps[1], rep2 = p->reps[2], rep3 = p->reps[3];
152 UInt32 processedPos = p->processedPos;
153 UInt32 checkDicSize = p->checkDicSize;
157 UInt32 range = p->range;
158 UInt32 code = p->code;
163 UInt32 bound;
238 UInt32 distance;
304 UInt32 distanc
[all...]
H A DTypes.h53 typedef unsigned long UInt32; typedef
56 typedef unsigned int UInt32; typedef
80 typedef UInt32 SizeT;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/bzip2/
H A Dbzlib_private.h45 typedef unsigned int UInt32; typedef
155 extern UInt32 BZ2_crc32Table[256];
207 UInt32 avail_in_expect;
210 UInt32* arr1;
211 UInt32* arr2;
212 UInt32* ftab;
216 UInt32* ptr;
225 UInt32 state_in_ch;
241 UInt32 bsBuff;
245 UInt32 blockCR
[all...]
H A Dblocksort.c32 void fallbackSimpleSort ( UInt32* fmap,
33 UInt32* eclass,
38 UInt32 ec_tmp;
93 void fallbackQSort3 ( UInt32* fmap,
94 UInt32* eclass,
100 UInt32 med, r, r3;
212 void fallbackSort ( UInt32* fmap,
213 UInt32* eclass,
214 UInt32* bhtab,
347 Bool mainGtU ( UInt32 i
[all...]
H A Ddecompress.c47 UInt32 v; \
57 ((UInt32) \
243 s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc);
245 s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc);
247 s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc);
249 s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc);
412 s->tt[nblock] = (UInt32)uc;
426 UInt32 nn;
427 nn = (UInt32)(nextSym - 1);
480 s->tt[nblock] = (UInt32)(
[all...]
H A Dbzlib.c177 s->arr1 = BZALLOC( n * sizeof(UInt32) );
178 s->arr2 = BZALLOC( (n+BZ_N_OVERSHOOT) * sizeof(UInt32) );
179 s->ftab = BZALLOC( 65537 * sizeof(UInt32) );
201 s->ptr = (UInt32*)s->arr1;
262 UInt32 zchh = (UInt32)(zchh0); \
302 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) );
320 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) );
592 UInt32 c_calculatedBlockCRC = s->calculatedBlockCRC;
597 UInt32* c_t
[all...]
H A Dbzip2recover.c51 typedef unsigned int UInt32; typedef
246 bsPutBit ( bs, (((UInt32) c) >> i) & 0x1 );
251 static void bsPutUInt32 ( BitStream* bs, UInt32 c )
309 UInt32 buffHi, buffLo, blockCRC;
H A Dcompress.c73 void bsW ( EState* s, Int32 n, UInt32 v )
83 void bsPutUInt32 ( EState* s, UInt32 u )
96 bsW( s, 8, (UInt32)c );
150 UInt32* ptr = s->ptr;
360 register UInt32 cost01, cost23, cost45;
H A Dcrctable.c31 UInt32 BZ2_crc32Table[256] = {
H A Dbzip2.c165 typedef unsigned int UInt32; typedef
238 void uInt64_from_UInt32s ( UInt64* n, UInt32 lo32, UInt32 hi32 )
279 UInt32 rem, tmp;
334 UInt32 nbytes_in_lo32, nbytes_in_hi32;
335 UInt32 nbytes_out_lo32, nbytes_out_hi32;
1785 if (sizeof(Int32) != 4 || sizeof(UInt32) != 4 ||
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/shared/
H A Dbzip2_inflate.c86 typedef unsigned int UInt32; typedef
176 // extern UInt32 BZ2_crc32Table[256];
311 UInt32 bsBuff;
322 UInt32 tPos;
330 UInt32 *tt;
337 UInt32 storedBlockCRC;
338 UInt32 storedCombinedCRC;
339 UInt32 calculatedBlockCRC;
340 UInt32 calculatedCombinedCRC;
408 ((((UInt32)(
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/modules/
H A Dcharset_macosxfs.c438 UInt32 srcCharsUsed = 0;
439 UInt32 dstCharsUsed = 0;
440 UInt32 result;
528 UInt32 srcCharsUsed=0, dstCharsUsed=0, result;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libogg-1.1.4/include/ogg/
H A Dos_types.h66 typedef UInt32 ogg_uint32_t;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-python/
H A Davahi-bookmarks.in70 browser = dbus.Interface(self.bus.get_object(avahi.DBUS_NAME, self.server.ServiceBrowserNew(avahi.IF_UNSPEC, avahi.PROTO_UNSPEC, stype, domain, dbus.UInt32(0))), avahi.DBUS_INTERFACE_SERVICE_BROWSER)
119 interface, protocol, name, type, domain, host, aprotocol, address, port, txt, flags = self.server.ResolveService(interface, protocol, name, type, domain, avahi.PROTO_UNSPEC, dbus.UInt32(0))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-python/avahi-discover/
H A Davahi-discover.in74 self.server.ResolveService( int(interface), int(protocol), name, stype, domain, avahi.PROTO_UNSPEC, dbus.UInt32(0), reply_handler=self.service_resolved, error_handler=self.print_error)
164 b = dbus.Interface(self.bus.get_object(avahi.DBUS_NAME, self.server.ServiceBrowserNew(interface, protocol, stype, domain, dbus.UInt32(0))), avahi.DBUS_INTERFACE_SERVICE_BROWSER)
181 b = dbus.Interface(self.bus.get_object(avahi.DBUS_NAME, self.server.ServiceTypeBrowserNew(interface, protocol, domain, dbus.UInt32(0))), avahi.DBUS_INTERFACE_SERVICE_TYPE_BROWSER)
261 db = dbus.Interface(self.bus.get_object(avahi.DBUS_NAME, self.server.DomainBrowserNew(avahi.IF_UNSPEC, avahi.PROTO_UNSPEC, "", avahi.DOMAIN_BROWSER_BROWSE, dbus.UInt32(0))), avahi.DBUS_INTERFACE_DOMAIN_BROWSER)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/MacOS/GetHTTPS.src/
H A DMacSocket.cpp1425 *((UInt32 *) (theOTOption->value)) = inEnableReuseIP;
1482 UInt32 fIfMTU;
1485 UInt32 fIPSecondaryCount;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/MacOS/GetHTTPS.src/
H A DMacSocket.cpp1425 *((UInt32 *) (theOTOption->value)) = inEnableReuseIP;
1482 UInt32 fIfMTU;
1485 UInt32 fIPSecondaryCount;

Completed in 144 milliseconds