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

  /external/chromium/third_party/libjingle/source/talk/base/
base64.cc 88 const unsigned char* byte_data = static_cast<const unsigned char*>(data); local
93 c = (byte_data[i] >> 2) & 0x3f;
96 c = (byte_data[i] << 4) & 0x3f;
98 c |= (byte_data[i] >> 4) & 0x0f;
103 c = (byte_data[i] << 2) & 0x3f;
105 c |= (byte_data[i] >> 6) & 0x03;
113 c = byte_data[i] & 0x3f;
  /dalvik/dx/tests/034-dex-minimal/
expected.txt 46 |byte_data:
  /development/tools/emulator/opengl/host/libs/Translator/GLcommon/
GLEScontext.cpp 225 const GLbyte* byte_data = (const GLbyte *)dataIn; local
228 reinterpret_cast<GLshort*>(&static_cast<unsigned char*>(dataOut)[i])[j] = B2S(byte_data[j]);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DexFile.java 113 byteData = new MixedItemSection("byte_data", this, 1, SortType.TYPE);
  /dalvik/dx/src/com/android/dx/dex/file/
DexFile.java 120 byteData = new MixedItemSection("byte_data", this, 1, SortType.TYPE);

Completed in 216 milliseconds