Searched refs:lowByte (Results 1 – 5 of 5) sorted by relevance
135 int32_t lowByte; in makeReorderTable() local136 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()
360 int lowByte = opcode & 0xff; in isValidShape() local361 if ((lowByte == 0) || (lowByte == 0xff)) { in isValidShape()399 int lowByte = opcodeUnit & 0xff; in extractOpcodeFromUnit() local400 return ((lowByte == 0) || (lowByte == 0xff)) ? opcodeUnit : lowByte; in extractOpcodeFromUnit()
93 #define lowByte(w) ((uint8_t) ((w) & 0xff)) macro
505 unsigned char lowByte = code; in startClosingHandshake() local507 buf.append(static_cast<char>(lowByte)); in startClosingHandshake()671 unsigned char lowByte = static_cast<unsigned char>(frame.payload[1]); in processFrame() local672 m_closeEventCode = highByte << 8 | lowByte; in processFrame()
990 private static short codeUnit(int lowByte, int highByte) { in codeUnit() argument991 if ((lowByte & ~0xff) != 0) { in codeUnit()999 return (short) (lowByte | (highByte << 8)); in codeUnit()