Home
last modified time | relevance | path

Searched refs:GetBe32 (Results 1 – 6 of 6) sorted by relevance

/external/lzma/C/
DCpuArch.h256 #define GetBe32(p) _byteswap_ulong(*(const UInt32 *)(const Byte *)(p)) macro
266 #define GetBe32(p) __builtin_bswap32(*(const UInt32 *)(const Byte *)(p))
273 #define GetBe32(p) ( \
279 #define GetBe64(p) (((UInt64)GetBe32(p) << 32) | GetBe32(((const Byte *)(p)) + 4))
DSha256.c127 W[j ] = GetBe32(ccc); in Sha256_WriteByteBlock()
128 W[j + 1] = GetBe32(ccc + 4); in Sha256_WriteByteBlock()
129 W[j + 2] = GetBe32(ccc + 8); in Sha256_WriteByteBlock()
130 W[j + 3] = GetBe32(ccc + 12); in Sha256_WriteByteBlock()
DBra.c172 UInt32 v = GetBe32(p - 4); in PPC_Convert()
215 UInt32 v = GetBe32(p - 4); in SPARC_Convert()
DBcj2.c225 val = GetBe32(cur); in Bcj2Dec_Decode()
/external/lzma/CPP/7zip/UI/Common/
DPropIDUtils.cpp356 UInt32 authority = GetBe32(p + 4); in ParseSid()
/external/lzma/CPP/7zip/Archive/7z/
D7zUpdate.cpp128 static UInt32 Get32(const Byte *p, BoolInt be) { if (be) return GetBe32(p); return GetUi32(p); } in Get32()