Home | History | Annotate | Download | only in i18n

Lines Matching refs:leadBytePermutationTable

1187         if (coll->leadBytePermutationTable != NULL) {
1189 uprv_free(coll->leadBytePermutationTable);
1191 coll->leadBytePermutationTable = NULL;
1208 if (coll->leadBytePermutationTable != NULL && coll->freeLeadBytePermutationTableOnClose == TRUE) {
1209 uprv_free(coll->leadBytePermutationTable);
1211 coll->leadBytePermutationTable = NULL;
1227 if (coll->leadBytePermutationTable == NULL) {
1228 coll->leadBytePermutationTable = (uint8_t*)uprv_malloc(256*sizeof(uint8_t));
1230 if (coll->leadBytePermutationTable == NULL) {
1240 if (coll->leadBytePermutationTable != NULL && coll->freeLeadBytePermutationTableOnClose == TRUE) {
1241 uprv_free(coll->leadBytePermutationTable);
1243 coll->leadBytePermutationTable = NULL;
1262 coll->leadBytePermutationTable[i] = i;
1266 coll->leadBytePermutationTable[i] = 0;
1286 if (coll->leadBytePermutationTable != NULL && coll->freeLeadBytePermutationTableOnClose == TRUE) {
1287 uprv_free(coll->leadBytePermutationTable);
1289 coll->leadBytePermutationTable = NULL;
1308 leadBytePermutationTable != NULL && coll->freeLeadBytePermutationTableOnClose == TRUE) {
1309 uprv_free(coll->leadBytePermutationTable);
1311 coll->leadBytePermutationTable = NULL;
1319 coll->leadBytePermutationTable[leadBytes[leadByteIndex]] = toBottom;
1330 if (coll->leadBytePermutationTable != NULL && coll->freeLeadBytePermutationTableOnClose == TRUE) {
1331 uprv_free(coll->leadBytePermutationTable);
1333 coll->leadBytePermutationTable = NULL;
1341 coll->leadBytePermutationTable[leadBytes[leadByteIndex]] = toTop;
1352 fprintf(stdout, "\t%02x = %02x\n", i, coll->leadBytePermutationTable[i]);
1371 coll->leadBytePermutationTable[i] = reorderCode;
1380 fprintf(stdout, "\t%02x = %02x\n", i, coll->leadBytePermutationTable[i]);