Searched refs:Set8 (Results 1 - 5 of 5) sorted by relevance
/external/webrtc/webrtc/base/ |
H A D | byteorder.h | 30 inline void Set8(void* memory, size_t offset, uint8_t v) { function in namespace:rtc 39 Set8(memory, 0, static_cast<uint8_t>(v >> 8)); 40 Set8(memory, 1, static_cast<uint8_t>(v >> 0)); 44 Set8(memory, 0, static_cast<uint8_t>(v >> 24)); 45 Set8(memory, 1, static_cast<uint8_t>(v >> 16)); 46 Set8(memory, 2, static_cast<uint8_t>(v >> 8)); 47 Set8(memory, 3, static_cast<uint8_t>(v >> 0)); 51 Set8(memory, 0, static_cast<uint8_t>(v >> 56)); 52 Set8(memory, 1, static_cast<uint8_t>(v >> 48)); 53 Set8(memor [all...] |
H A D | byteorder_unittest.cc | 21 Set8(buf, 0, 0xfb); 22 Set8(buf, 1, 0x12);
|
/external/webrtc/talk/media/base/ |
H A D | rtputils.cc | 69 rtc::Set8(data, offset, value);
|
/external/webrtc/talk/media/webrtc/ |
H A D | webrtcvideoengine2_unittest.cc | 2956 rtc::Set8(data, 1, payload_type);
|
/external/webrtc/talk/session/media/ |
H A D | channel_unittest.cc | 376 rtc::Set8(const_cast<char*>(data.c_str()), 1,
|
Completed in 86 milliseconds