Home
last modified time | relevance | path

Searched refs:leadBytePermutationTable (Results 1 – 3 of 3) sorted by relevance

/external/icu4c/i18n/
Ducol_res.cpp1187 if (coll->leadBytePermutationTable != NULL) { in ucol_buildPermutationTable()
1189 uprv_free(coll->leadBytePermutationTable); in ucol_buildPermutationTable()
1191 coll->leadBytePermutationTable = NULL; in ucol_buildPermutationTable()
1208 … if (coll->leadBytePermutationTable != NULL && coll->freeLeadBytePermutationTableOnClose == TRUE) { in ucol_buildPermutationTable()
1209 uprv_free(coll->leadBytePermutationTable); in ucol_buildPermutationTable()
1211 coll->leadBytePermutationTable = NULL; in ucol_buildPermutationTable()
1227 if (coll->leadBytePermutationTable == NULL) { in ucol_buildPermutationTable()
1228 coll->leadBytePermutationTable = (uint8_t*)uprv_malloc(256*sizeof(uint8_t)); in ucol_buildPermutationTable()
1230 if (coll->leadBytePermutationTable == NULL) { in ucol_buildPermutationTable()
1240 … if (coll->leadBytePermutationTable != NULL && coll->freeLeadBytePermutationTableOnClose == TRUE) { in ucol_buildPermutationTable()
[all …]
Ducol.cpp552 uint8_t* leadBytePermutationTable; in ucol_safeClone() local
578 if (coll->leadBytePermutationTable) { in ucol_safeClone()
620 leadBytePermutationTable = (uint8_t*)reorderCodes + reorderCodesSize; in ucol_safeClone()
669 if (coll->leadBytePermutationTable) { in ucol_safeClone()
670 localCollator->leadBytePermutationTable = in ucol_safeClone()
671 (uint8_t*) uprv_memcpy(leadBytePermutationTable, coll->leadBytePermutationTable, 256); in ucol_safeClone()
719 … if(coll->leadBytePermutationTable != NULL && coll->freeLeadBytePermutationTableOnClose == TRUE) { in ucol_close()
720 uprv_free(coll->leadBytePermutationTable); in ucol_close()
921 result->leadBytePermutationTable = NULL; in ucol_initCollator()
4709 if(notIsContinuation && coll->leadBytePermutationTable != NULL) { in ucol_calcSortKey()
[all …]
Ducol_imp.h1062 uint8_t* leadBytePermutationTable; member