HomeSort by relevance Sort by last modified time
    Searched refs:Set8 (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/webrtc/base/
byteorder.h 30 inline void Set8(void* memory, size_t offset, uint8 v) {
39 Set8(memory, 0, static_cast<uint8>(v >> 8));
40 Set8(memory, 1, static_cast<uint8>(v >> 0));
44 Set8(memory, 0, static_cast<uint8>(v >> 24));
45 Set8(memory, 1, static_cast<uint8>(v >> 16));
46 Set8(memory, 2, static_cast<uint8>(v >> 8));
47 Set8(memory, 3, static_cast<uint8>(v >> 0));
51 Set8(memory, 0, static_cast<uint8>(v >> 56));
52 Set8(memory, 1, static_cast<uint8>(v >> 48));
53 Set8(memory, 2, static_cast<uint8>(v >> 40))
    [all...]
byteorder_unittest.cc 21 Set8(buf, 0, 0xfb);
22 Set8(buf, 1, 0x12);
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
rtputils.cc 69 rtc::Set8(data, offset, value);
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
channel_unittest.cc 434 rtc::Set8(const_cast<char*>(data.c_str()), 1, pl_type);
    [all...]

Completed in 764 milliseconds