HomeSort by relevance Sort by last modified time
    Searched refs:newCEs (Results 1 - 2 of 2) sorted by null

  /external/icu4c/i18n/
colldata.cpp 138 uint32_t *newCEs = NEW_ARRAY(uint32_t, newMax);
140 if (newCEs == NULL) {
145 uprv_memcpy(newCEs, ces, listSize * sizeof(uint32_t));
151 ces = newCEs;
ucol.cpp 260 uint32_t *newCEs = (uint32_t *)uprv_malloc(newCapacity * 4);
261 if(newCEs == NULL) {
264 uprv_memcpy(newCEs, oldCEs, length * 4);
266 data->extendCEs = newCEs;
268 data->CEpos = newCEs + length;
    [all...]

Completed in 149 milliseconds