Home | History | Annotate | Download | only in i18n

Lines Matching refs:leadBytePermutationTable

676         if(coll->leadBytePermutationTable != NULL) {
677 uprv_free(coll->leadBytePermutationTable);
871 result->leadBytePermutationTable = NULL;
4359 if (coll->leadBytePermutationTable != NULL && notIsContinuation) {
4360 primary1 = coll->leadBytePermutationTable[primary1];
4794 if(notIsContinuation && coll->leadBytePermutationTable != NULL) {
4795 primary1 = coll->leadBytePermutationTable[primary1];
5389 if (coll->leadBytePermutationTable != NULL && notIsContinuation) {
5390 primary1 = coll->leadBytePermutationTable[primary1];
5981 if(coll->leadBytePermutationTable != NULL){
5982 CE = (coll->leadBytePermutationTable[CE>>24] << 24) | (CE & 0x00FFFFFF);
6608 if (coll->leadBytePermutationTable != NULL && !continuation) {
6609 primary1 = coll->leadBytePermutationTable[primary1];
7166 uprv_free(coll->leadBytePermutationTable);
7167 coll->leadBytePermutationTable = NULL;
7537 if (coll->leadBytePermutationTable != NULL && !isContinuation(sOrder)) {
7538 sOrder = (coll->leadBytePermutationTable[sOrder>>24] << 24) | (sOrder & 0x00FFFFFF);
7539 tOrder = (coll->leadBytePermutationTable[tOrder>>24] << 24) | (tOrder & 0x00FFFFFF);
7579 if(coll->leadBytePermutationTable != NULL){
7580 sOrder = (coll->leadBytePermutationTable[sOrder>>24] << 24) | (sOrder & 0x00FFFFFF);
7629 if(coll->leadBytePermutationTable != NULL){
7630 tOrder = (coll->leadBytePermutationTable[tOrder>>24] << 24) | (tOrder & 0x00FFFFFF);