Home | History | Annotate | Download | only in i18n

Lines Matching refs:CEs

31         uint32_t *newData = (uint32_t *)uprv_realloc(tbl->CEs, 2*tbl->size*sizeof(uint32_t));
42 tbl->CEs = newData;
70 tbl->CEs = NULL;
82 el->CEs = (uint32_t *)uprv_malloc(INIT_EXP_TABLE_SIZE*sizeof(uint32_t));
83 if(el->CEs == NULL) {
89 uprv_free(el->CEs);
95 uprv_memset(el->CEs, 0, INIT_EXP_TABLE_SIZE*sizeof(uint32_t));
110 uprv_free(el->CEs);
155 if(table->CEs != NULL) {
156 uprv_free(table->CEs);
158 table->CEs = (uint32_t *)uprv_malloc(table->position*sizeof(uint32_t));
159 if(table->CEs == NULL) {
165 uprv_memset(table->CEs, '?', table->position*sizeof(uint32_t));
175 uprv_free(table->CEs);
176 table->CEs = NULL;
184 uint32_t *CEPointer = table->CEs;
200 uprv_memcpy(CEPointer, table->elements[i]->CEs, size*sizeof(uint32_t));
210 // TODO: this one apparently updates the contraction CEs to point to a real address (relative to the
243 r->CEs = (uint32_t *)uprv_malloc(sizeof(uint32_t)*t->size);
244 if(r->CEs == NULL) {
249 uprv_memcpy(r->CEs, t->CEs, sizeof(uint32_t)*t->size);
287 if(t->CEs != NULL) {
288 r->CEs = (uint32_t *)uprv_malloc(t->position*sizeof(uint32_t));
290 if (r->CEs == NULL) {
294 uprv_memcpy(r->CEs, t->CEs, t->position*sizeof(uint32_t));
296 r->CEs = NULL;
303 uprv_free(r->CEs);
317 uprv_free(r->CEs);
338 uprv_free(table->elements[i]->CEs);
343 uprv_free(table->CEs);
363 tbl->CEs[tbl->position-1] = value;
398 tbl->CEs[i] = tbl->CEs[i-1];
402 tbl->CEs[offset] = value;
432 tbl->CEs[tbl->position] = value;
463 tbl->CEs[offset] = value;
506 return tbl->CEs[position];
580 tbl->CEs[position] = newCE;