Home
last modified time | relevance | path

Searched refs:newCEs (Results 1 – 3 of 3) sorted by relevance

/external/chromium/third_party/icu/source/i18n/
Dcolldata.cpp138 uint32_t *newCEs = NEW_ARRAY(uint32_t, newMax); in add() local
140 if (newCEs == NULL) { in add()
145 uprv_memcpy(newCEs, ces, listSize * sizeof(uint32_t)); in add()
151 ces = newCEs; in add()
/external/icu4c/i18n/
Dcolldata.cpp138 uint32_t *newCEs = NEW_ARRAY(uint32_t, newMax); in add() local
140 if (newCEs == NULL) { in add()
145 uprv_memcpy(newCEs, ces, listSize * sizeof(uint32_t)); in add()
151 ces = newCEs; in add()
Ducol.cpp247 uint32_t *newCEs = (uint32_t *)uprv_malloc(newCapacity * 4); in reallocCEs() local
248 if(newCEs == NULL) { in reallocCEs()
251 uprv_memcpy(newCEs, oldCEs, length * 4); in reallocCEs()
253 data->extendCEs = newCEs; in reallocCEs()
255 data->CEpos = newCEs + length; in reallocCEs()