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

  /external/icu/icu4c/source/i18n/
collationdata.cpp 135 int32_t lowByte;
136 for(lowByte = 0; lowByte <= Collation::MERGE_SEPARATOR_BYTE; ++lowByte) {
137 table[lowByte] = lowByte;
139 // lowByte == 03
148 for(int32_t i = lowByte; i <= highByte; ++i) {
172 do { table[firstByte++] = lowByte++; } while(firstByte <= lastByte);
216 do { table[firstByte++] = lowByte++; } while(firstByte <= lastByte)
    [all...]
  /dalvik/dx/src/com/android/dx/io/
Opcodes.java 321 int lowByte = opcode & 0xff;
322 if ((lowByte == 0) || (lowByte == 0xff)) {
343 int lowByte = opcodeUnit & 0xff;
344 return ((lowByte == 0) || (lowByte == 0xff)) ? opcodeUnit : lowByte;
  /external/dexmaker/src/dx/java/com/android/dx/io/
Opcodes.java 360 int lowByte = opcode & 0xff;
361 if ((lowByte == 0) || (lowByte == 0xff)) {
399 int lowByte = opcodeUnit & 0xff;
400 return ((lowByte == 0) || (lowByte == 0xff)) ? opcodeUnit : lowByte;
  /external/arduino/hardware/arduino/cores/arduino/
wiring.h 93 #define lowByte(w) ((uint8_t) ((w) & 0xff))
  /dalvik/libdex/
DexOpcodes.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
MainThreadWebSocketChannel.cpp 520 unsigned char lowByte = code;
522 buf.append(static_cast<char>(lowByte));
686 unsigned char lowByte = static_cast<unsigned char>(frame.payload[1]);
687 m_closeEventCode = highByte << 8 | lowByte;
    [all...]
  /dalvik/dx/src/com/android/dx/io/instructions/
InstructionCodec.java 856 private static short codeUnit(int lowByte, int highByte) {
857 if ((lowByte & ~0xff) != 0) {
858 throw new IllegalArgumentException("bogus lowByte");
865 return (short) (lowByte | (highByte << 8));
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
InstructionCodec.java     [all...]
  /prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.0/
dexmaker-1.0.jar 
  /prebuilts/sdk/tools/darwin/lib/
dx.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 

Completed in 382 milliseconds