/openbmc/u-boot/lib/bzip2/ |
H A D | bzlib_private.h | 88 typedef unsigned int UInt32; typedef 190 extern UInt32 BZ2_crc32Table[256]; 239 UInt32 avail_in_expect; 242 UInt32* arr1; 243 UInt32* arr2; 244 UInt32* ftab; 248 UInt32* ptr; 257 UInt32 state_in_ch; 273 UInt32 bsBuff; 277 UInt32 blockCRC; [all …]
|
H A D | bzlib_decompress.c | 90 UInt32 v; \ 100 ((UInt32) \ 286 s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc); in BZ2_decompress() 288 s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc); in BZ2_decompress() 290 s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc); in BZ2_decompress() 292 s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc); in BZ2_decompress() 451 s->tt[nblock] = (UInt32)uc; in BZ2_decompress() 465 UInt32 nn; in BZ2_decompress() 466 nn = (UInt32)(nextSym - 1); in BZ2_decompress() 522 s->tt[nblock] = (UInt32)(s->seqToUnseq[uc]); in BZ2_decompress() [all …]
|
H A D | bzlib_blocksort.c | 72 void fallbackSimpleSort ( UInt32* fmap, in fallbackSimpleSort() 73 UInt32* eclass, in fallbackSimpleSort() 78 UInt32 ec_tmp; in fallbackSimpleSort() 133 void fallbackQSort3 ( UInt32* fmap, in fallbackQSort3() 134 UInt32* eclass, in fallbackQSort3() 140 UInt32 med, r, r3; in fallbackQSort3() 252 void fallbackSort ( UInt32* fmap, in fallbackSort() 253 UInt32* eclass, in fallbackSort() 254 UInt32* bhtab, in fallbackSort() 387 Bool mainGtU ( UInt32 i1, in mainGtU() [all …]
|
H A D | bzlib.c | 228 s->arr1 = BZALLOC( n * sizeof(UInt32) ); in BZ_API() 229 s->arr2 = BZALLOC( (n+BZ_N_OVERSHOOT) * sizeof(UInt32) ); in BZ_API() 230 s->ftab = BZALLOC( 65537 * sizeof(UInt32) ); in BZ_API() 252 s->ptr = (UInt32*)s->arr1; in BZ_API() 313 UInt32 zchh = (UInt32)(zchh0); \ 353 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) ); in copy_input_until_stop() 371 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) ); in copy_input_until_stop() 637 UInt32 c_calculatedBlockCRC = s->calculatedBlockCRC; in unRLE_obuf_to_output_FAST() 642 UInt32* c_tt = s->tt; in unRLE_obuf_to_output_FAST() 643 UInt32 c_tPos = s->tPos; in unRLE_obuf_to_output_FAST() [all …]
|
H A D | bzlib_crctable.c | 72 UInt32 BZ2_crc32Table[256] = {
|
H A D | bzlib_compress.c | 113 void bsW ( EState* s, Int32 n, UInt32 v ) in bsW() 123 void bsPutUInt32 ( EState* s, UInt32 u ) in bsPutUInt32() 136 bsW( s, 8, (UInt32)c ); in bsPutUChar() 190 UInt32* ptr = s->ptr; in generateMTFValues() 401 register UInt32 cost01, cost23, cost45; in sendMTFValues()
|
/openbmc/u-boot/lib/lzma/ |
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 | 12 #define kTopValue ((UInt32)1 << kNumTopBits) 113 #define LzmaProps_GetNumProbs(p) ((UInt32)LZMA_BASE_SIZE + (LZMA_LIT_SIZE << ((p)->lc + (p)->lp))) 139 UInt32 rep0 = p->reps[0], rep1 = p->reps[1], rep2 = p->reps[2], rep3 = p->reps[3]; in LzmaDec_DecodeReal() 148 UInt32 processedPos = p->processedPos; in LzmaDec_DecodeReal() 149 UInt32 checkDicSize = p->checkDicSize; in LzmaDec_DecodeReal() 153 UInt32 range = p->range; in LzmaDec_DecodeReal() 154 UInt32 code = p->code; in LzmaDec_DecodeReal() 161 UInt32 bound; in LzmaDec_DecodeReal() 241 UInt32 distance; in LzmaDec_DecodeReal() 307 UInt32 distance; in LzmaDec_DecodeReal() [all …]
|
H A D | LzmaTools.c | 67 outSize += (UInt32)(b) << (i * 8); in lzmaBuffToBuffDecompress() 69 outSizeHigh += (UInt32)(b) << ((i - 4) * 8); in lzmaBuffToBuffDecompress() 80 } else if (outSizeHigh != 0 || (UInt32)(SizeT)outSize != outSize) { in lzmaBuffToBuffDecompress()
|
H A D | Types.h | 49 typedef unsigned long UInt32; typedef 52 typedef unsigned int UInt32; typedef 78 typedef UInt32 SizeT;
|
/openbmc/qemu/audio/ |
H A D | coreaudio.m | 42 UInt32 audioDevicePropertyBufferFrameSize; 55 UInt32 size = sizeof(*id); 68 UInt32 size = sizeof(*framerange); 83 static OSStatus coreaudio_get_framesize(AudioDeviceID id, UInt32 *framesize) 85 UInt32 size = sizeof(*framesize); 100 static OSStatus coreaudio_set_framesize(AudioDeviceID id, UInt32 *framesize) 102 UInt32 size = sizeof(*framesize); 120 UInt32 size = sizeof(*d); 135 static OSStatus coreaudio_get_isrunning(AudioDeviceID id, UInt32 *result) 137 UInt32 size = sizeof(*result); [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/hplip/hplip/ |
H A D | 050-fix-glibcisms.patch | 7 @@ -18,10 +18,8 @@ typedef u_int32_t UInt32; 9 //typedef unsigned long UInt32;
|
/openbmc/boost-dbus/test/ |
H A D | avahi.py | 29 browser_path = avahi.ServiceBrowserNew(-1, -1, "_http._tcp", "local", dbus.UInt32(0))
|
/openbmc/phosphor-rest-server/module/obmc/wsgi/apps/ |
H A D | rest_dbus.py | 118 'x': long, 'q': dbus.UInt16, 'u': dbus.UInt32, 122 'x': int, 'q': dbus.UInt16, 'u': dbus.UInt32,
|