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

  /external/chromium_org/third_party/libjingle/source/talk/base/
base64.cc 103 const unsigned char* byte_data = static_cast<const unsigned char*>(data); local
109 c = (byte_data[i] >> 2) & 0x3f;
112 c = (byte_data[i] << 4) & 0x3f;
114 c |= (byte_data[i] >> 4) & 0x0f;
119 c = (byte_data[i] << 2) & 0x3f;
121 c |= (byte_data[i] >> 6) & 0x03;
129 c = byte_data[i] & 0x3f;
  /external/chromium_org/third_party/webrtc/base/
base64.cc 103 const unsigned char* byte_data = static_cast<const unsigned char*>(data); local
109 c = (byte_data[i] >> 2) & 0x3f;
112 c = (byte_data[i] << 4) & 0x3f;
114 c |= (byte_data[i] >> 4) & 0x0f;
119 c = (byte_data[i] << 2) & 0x3f;
121 c |= (byte_data[i] >> 6) & 0x03;
129 c = byte_data[i] & 0x3f;
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
GLEScontext.cpp 245 const GLbyte* byte_data = (const GLbyte *)dataIn; local
248 reinterpret_cast<GLshort*>(&static_cast<unsigned char*>(dataOut)[i])[j] = B2S(byte_data[j]);

Completed in 198 milliseconds