Home
last modified time | relevance | path

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

/external/lzma/C/
DCpuArch.h66 #define GetUi32(p) (*(const UInt32 *)(p)) macro
76 #define GetUi32(p) ( \
82 #define GetUi64(p) (GetUi32(p) | ((UInt64)GetUi32(((const Byte *)(p)) + 4) << 32))
DXzIn.c81 if (crc != GetUi32(buf + size)) in Xz_ReadIndex2()
195 if (GetUi32(buf) != CrcCalc(buf + 4, 6)) in Xz_ReadBackward()
198 indexSize = ((UInt64)GetUi32(buf + 4) + 1) << 2; in Xz_ReadBackward()
DXzDec.c87 UInt32 v = GetUi32(props); in BraState_SetProps()
486 GetUi32(buf + XZ_SIG_SIZE + XZ_STREAM_FLAGS_SIZE)) in Xz_ParseHeader()
494 indexSize == (((UInt64)GetUi32(buf + 4) + 1) << 2) && in Xz_CheckFooter()
495 (GetUi32(buf) == CrcCalc(buf + 4, 6) && in Xz_CheckFooter()
511 if (CrcCalc(header, headerSize) != GetUi32(header + headerSize)) in XzBlock_Parse()
818 if (CRC_GET_DIGEST(p->crc) != GetUi32(p->buf)) in XzUnpacker_Code()
D7zDec.c85 UInt32 memSize = GetUi32(coder->Props.data + 1); in SzDecodePpmd()
D7zIn.c1240 nextHeaderCRC = GetUi32(header + 28); in SzArEx_Open2()
1244 if (CrcCalc(header + 12, 20) != GetUi32(header + 8)) in SzArEx_Open2()
/external/lzma/CPP/7zip/Archive/
DLzmaHandler.cpp28 UInt32 dicSize = GetUi32(p); in CheckDicSize()
48 UInt32 GetDicSize() const { return GetUi32(LzmaProps + 1); } in GetDicSize()
/external/lzma/CPP/7zip/Archive/7z/
D7zHandler.cpp284 UInt32 dicSize = GetUi32((const Byte *)coder.Props + 1); in GetProperty()
299 UInt32 dicSize = GetUi32((const Byte *)coder.Props + 1); in GetProperty()
D7zIn.cpp15 #define Get32(p) GetUi32(p)
288 return CrcCalc(p + 12, 20) == GetUi32(p + 8); in TestSignature()
298 if (CrcCalc(p + 12, 20) == GetUi32(p + 8)) in TestSignature2()
/external/lzma/C/Util/SfxSetup/
DSfxSetup.c153 if (CrcCalc(buf + pos + 12, 20) == GetUi32(buf + pos + 8)) in FindSignature()