Lines Matching full:size
10 * tab size: 8 (not used)
30 if(tbl->position == tbl->size) {
31 uint32_t *newData = (uint32_t *)uprv_realloc(tbl->CEs, 2*tbl->size*sizeof(uint32_t));
36 UChar *newCPs = (UChar *)uprv_realloc(tbl->codePoints, 2*tbl->size*sizeof(UChar));
44 tbl->size *= 2;
68 tbl->size = 0;
94 el->size = INIT_EXP_TABLE_SIZE;
98 table->elements[table->size] = el;
100 //uhash_put(table->elements, (void *)table->size, el, status);
102 *key = table->size++;
104 if(table->size == table->capacity) {
132 if(U_FAILURE(*status) || table->size == 0) {
141 table->offsets = (int32_t *)uprv_malloc(table->size*sizeof(int32_t));
149 for(i = 0; i<table->size; i++) {
185 for(i = 0; i<table->size; i++) {
186 int32_t size = table->elements[i]->position;
188 for(j = 1; j<size; j++) {
200 uprv_memcpy(CEPointer, table->elements[i]->CEs, size*sizeof(uint32_t));
201 for(j = 0; j<size; j++) {
206 cpPointer += size;
207 CEPointer += size;
237 r->size = t->size;
239 r->codePoints = (UChar *)uprv_malloc(sizeof(UChar)*t->size);
243 r->CEs = (uint32_t *)uprv_malloc(sizeof(uint32_t)*t->size);
248 uprv_memcpy(r->codePoints, t->codePoints, sizeof(UChar)*t->size);
249 uprv_memcpy(r->CEs, t->CEs, sizeof(uint32_t)*t->size);
271 r->size = t->size;
283 for(i = 0; i<t->size; i++) {
313 r->offsets = (int32_t *)uprv_malloc(t->size*sizeof(int32_t));
321 uprv_memcpy(r->offsets, t->offsets, t->size*sizeof(int32_t));
337 for(i = 0; i<table->size; i++) {
459 if(offset >= tbl->size) {