Home
last modified time | relevance | path

Searched refs:LowerBytes (Results 1 – 7 of 7) sorted by relevance

/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Arm/
DUnaligned.c155 UINT16 LowerBytes; in ReadUnaligned32() local
160 LowerBytes = ReadUnaligned16 ((UINT16*) Buffer); in ReadUnaligned32()
163 return (UINT32) (LowerBytes | (HigherBytes << 16)); in ReadUnaligned32()
214 UINT32 LowerBytes; in ReadUnaligned64() local
219 LowerBytes = ReadUnaligned32 ((UINT32*) Buffer); in ReadUnaligned64()
222 return (UINT64) (LowerBytes | LShiftU64 (HigherBytes, 32)); in ReadUnaligned64()
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ipf/
DUnaligned.c152 UINT16 LowerBytes; in ReadUnaligned32() local
157 LowerBytes = ReadUnaligned16 ((UINT16*) Buffer); in ReadUnaligned32()
160 return (UINT32) (LowerBytes | (HigherBytes << 16)); in ReadUnaligned32()
211 UINT32 LowerBytes; in ReadUnaligned64() local
216 LowerBytes = ReadUnaligned32 ((UINT32*) Buffer); in ReadUnaligned64()
219 return (UINT64) (LowerBytes | LShiftU64 (HigherBytes, 32)); in ReadUnaligned64()
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ipf/
DUnaligned.c146 UINT16 LowerBytes; in ReadUnaligned32() local
151 LowerBytes = ReadUnaligned16 ((UINT16*) Buffer); in ReadUnaligned32()
154 return (UINT32) (LowerBytes | (HigherBytes << 16)); in ReadUnaligned32()
205 UINT32 LowerBytes; in ReadUnaligned64() local
210 LowerBytes = ReadUnaligned32 ((UINT32*) Buffer); in ReadUnaligned64()
213 return (UINT64) (LowerBytes | LShiftU64 (HigherBytes, 32)); in ReadUnaligned64()
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
DSwapBytes32.c43 UINT32 LowerBytes; in SwapBytes32() local
46 LowerBytes = (UINT32) SwapBytes16 ((UINT16) Operand); in SwapBytes32()
49 return (LowerBytes << 16 | HigherBytes); in SwapBytes32()
DMath64.c181 UINT64 LowerBytes; in InternalMathSwapBytes64() local
184 LowerBytes = (UINT64) SwapBytes32 ((UINT32) Operand); in InternalMathSwapBytes64()
187 return (LowerBytes << 32 | HigherBytes); in InternalMathSwapBytes64()
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
DSwapBytes32.c38 UINT32 LowerBytes; in SwapBytes32() local
41 LowerBytes = (UINT32) SwapBytes16 ((UINT16) Value); in SwapBytes32()
44 return (LowerBytes << 16 | HigherBytes); in SwapBytes32()
DMath64.c171 UINT64 LowerBytes; in InternalMathSwapBytes64() local
174 LowerBytes = (UINT64) SwapBytes32 ((UINT32) Operand); in InternalMathSwapBytes64()
177 return (LowerBytes << 32 | HigherBytes); in InternalMathSwapBytes64()