Home
last modified time | relevance | path

Searched refs:lowByte (Results 1 – 5 of 5) sorted by relevance

/external/icu/icu4c/source/i18n/
Dcollationdata.cpp135 int32_t lowByte; in makeReorderTable() local
136 for(lowByte = 0; lowByte <= Collation::MERGE_SEPARATOR_BYTE; ++lowByte) { in makeReorderTable()
137 table[lowByte] = lowByte; in makeReorderTable()
148 for(int32_t i = lowByte; i <= highByte; ++i) { in makeReorderTable()
172 do { table[firstByte++] = lowByte++; } while(firstByte <= lastByte); in makeReorderTable()
216 do { table[firstByte++] = lowByte++; } while(firstByte <= lastByte); in makeReorderTable()
222 if(table[i] == 0) { table[i] = lowByte++; } in makeReorderTable()
224 U_ASSERT(lowByte == highByte + 1); in makeReorderTable()
/external/dexmaker/src/dx/java/com/android/dx/io/
DOpcodes.java360 int lowByte = opcode & 0xff; in isValidShape() local
361 if ((lowByte == 0) || (lowByte == 0xff)) { in isValidShape()
399 int lowByte = opcodeUnit & 0xff; in extractOpcodeFromUnit() local
400 return ((lowByte == 0) || (lowByte == 0xff)) ? opcodeUnit : lowByte; in extractOpcodeFromUnit()
/external/arduino/hardware/arduino/cores/arduino/
Dwiring.h93 #define lowByte(w) ((uint8_t) ((w) & 0xff)) macro
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
DMainThreadWebSocketChannel.cpp505 unsigned char lowByte = code; in startClosingHandshake() local
507 buf.append(static_cast<char>(lowByte)); in startClosingHandshake()
671 unsigned char lowByte = static_cast<unsigned char>(frame.payload[1]); in processFrame() local
672 m_closeEventCode = highByte << 8 | lowByte; in processFrame()
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
DInstructionCodec.java990 private static short codeUnit(int lowByte, int highByte) { in codeUnit() argument
991 if ((lowByte & ~0xff) != 0) { in codeUnit()
999 return (short) (lowByte | (highByte << 8)); in codeUnit()