/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_ppmd7_private.h | 30 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 size0); 76 UInt32 Range; 77 UInt32 Code; 78 UInt32 Low; [all …]
|
H A D | archive_ppmd8_private.h | 21 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 *scale); [all …]
|
H A D | archive_ppmd7.c | 32 #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) in Ppmd7_Alloc() 217 UInt32 nu = (UInt32)node->NU; in GlueFreeBlocks() 264 UInt32 numBytes = U2B(I2U(indx)); in AllocUnitsRare() 266 return ((UInt32)(p->UnitsStart - p->Text) > numBytes) ? (p->UnitsStart -= numBytes) : (NULL); in AllocUnitsRare() 277 UInt32 numBytes; in AllocUnits() 281 if (numBytes <= (UInt32)(p->HiUnit - p->LoUnit)) in AllocUnits() [all …]
|
H A D | archive_ppmd8.c | 17 #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) in Ppmd8_Alloc() 219 UInt32 numBytes = U2B(I2U(indx)); in AllocUnitsRare() 221 return ((UInt32)(p->UnitsStart - p->Text) > numBytes) ? (p->UnitsStart -= numBytes) : (NULL); in AllocUnitsRare() 232 UInt32 numBytes; in AllocUnits() 236 if (numBytes <= (UInt32)(p->HiUnit - p->LoUnit)) in AllocUnits() [all …]
|
H A D | archive_ppmd_private.h | 26 typedef unsigned long UInt32; typedef 29 typedef unsigned int UInt32; typedef 127 UInt32 135 UInt32 143 UInt32
|
/freebsd/contrib/bzip2/ |
H A D | bzlib_private.h | 45 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 blockCRC; [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() 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* fmap, in fallbackSort() [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() 418 s->tt[nblock] = (UInt32)uc; in BZ2_decompress() 432 UInt32 nn; in BZ2_decompress() 433 nn = (UInt32)(nextSym - 1); in BZ2_decompress() 486 s->tt[nblock] = (UInt32)(s->seqToUnseq[uc]); in BZ2_decompress() [all …]
|
H A D | bzip2recover.c | 51 typedef unsigned int UInt32; typedef 246 bsPutBit ( bs, (((UInt32) c) >> i) & 0x1 ); in bsPutUChar() 251 static void bsPutUInt32 ( BitStream* bs, UInt32 c ) in bsPutUInt32() 309 UInt32 buffHi, buffLo, blockCRC; in main()
|
H A D | bzlib.c | 180 s->arr1 = BZALLOC( n * sizeof(UInt32) ); in BZ_API() 181 s->arr2 = BZALLOC( (n+BZ_N_OVERSHOOT) * sizeof(UInt32) ); in BZ_API() 182 s->ftab = BZALLOC( 65537 * sizeof(UInt32) ); in BZ_API() 204 s->ptr = (UInt32*)s->arr1; in BZ_API() 265 UInt32 zchh = (UInt32)(zchh0); \ 305 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) ); in copy_input_until_stop() 323 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) ); in copy_input_until_stop() 596 UInt32 c_calculatedBlockCRC = s->calculatedBlockCRC; in unRLE_obuf_to_output_FAST() 601 UInt32* c_tt = s->tt; in unRLE_obuf_to_output_FAST() 602 UInt32 c_tPos = s->tPos; in unRLE_obuf_to_output_FAST() [all …]
|
H A D | crctable.c | 31 UInt32 BZ2_crc32Table[256] = {
|
H A D | compress.c | 73 void bsW ( EState* s, Int32 n, UInt32 v ) in bsW() 83 void bsPutUInt32 ( EState* s, UInt32 u ) in bsPutUInt32() 96 bsW( s, 8, (UInt32)c ); in bsPutUChar() 150 UInt32* ptr = s->ptr; in generateMTFValues() 360 register UInt32 cost01, cost23, cost45; in sendMTFValues()
|
H A D | bzip2.c | 165 typedef unsigned int UInt32; typedef 238 void uInt64_from_UInt32s ( UInt64* n, UInt32 lo32, UInt32 hi32 ) in uInt64_from_UInt32s() 279 UInt32 rem, tmp; in uInt64_qrm10() 334 UInt32 nbytes_in_lo32, nbytes_in_hi32; in compressStream() 335 UInt32 nbytes_out_lo32, nbytes_out_hi32; in compressStream() 1785 if (sizeof(Int32) != 4 || sizeof(UInt32) != 4 || in main()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/ |
H A D | PDBTypes.h | 405 UInt32, enumerator 437 explicit Variant(uint32_t V) : Type(PDB_VariantType::UInt32) { in Variant() 438 Value.UInt32 = V; in Variant() 464 uint32_t UInt32; member 478 case UInt32: in isIntegralType() 501 VARIANT_WIDTH(UInt32, 32u) in getBitWidth() 524 VARIANT_APSINT(UInt32, 32u, true) in toAPSInt() 538 case PDB_VariantType::UInt32: in toAPFloat() 568 VARIANT_EQUAL_CASE(UInt32)
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | TypeProperties.td | 195 def : Property<"numElements", UInt32> { 260 def : Property<"numRows", UInt32> { 263 def : Property<"numColumns", UInt32> { 298 def : Property<"regParm", UInt32> { 352 def : Property<"AArch64SMEAttributes", UInt32> { 515 def : Property<"dependence", UInt32> { 765 def : Property<"depth", UInt32> { 768 def : Property<"index", UInt32> { 792 def : Property<"Index", UInt32> { 795 def : Property<"PackIndex", Optional<UInt32>> { [all …]
|
H A D | PropertiesBase.td | 144 def UInt32 : CountPropertyType<"uint32_t">; 273 def : Property<"semantics", UInt32> { 315 def : Property<"semantics", UInt32> { 360 def : Property<"totalLength", UInt32> { 497 def : Property<"dynamicAlloc", UInt32> { 509 def : Property<"callIndex", UInt32> { 513 def : Property<"version", UInt32> { 525 def : Property<"offsetQuantity", UInt32> { 725 def : Property<"index", UInt32> { 728 def : Property<"packIndex", Optional<UInt32>> { [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | TypeIndex.h | 49 UInt32 = 0x0075, // 32 bit unsigned int enumerator 183 static TypeIndex UInt32() { return TypeIndex(SimpleTypeKind::UInt32); } in UInt32() function
|
/freebsd/crypto/heimdal/lib/hx509/ |
H A D | ks_keychain.c | 55 UInt32 attrFormat = 0; in getAttribute() 470 UInt32 attrFormat[1] = { 0 }; in keychain_iter() 475 UInt32 len; in keychain_iter()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
H A D | TypeIndex.cpp | 46 {"unsigned*", SimpleTypeKind::UInt32},
|
H A D | TypeRecordHelpers.cpp | 94 case SimpleTypeKind::UInt32: in getSizeInBytesForTypeIndex()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/ |
H A D | PDBExtras.cpp | 35 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt32, OS) in operator <<() 385 case PDB_VariantType::UInt32: in operator <<() 386 OS << Value.Value.UInt32; in operator <<()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | COFFEmitter.cpp | 595 if (UInt32) in size() 596 Size += sizeof(*UInt32); in size() 612 if (UInt32) in writeAsBinary() 613 OS << binary_le(*UInt32); in writeAsBinary()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | TensorSpec.h | 50 M(uint32_t, UInt32) \
|
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
H A D | MsgPack.def | 58 HANDLE_MP_FIRST_BYTE(0xce, UInt32)
|
/freebsd/contrib/llvm-project/llvm/lib/BinaryFormat/ |
H A D | MsgPackWriter.cpp | 81 EW.write(FirstByte::UInt32); in write()
|