HomeSort by relevance Sort by last modified time
    Searched refs:uprv_realloc (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/chromium_org/third_party/icu/source/common/
uvectr64.cpp 144 int64_t* newElems = (int64_t *)uprv_realloc(elements, sizeof(int64_t)*newCap);
172 int64_t* newElems = (int64_t *)uprv_realloc(elements, sizeof(int64_t)*maxCapacity);
cmemory.c 93 uprv_realloc(void * buffer, size_t size) { function
uvectr32.cpp 226 int32_t* newElems = (int32_t *)uprv_realloc(elements, sizeof(int32_t)*newCap);
254 int32_t* newElems = (int32_t *)uprv_realloc(elements, sizeof(int32_t)*maxCapacity);
uenum.c 37 en->baseContext = uprv_realloc(en->baseContext,
cmemory.h 69 uprv_realloc(void *mem, size_t size) U_ALLOC_SIZE_ATTR(2);
uniset.cpp     [all...]
uvector.cpp 348 UElement* newElems = (UElement *)uprv_realloc(elements, sizeof(UElement)*newCap);
  /external/icu/icu4c/source/common/
uvectr64.cpp 144 int64_t* newElems = (int64_t *)uprv_realloc(elements, sizeof(int64_t)*newCap);
172 int64_t* newElems = (int64_t *)uprv_realloc(elements, sizeof(int64_t)*maxCapacity);
cmemory.c 93 uprv_realloc(void * buffer, size_t size) { function
uvectr32.cpp 226 int32_t* newElems = (int32_t *)uprv_realloc(elements, sizeof(int32_t)*newCap);
254 int32_t* newElems = (int32_t *)uprv_realloc(elements, sizeof(int32_t)*maxCapacity);
uenum.c 37 en->baseContext = uprv_realloc(en->baseContext,
cmemory.h 69 uprv_realloc(void *mem, size_t size) U_ALLOC_SIZE_ATTR(2);
uniset.cpp     [all...]
uvector.cpp 348 UElement* newElems = (UElement *)uprv_realloc(elements, sizeof(UElement)*newCap);
  /external/chromium_org/third_party/icu/source/i18n/
nfrlist.h 66 fStuff = (NFRule**)uprv_realloc(fStuff, fCapacity * sizeof(NFRule*)); // assume success
ucol_cnt.cpp 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));
  /external/icu/icu4c/source/i18n/
nfrlist.h 66 fStuff = (NFRule**)uprv_realloc(fStuff, fCapacity * sizeof(NFRule*)); // assume success
ucoleitr.cpp 45 #define GROW_ARRAY(array, newSize) uprv_realloc((void *) (array), (newSize) * sizeof (array)[0])
  /external/chromium_org/third_party/icu/source/tools/genrb/
ustr.c 209 s->fChars = (UChar*) uprv_realloc(s->fChars, sizeof(UChar) * (len + 1));
  /external/chromium_org/third_party/icu/source/tools/toolutil/
toolutil.cpp 314 mem->array=uprv_realloc(mem->array, newCapacity*mem->size);
pkg_gencmn.c 411 files = uprv_realloc(files, fileMax*sizeof(files[0])); /* note: never freed. */
  /external/icu/icu4c/source/tools/genrb/
ustr.c 209 s->fChars = (UChar*) uprv_realloc(s->fChars, sizeof(UChar) * (len + 1));
  /external/icu/icu4c/source/tools/toolutil/
toolutil.cpp 315 mem->array=uprv_realloc(mem->array, newCapacity*mem->size);
pkg_gencmn.c 411 files = uprv_realloc(files, fileMax*sizeof(files[0])); /* note: never freed. */
  /external/icu/icu4c/source/layout/
LETypes.h 344 #define LE_GROW_ARRAY(array, newSize) uprv_realloc((void *) (array), (newSize) * sizeof (array)[0])

Completed in 238 milliseconds

1 2 3