Searched refs:Set8 (Results 1 - 1 of 1) sorted by relevance

/external/chromium/third_party/libjingle/source/talk/base/
H A Dbyteorder.h49 inline void Set8(void* memory, size_t offset, uint8 v) { function in namespace:talk_base
57 Set8(memory, 0, static_cast<uint8>(v >> 8));
58 Set8(memory, 1, static_cast<uint8>(v >> 0));
61 Set8(memory, 0, static_cast<uint8>(v >> 24));
62 Set8(memory, 1, static_cast<uint8>(v >> 16));
63 Set8(memory, 2, static_cast<uint8>(v >> 8));
64 Set8(memory, 3, static_cast<uint8>(v >> 0));
67 Set8(memory, 0, static_cast<uint8>(v >> 56));
68 Set8(memory, 1, static_cast<uint8>(v >> 48));
69 Set8(memor
[all...]

Completed in 687 milliseconds