Home | History | Annotate | Download | only in toolutil

Lines Matching refs:reverseMap

80         const int32_t *map=table->reverseMap;
209 /* sorting by bytes first sorts the reverseMap; use indirection to mappings */
235 /* build the reverseMap */
236 if(t->reverseMap==NULL) {
239 * if mappings are added, the reverseMap need not be
243 t->reverseMap=(int32_t *)uprv_malloc(t->mappingsCapacity*sizeof(int32_t));
244 if(t->reverseMap==NULL) {
245 fprintf(stderr, "ucm error: unable to allocate reverseMap\n");
250 t->reverseMap[i]=i;
253 /* 2. sort reverseMap by mappings bytes first */
254 uprv_sortArray(t->reverseMap, t->mappingsLength, sizeof(int32_t),
421 baseMap=base->reverseMap;
422 extMap=ext->reverseMap;
895 uprv_free(table->reverseMap);
935 if(table->reverseMap!=NULL) {
936 /* the reverseMap must be reallocated in a new sort */
937 uprv_free(table->reverseMap);
938 table->reverseMap=NULL;