Home | History | Annotate | Download | only in i18n

Lines Matching defs:cmLookup

215     t->cmLookup = NULL;
414 if (t->cmLookup != NULL) {
415 uprv_free(t->cmLookup->cPoints);
416 uprv_free(t->cmLookup);
705 t->cmLookup = (CombinClassTable *)uprv_malloc(sizeof(CombinClassTable));
706 if (t->cmLookup==NULL) {
710 t->cmLookup->cPoints=(UChar *)uprv_malloc(noOfCM*sizeof(UChar));
711 if (t->cmLookup->cPoints ==NULL) {
712 uprv_free(t->cmLookup);
713 t->cmLookup = NULL;
718 t->cmLookup->size=noOfCM;
719 uprv_memset(t->cmLookup->index, 0, sizeof(t->cmLookup->index));
731 uprv_memcpy(t->cmLookup->cPoints+count, cm+(i<<8), index[i]*sizeof(UChar));
734 t->cmLookup->index[i]=count;
748 UBool buildCMTable = (t->cmLookup==NULL); // flag for building combining class table
1782 CombinClassTable *cmLookup = t->cmLookup;
1805 newDecomp[newDecLen++] = cmLookup->cPoints[c->cmPos];
1854 CombinClassTable *cmLookup = t->cmLookup;
1870 if ( cmLookup == NULL ) {
1873 index = cmLookup->index;
1889 decomp[1] = cmLookup->cPoints[i];
1908 decomp[replacedPos]=cmLookup->cPoints[i];
1983 if ( tempTable->cmLookup != NULL ) {
1984 t->cmLookup = tempTable->cmLookup; // copy over to t
1985 tempTable->cmLookup = NULL;