Home | History | Annotate | Download | only in i18n

Lines Matching refs:leadByte

1076 static int ucol_getReorderCodesForLeadByte(UCollator *coll, int leadByte, int16_t* returnReorderCodes, int returnCapacity) {
1079 if (leadByte >= leadByteIndexLength) {
1083 if ((leadByteIndex[leadByte] & 0x8000) == 0x8000) {
1086 returnReorderCodes[0] = leadByteIndex[leadByte] & ~0x8000;
1092 uint16_t reorderCodeCount = *(dataOffsetBase + leadByteIndex[leadByte]);
1094 uprv_memcpy(returnReorderCodes, dataOffsetBase + leadByteIndex[leadByte] + 1, reorderCodeCount * sizeof(uint16_t));