Home | History | Annotate | Download | only in i18n

Lines Matching refs:leadBytePermutationTable

552     uint8_t* leadBytePermutationTable;
578 if (coll->leadBytePermutationTable) {
620 leadBytePermutationTable = (uint8_t*)reorderCodes + reorderCodesSize;
669 if (coll->leadBytePermutationTable) {
670 localCollator->leadBytePermutationTable =
671 (uint8_t*) uprv_memcpy(leadBytePermutationTable, coll->leadBytePermutationTable, 256);
719 if(coll->leadBytePermutationTable != NULL && coll->freeLeadBytePermutationTableOnClose == TRUE) {
720 uprv_free(coll->leadBytePermutationTable);
921 result->leadBytePermutationTable = NULL;
4709 if(notIsContinuation && coll->leadBytePermutationTable != NULL) {
4710 primary1 = coll->leadBytePermutationTable[primary1];
5072 if (coll->leadBytePermutationTable != NULL && notIsContinuation) {
5073 primary1 = coll->leadBytePermutationTable[primary1];
5557 if(coll->leadBytePermutationTable != NULL){
5558 CE = (coll->leadBytePermutationTable[CE>>24] << 24) | (CE & 0x00FFFFFF);
6184 if (coll->leadBytePermutationTable != NULL && !continuation) {
6185 primary1 = coll->leadBytePermutationTable[primary1];
6750 if (coll->leadBytePermutationTable != NULL && coll->freeLeadBytePermutationTableOnClose == TRUE) {
6751 uprv_free(coll->leadBytePermutationTable);
6753 coll->leadBytePermutationTable = NULL;
7181 if (coll->leadBytePermutationTable != NULL && !isContinuation(sOrder)) {
7182 sOrder = (coll->leadBytePermutationTable[sOrder>>24] << 24) | (sOrder & 0x00FFFFFF);
7183 tOrder = (coll->leadBytePermutationTable[tOrder>>24] << 24) | (tOrder & 0x00FFFFFF);
7223 if(coll->leadBytePermutationTable != NULL){
7224 sOrder = (coll->leadBytePermutationTable[sOrder>>24] << 24) | (sOrder & 0x00FFFFFF);
7273 if(coll->leadBytePermutationTable != NULL){
7274 tOrder = (coll->leadBytePermutationTable[tOrder>>24] << 24) | (tOrder & 0x00FFFFFF);