Home | History | Annotate | Download | only in toolutil

Lines Matching refs:reverseMap

82         const int32_t *map=table->reverseMap;
211 /* sorting by bytes first sorts the reverseMap; use indirection to mappings */
237 /* build the reverseMap */
238 if(t->reverseMap==NULL) {
241 * if mappings are added, the reverseMap need not be
245 t->reverseMap=(int32_t *)uprv_malloc(t->mappingsCapacity*sizeof(int32_t));
246 if(t->reverseMap==NULL) {
247 fprintf(stderr, "ucm error: unable to allocate reverseMap\n");
252 t->reverseMap[i]=i;
255 /* 2. sort reverseMap by mappings bytes first */
256 uprv_sortArray(t->reverseMap, t->mappingsLength, sizeof(int32_t),
423 baseMap=base->reverseMap;
424 extMap=ext->reverseMap;
897 uprv_free(table->reverseMap);
937 if(table->reverseMap!=NULL) {
938 /* the reverseMap must be reallocated in a new sort */
939 uprv_free(table->reverseMap);
940 table->reverseMap=NULL;