HomeSort by relevance Sort by last modified time
    Searched defs:Get8 (Results 1 - 5 of 5) sorted by null

  /external/webrtc/webrtc/base/
byteorder.h 34 inline uint8_t Get8(const void* memory, size_t offset) {
62 return static_cast<uint16_t>((Get8(memory, 0) << 8) | (Get8(memory, 1) << 0));
66 return (static_cast<uint32_t>(Get8(memory, 0)) << 24) |
67 (static_cast<uint32_t>(Get8(memory, 1)) << 16) |
68 (static_cast<uint32_t>(Get8(memory, 2)) << 8) |
69 (static_cast<uint32_t>(Get8(memory, 3)) << 0);
73 return (static_cast<uint64_t>(Get8(memory, 0)) << 56) |
74 (static_cast<uint64_t>(Get8(memory, 1)) << 48) |
75 (static_cast<uint64_t>(Get8(memory, 2)) << 40)
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Ppi/
PiPcd.h 413 EFI_PEI_PCD_PPI_GET_8 Get8;
Pcd.h 821 PCD_PPI_GET8 Get8;
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
PiPcd.h 405 EFI_PCD_PROTOCOL_GET_8 Get8;
Pcd.h 828 PCD_PROTOCOL_GET8 Get8;

Completed in 84 milliseconds