Home
last modified time | relevance | path

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

/external/lzma/C/
DCpuArch.h151 #define GetBe32(p) _byteswap_ulong(*(const UInt32 *)(const Byte *)(p)) macro
158 #define GetBe32(p) __builtin_bswap32(*(const UInt32 *)(const Byte *)(p))
165 #define GetBe32(p) ( \
171 #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()
DBcj2.c224 val = GetBe32(cur); in Bcj2Dec_Decode()
/external/lzma/CPP/7zip/UI/Common/
DPropIDUtils.cpp306 UInt32 authority = GetBe32(p + 4); in ParseSid()
/external/lzma/CPP/7zip/Archive/7z/
D7zUpdate.cpp128 static UInt32 Get32(const Byte *p, Bool be) { if (be) return GetBe32(p); return GetUi32(p); } in Get32()