/openbmc/u-boot/lib/bzip2/ |
H A D | bzlib_private.h | 242 UInt32* arr1; 243 UInt32* arr2; 244 UInt32* ftab; 248 UInt32* ptr; 257 UInt32 state_in_ch; 273 UInt32 bsBuff; 277 UInt32 blockCRC; 278 UInt32 combinedCRC; 390 UInt32 bsBuff; 401 UInt32 tPos; [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 | 78 UInt32 ec_tmp; in fallbackSimpleSort() 140 UInt32 med, r, r3; in fallbackQSort3() 387 Bool mainGtU ( UInt32 i1, in mainGtU() 388 UInt32 i2, in mainGtU() 391 UInt32 nblock, in mainGtU() 535 UInt32 v; in mainSimpleSort() 661 void mainQSort3 ( UInt32* ptr, in mainQSort3() 791 void mainSort ( UInt32* ptr, in mainSort() 794 UInt32* ftab, in mainSort() 1073 UInt32* ptr = s->ptr; in BZ2_blockSort() [all …]
|
H A D | bzlib_crctable.c | 72 UInt32 BZ2_crc32Table[256] = {
|
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_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 | 153 UInt32 range = p->range; in LzmaDec_DecodeReal() 154 UInt32 code = p->code; in LzmaDec_DecodeReal() 161 UInt32 bound; in LzmaDec_DecodeReal() 307 UInt32 distance; in LzmaDec_DecodeReal() 346 UInt32 t; in LzmaDec_DecodeReal() 516 UInt32 code = p->code; in LzmaDec_TryDummy() 524 UInt32 bound; in LzmaDec_TryDummy() 706 …p->code = ((UInt32)data[1] << 24) | ((UInt32)data[2] << 16) | ((UInt32)data[3] << 8) | ((UInt32)da… in LzmaDec_InitRc() 736 UInt32 i; in LzmaDec_InitStateReal() 926 UInt32 dicSize; in LzmaProps_Decode() [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/openbmc/meta-openembedded/meta-oe/recipes-extended/p7zip/files/ |
H A D | CVE-2018-5996.patch | 63 STDMETHODIMP CDecoder::SetDecoderProperties2(const Byte *data, UInt32 size) 74 UInt32 ReadBits(int numBits); 75 HRESULT CopyBlock(UInt32 distance, UInt32 len); 80 @@ -80,7 +80,8 @@ static const UInt32 kHistorySize = 1 << 20; 81 static const UInt32 kWindowReservSize = (1 << 22) + 256; 90 @@ -100,6 +101,8 @@ UInt32 CDecoder::ReadBits(unsigned numBits) { return m_InBitStream.ReadBits(numB 129 UInt32 ReadBits(unsigned numBits); 212 UInt32 _lastFilter; 220 UInt32 PrevAlignCount;
|
H A D | change_numMethods_from_bool_to_unsigned.patch | 34 if (methodMask & ((UInt32)1 << i))
|
/openbmc/qemu/audio/ |
H A D | coreaudio.m | 42 UInt32 audioDevicePropertyBufferFrameSize; 55 UInt32 size = sizeof(*id); 68 UInt32 size = sizeof(*framerange); 85 UInt32 size = sizeof(*framesize); 102 UInt32 size = sizeof(*framesize); 120 UInt32 size = sizeof(*d); 137 UInt32 size = sizeof(*result); 309 UInt32 frameCount, pending_frames; 474 UInt32 isrunning; 504 UInt32 isrunning; [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,
|