Searched refs:uprv_realloc (Results 1 - 25 of 32) sorted by relevance

12

/external/icu4c/common/
H A Dcmemory.c54 uprv_realloc(void * buffer, size_t size) { function
H A Duvectr64.cpp144 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);
H A Duvectr32.cpp226 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);
H A Duenum.c37 en->baseContext = uprv_realloc(en->baseContext,
H A Dcmemory.h41 uprv_realloc(void *mem, size_t size);
H A Duniset.cpp1459 UChar32* temp = (UChar32*) uprv_realloc(list, sizeof(UChar32) * newCapacity);
1579 UChar32* temp = (UChar32*) uprv_realloc(list, sizeof(UChar32) * (newLen + GROW_EXTRA));
1593 UChar32* temp = (UChar32*) uprv_realloc(buffer, sizeof(UChar32) * (newLen + GROW_EXTRA));
2101 list = (UChar32*) uprv_realloc(list, sizeof(UChar32) * capacity);
H A Duvector.cpp347 UHashTok* newElems = (UHashTok *)uprv_realloc(elements, sizeof(UHashTok)*newCap);
H A Dubidi.c220 if((memory=uprv_realloc(*pMemory, sizeNeeded))!=NULL) {
1215 pInsertPoints->points=uprv_realloc(pInsertPoints->points,
H A Duresbund.c767 resB->fResPath = (char *)uprv_realloc(resB->fResPath, (resB->fResPathLen+1)*sizeof(char));
791 char *temp = (char *)uprv_realloc(resB->fResPath, (resB->fResPathLen+1)*sizeof(char));
971 chAlias = (char *)uprv_realloc(chAlias, capacity);
/external/icu4c/i18n/
H A Dnfrlist.h66 fStuff = (NFRule**)uprv_realloc(fStuff, fCapacity * sizeof(NFRule*)); // assume success
H A Ducol_cnt.cpp31 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));
H A Ducol_elm.cpp96 uint32_t *newData = (uint32_t *)uprv_realloc(expansions->CEs, 2*expansions->size*sizeof(uint32_t));
461 uint32_t *neweece = (uint32_t *)uprv_realloc(maxexpansion->endExpansionCE,
469 uint8_t *neweces = (uint8_t *)uprv_realloc(maxexpansion->expansionCESize,
633 maxexpansion->endExpansionCE = (uint32_t *)uprv_realloc(maxexpansion->endExpansionCE,
642 maxexpansion->isV = (UBool *)uprv_realloc(maxexpansion->isV,
H A Ducoleitr.cpp40 #define GROW_ARRAY(array, newSize) uprv_realloc((void *) (array), (newSize) * sizeof (array)[0])
H A Dtimezone.cpp751 m = (int32_t *)uprv_realloc(tmp, numEntries * sizeof(int32_t));
872 int32_t *tmp = (int32_t *)uprv_realloc(filteredMap, filteredMapSize * sizeof(int32_t));
H A Ducol_tok.cpp827 UChar *newSrc = (UChar *)uprv_realloc(src->source, (src->extraEnd-src->source)*2*sizeof(UChar));
1473 src->lh = (UColTokListHeader *)uprv_realloc(src->lh, src->listCapacity*sizeof(UColTokListHeader));
2327 src->source = (UChar *)uprv_realloc(src->source, (nSize+UCOL_TOK_EXTRA_RULE_SPACE_SIZE)*sizeof(UChar));
H A Dmsgfmt.cpp339 uprv_realloc(argTypes, sizeof(*argTypes) * capacity);
808 uprv_realloc(formatAliases, sizeof(Format*) * argTypeCount);
H A Duspoof_impl.cpp667 fRawData = static_cast<SpoofDataHeader *>(uprv_realloc(fRawData, fMemLimit));
H A Drbnf.cpp223 buf = (void**)uprv_realloc(buf, cap * sizeof(void*));
/external/icu4c/tools/genrb/
H A Dustr.c208 s->fChars = (UChar*) uprv_realloc(s->fChars, sizeof(UChar) * (len + 1));
/external/icu4c/tools/toolutil/
H A Dtoolutil.cpp288 mem->array=uprv_realloc(mem->array, newCapacity*mem->size);
H A Dpkg_gencmn.c390 files = uprv_realloc(files, fileMax*sizeof(files[0])); /* note: never freed. */
H A Ducm.c927 table->mappings=(UCMapping *)uprv_realloc(table->mappings,
/external/icu4c/layout/
H A DLETypes.h300 #define LE_GROW_ARRAY(array, newSize) uprv_realloc((void *) (array), (newSize) * sizeof (array)[0])
/external/icu4c/io/
H A Dustdio.c164 f->fTranslit->buffer = (UChar*)uprv_realloc(f->fTranslit->buffer, newlen * sizeof(UChar));
/external/icu4c/tools/gencnval/
H A Dgencnval.c744 aliasList->aliases = (uint16_t *)uprv_realloc(aliasList->aliases, (aliasList->aliasCount + 1) * sizeof(aliasList->aliases[0]));

Completed in 245 milliseconds

12