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

12

/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_ppmd7_private.h30 UInt32
51 UInt32 Size;
52 UInt32 GlueCount;
54 UInt32 AlignOffset;
68 UInt32 (*GetThreshold)(void *p, UInt32 total);
69 void (*Decode)(void *p, UInt32 start, UInt32 size);
70 UInt32 (*DecodeBit)(void *p, UInt32 size
[all...]
H A Darchive_ppmd8_private.h21 UInt32
60 UInt32 Size;
61 UInt32 GlueCount;
63 UInt32 AlignOffset;
67 UInt32 Range;
68 UInt32 Code;
69 UInt32 Low;
79 UInt32 Stamps[PPMD_NUM_INDEXES];
87 Bool Ppmd8_Alloc(CPpmd8 *p, UInt32 size);
117 CPpmd_See *Ppmd8_MakeEscFreq(CPpmd8 *p, unsigned numMasked, UInt32 *scal
[all...]
H A Darchive_ppmd_private.h26 typedef unsigned long UInt32; typedef
29 typedef unsigned int UInt32; typedef
127 UInt32
135 UInt32
143 UInt32
H A Darchive_ppmd7.c32 #define U2B(nu) ((UInt32)(nu) * UNIT_SIZE)
39 #define REF(ptr) ((UInt32)((Byte *)(ptr) - (p)->Base))
60 UInt32
83 UInt32 *scale);
125 static Bool Ppmd7_Alloc(CPpmd7 *p, UInt32 size)
217 UInt32 nu = (UInt32)node->NU;
264 UInt32 numBytes = U2B(I2U(indx));
266 return ((UInt32)(p->UnitsStart - p->Text) > numBytes) ? (p->UnitsStart -= numBytes) : (NULL);
277 UInt32 numByte
[all...]
H A Darchive_ppmd8.c17 #define U2B(nu) ((UInt32)(nu) * UNIT_SIZE)
24 #define REF(ptr) ((UInt32)((Byte *)(ptr) - (p)->Base))
45 UInt32
51 UInt32 Stamp;
53 UInt32 NU;
99 Bool Ppmd8_Alloc(CPpmd8 *p, UInt32 size)
219 UInt32 numBytes = U2B(I2U(indx));
221 return ((UInt32)(p->UnitsStart - p->Text) > numBytes) ? (p->UnitsStart -= numBytes) : (NULL);
232 UInt32 numBytes;
236 if (numBytes <= (UInt32)(
[all...]
/freebsd-11-stable/contrib/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;
205 #define SET_BH(zz) bhtab[(zz) >> 5] |= ((UInt32)1 << ((zz) & 31))
206 #define CLEAR_BH(zz) bhtab[(zz) >> 5] &= ~((UInt32)1 << ((zz) & 31))
207 #define ISSET_BH(zz) (bhtab[(zz) >> 5] & ((UInt32)1 << ((zz) & 31)))
212 void fallbackSort ( UInt32* fma
[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);
418 s->tt[nblock] = (UInt32)uc;
432 UInt32 nn;
433 nn = (UInt32)(nextSym - 1);
486 s->tt[nblock] = (UInt32)(
[all...]
H A Dbzlib.c183 s->arr1 = BZALLOC( n * sizeof(UInt32) );
184 s->arr2 = BZALLOC( (n+BZ_N_OVERSHOOT) * sizeof(UInt32) );
185 s->ftab = BZALLOC( 65537 * sizeof(UInt32) );
207 s->ptr = (UInt32*)s->arr1;
268 UInt32 zchh = (UInt32)(zchh0); \
308 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) );
326 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) );
599 UInt32 c_calculatedBlockCRC = s->calculatedBlockCRC;
604 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 ||
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeIndex.cpp45 {"unsigned*", SimpleTypeKind::UInt32},
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h402 UInt32, enumerator in enum:llvm::pdb::PDB_Checksum::PDB_StackFrameType::PDB_MemoryType::PDB_BuiltinType::PDB_MemberAccess::PDB_VariantType
434 explicit Variant(uint32_t V) : Type(PDB_VariantType::UInt32) {
435 Value.UInt32 = V;
461 uint32_t UInt32; member in union:llvm::pdb::PDB_Checksum::PDB_StackFrameType::PDB_MemoryType::PDB_BuiltinType::PDB_MemberAccess::Variant::__anon1807
483 VARIANT_EQUAL_CASE(UInt32)
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeIndex.h48 UInt32 = 0x0075, // 32 bit unsigned int member in class:llvm::codeview::SimpleTypeKind
173 static TypeIndex UInt32() { return TypeIndex(SimpleTypeKind::UInt32); } function in class:llvm::codeview::SimpleTypeMode::TypeIndex
/freebsd-11-stable/crypto/heimdal/lib/hx509/
H A Dks_keychain.c55 UInt32 attrFormat = 0;
470 UInt32 attrFormat[1] = { 0 };
475 UInt32 len;
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dmacos_keychain.c130 UInt32 length;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBExtras.cpp36 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt32, OS)
364 case PDB_VariantType::UInt32:
365 OS << Value.Value.UInt32;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMsgPackWriter.cpp79 EW.write(FirstByte::UInt32);
H A DMsgPackReader.cpp64 case FirstByte::UInt32:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DSymbolCache.cpp45 {codeview::SimpleTypeKind::UInt32, PDB_BuiltinType::UInt, 4},
H A DNativeTypeEnum.cpp222 case SimpleTypeKind::UInt32:
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp91 case PDB_VariantType::UInt32:
1143 case PDB_VariantType::UInt32:
1144 raw_value = v.Value.UInt32;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp738 case SimpleTypeKind::UInt32:
782 case SimpleTypeKind::UInt32:

Completed in 145 milliseconds

12