Home
last modified time | relevance | path

Searched refs:GetUi32 (Results 1 – 19 of 19) sorted by relevance

/external/lzma/C/
DAes.c152 w[i] = GetUi32(key); in Aes_SetKey_Enc()
235 p[i] = GetUi32(iv + i * 4); in AesCbc_Init()
242 p[0] ^= GetUi32(data); in AesCbc_Encode()
243 p[1] ^= GetUi32(data + 4); in AesCbc_Encode()
244 p[2] ^= GetUi32(data + 8); in AesCbc_Encode()
245 p[3] ^= GetUi32(data + 12); in AesCbc_Encode()
261 in[0] = GetUi32(data); in AesCbc_Decode()
262 in[1] = GetUi32(data + 4); in AesCbc_Decode()
263 in[2] = GetUi32(data + 8); in AesCbc_Decode()
264 in[3] = GetUi32(data + 12); in AesCbc_Decode()
DCpuArch.h202 #define GetUi32(p) (*(const UInt32 *)(const void *)(p)) macro
215 #define GetUi32(p) ( \
221 #define GetUi64(p) (GetUi32(p) | ((UInt64)GetUi32(((const Byte *)(p)) + 4) << 32))
DBra.c31 UInt32 v = GetUi32(p - 4); in ARM_Convert()
52 UInt32 v = GetUi32(p - 4); in ARM_Convert()
DXzIn.c90 if (crc != GetUi32(buf + size)) in Xz_ReadIndex2()
205 if (GetUi32(buf) != CrcCalc(buf + 4, 6)) in Xz_ReadBackward()
208 indexSize = ((UInt64)GetUi32(buf + 4) + 1) << 2; in Xz_ReadBackward()
DBraIA64.c28 unsigned raw = GetUi32(p); in IA64_Convert()
DBcj2Enc.c178 UInt32 relatVal = GetUi32(src); in Bcj2Enc_Encode_2()
207 UInt32 relatVal = GetUi32(src); in Bcj2Enc_Encode_2()
D7zArcIn.c191 dest = GetUi32(sd.Data); SKIP_DATA2(sd, 4);
1077 vals[i].Low = GetUi32(sd.Data); in ReadTime()
1078 vals[i].High = GetUi32(sd.Data + 4); in ReadTime()
1407 p->CRCs.Vals[i] = GetUi32(digestsVals + (size_t)digestsValsIndex * 4); in SzReadHeader2()
1423 p->CRCs.Vals[i] = GetUi32(digestsVals + (size_t)digestsValsIndex * 4); in SzReadHeader2()
1527 nextHeaderCRC = GetUi32(header + 28); in SzArEx_Open2()
1531 if (CrcCalc(header + 12, 20) != GetUi32(header + 8)) in SzArEx_Open2()
DXzDec.c111 UInt32 v = GetUi32(props); in BraState_SetProps()
759 GetUi32(buf + XZ_SIG_SIZE + XZ_STREAM_FLAGS_SIZE)) in Xz_ParseHeader()
766 return indexSize == (((UInt64)GetUi32(buf + 4) + 1) << 2) in Xz_CheckFooter()
767 && GetUi32(buf) == CrcCalc(buf + 4, 6) in Xz_CheckFooter()
813 if (CrcCalc(header, headerSize) != GetUi32(header + headerSize)) in XzBlock_Parse()
1280 if (CRC_GET_DIGEST(p->crc) != GetUi32(p->buf)) in XzUnpacker_Code()
D7zDec.c92 UInt32 memSize = GetUi32(props + 1); in SzDecodePpmd()
/external/lzma/CPP/7zip/Archive/7z/
D7zUpdate.cpp69 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()
271 subChunkSize = GetUi32(buf + pos + 4); in Parse_WAV()
[all …]
D7zHandler.cpp418 UInt32 dicSize = GetUi32((const Byte *)props + 1); in SetMethodToProp()
456 GetStringForSizeValue(dest, GetUi32(props + 1)); in SetMethodToProp()
D7zIn.cpp21 #define Get32(p) GetUi32(p)
730 UInt32 dicSize = GetUi32(_inByteBack->GetPtr() + 1); in ReadUnpackInfo()
/external/lzma/CPP/Common/
DIntToString.cpp172 ConvertUInt32ToHex8Digits(GetUi32(g ), s); s += 8; *s++ = '-'; in RawLeGuidToString()
/external/lzma/CPP/7zip/Compress/
DPpmdDecoder.cpp37 UInt32 memSize = GetUi32(props + 1); in SetDecoderProperties2()
/external/lzma/CPP/7zip/Archive/
DLzmaHandler.cpp29 UInt32 dicSize = GetUi32(p); in CheckDicSize()
58 UInt32 GetDicSize() const { return GetUi32(LzmaProps + 1); } in GetDicSize()
/external/lzma/CPP/Windows/
DFileLink.cpp72 #define Get32(p) GetUi32(p)
/external/lzma/CPP/7zip/UI/Common/
DPropIDUtils.cpp18 #define Get32(x) GetUi32(x)
DBench.cpp1477 sum ^= GetUi32(hash + j); in CrcBig()
/external/lzma/C/Util/SfxSetup/
DSfxSetup.c154 if (CrcCalc(buf + pos + 12, 20) == GetUi32(buf + pos + 8)) in FindSignature()