Searched refs:GetUi32 (Results 1 – 21 of 21) sorted by relevance
/third_party/lzma/C/ |
D | Aes.c | 209 w[i] = GetUi32(key); in Aes_SetKey_Enc() 304 p[i] = GetUi32(iv + i * 4); in AesCbc_Init() 311 p[0] ^= GetUi32(data); in AesCbc_Encode() 312 p[1] ^= GetUi32(data + 4); in AesCbc_Encode() 313 p[2] ^= GetUi32(data + 8); in AesCbc_Encode() 314 p[3] ^= GetUi32(data + 12); in AesCbc_Encode() 330 in[0] = GetUi32(data); in AesCbc_Decode() 331 in[1] = GetUi32(data + 4); in AesCbc_Decode() 332 in[2] = GetUi32(data + 8); in AesCbc_Decode() 333 in[3] = GetUi32(data + 12); in AesCbc_Decode()
|
D | CpuArch.h | 269 #define GetUi32(p) (*(const UInt32 *)(const void *)(p)) macro 286 #define GetUi32(p) ( \ 307 #define GetUi64(p) (GetUi32(p) | ((UInt64)GetUi32(((const Byte *)(p)) + 4) << 32))
|
D | Bra.c | 31 UInt32 v = GetUi32(p - 4); in ARM_Convert() 52 UInt32 v = GetUi32(p - 4); in ARM_Convert()
|
D | XzIn.c | 91 if (crc != GetUi32(buf + size)) in Xz_ReadIndex2() 210 if (GetUi32(buf_ptr) != CrcCalc(buf + 4, 6)) in Xz_ReadBackward() 214 indexSize = ((UInt64)GetUi32(buf + 4) + 1) << 2; in Xz_ReadBackward()
|
D | BraIA64.c | 28 unsigned raw = GetUi32(p); in IA64_Convert()
|
D | Bcj2Enc.c | 178 UInt32 relatVal = GetUi32(src); in Bcj2Enc_Encode_2() 207 UInt32 relatVal = GetUi32(src); in Bcj2Enc_Encode_2()
|
D | 7zArcIn.c | 193 dest = GetUi32(sd.Data); SKIP_DATA2(sd, 4); 1083 vals[i].Low = GetUi32(sd.Data); in ReadTime() 1084 vals[i].High = GetUi32(sd.Data + 4); in ReadTime() 1415 p->CRCs.Vals[i] = GetUi32(digestsVals + (size_t)digestsValsIndex * 4); in SzReadHeader2() 1431 p->CRCs.Vals[i] = GetUi32(digestsVals + (size_t)digestsValsIndex * 4); in SzReadHeader2() 1535 nextHeaderCRC = GetUi32(header + 28); in SzArEx_Open2() 1539 if (CrcCalc(header + 12, 20) != GetUi32(header + 8)) in SzArEx_Open2()
|
D | XzDec.c | 111 UInt32 v = GetUi32(props); in BraState_SetProps() 760 GetUi32(buf + XZ_SIG_SIZE + XZ_STREAM_FLAGS_SIZE)) in Xz_ParseHeader() 767 return indexSize == (((UInt64)GetUi32(buf + 4) + 1) << 2) in Xz_CheckFooter() 768 && GetUi32(buf) == CrcCalc(buf + 4, 6) in Xz_CheckFooter() 815 if (CrcCalc(header, headerSize) != GetUi32(header + headerSize)) in XzBlock_Parse() 1283 if (CRC_GET_DIGEST(p->crc) != GetUi32(ptr)) in XzUnpacker_Code()
|
D | 7zDec.c | 95 UInt32 memSize = GetUi32(props + 1); in SzDecodePpmd()
|
D | LzFindMt.c | 291 #define GetUi24hi_from32(p) ((UInt32)GetUi32(p) >> 8)
|
/third_party/lzma/CPP/7zip/Archive/7z/ |
D | 7zUpdate.cpp | 69 peOffset = GetUi32(buf + 0x3C); in Parse_EXE() 73 if (GetUi32(p) != PE_SIG) in Parse_EXE() 128 static UInt32 Get32(const Byte *p, BoolInt be) { if (be) return GetBe32(p); return GetUi32(p); } in Get32() 139 if (GetUi32(buf) != ELF_SIG) in Parse_ELF() 204 switch (GetUi32(buf)) in Parse_MACH() 248 if (GetUi32(buf + 0) != RIFF_SIG || in Parse_WAV() 249 GetUi32(buf + 8) != 0x45564157 || // WAVE in Parse_WAV() 250 GetUi32(buf + 0xC) != WAV_SUBCHUNK_fmt) in Parse_WAV() 252 subChunkSize = GetUi32(buf + 0x10); in Parse_WAV() 273 subChunkSize = GetUi32(buf + pos + 4); in Parse_WAV() [all …]
|
D | 7zHandler.cpp | 441 UInt32 dicSize = GetUi32((const Byte *)props + 1); in SetMethodToProp() 471 GetStringForSizeValue(dest, GetUi32(props + 1)); in SetMethodToProp()
|
D | 7zIn.cpp | 23 #define Get32(p) GetUi32(p) 758 UInt32 dicSize = GetUi32(_inByteBack->GetPtr() + 1); in ReadUnpackInfo()
|
/third_party/lzma/CPP/Common/ |
D | IntToString.cpp | 171 ConvertUInt32ToHex8Digits(GetUi32(g ), s); s += 8; *s++ = '-'; in RawLeGuidToString()
|
/third_party/lzma/CPP/7zip/Compress/ |
D | PpmdDecoder.cpp | 37 UInt32 memSize = GetUi32(props + 1); in SetDecoderProperties2()
|
/third_party/lzma/CPP/7zip/Archive/ |
D | LzmaHandler.cpp | 29 UInt32 dicSize = GetUi32(p); in CheckDicSize() 58 UInt32 GetDicSize() const { return GetUi32(LzmaProps + 1); } in GetDicSize()
|
/third_party/lzma/CPP/Windows/ |
D | SystemInfo.cpp | 586 UInt32 high = GetUi32(buf); in Fill() 592 PrintHex(Microcode, GetUi32(buf + 4)); in Fill()
|
D | FileLink.cpp | 85 #define Get32(p) GetUi32(p)
|
/third_party/lzma/CPP/7zip/UI/Common/ |
D | PropIDUtils.cpp | 19 #define Get32(x) GetUi32(x)
|
D | Bench.cpp | 2219 sum += GetUi32(hash + j); in CrcProcess()
|
/third_party/lzma/C/Util/SfxSetup/ |
D | SfxSetup.c | 154 if (CrcCalc(buf + pos + 12, 20) == GetUi32(buf + pos + 8)) in FindSignature()
|