HomeSort by relevance Sort by last modified time
    Searched refs:uprv_malloc (Results 251 - 275 of 345) sorted by null

<<11121314

  /external/chromium_org/third_party/icu/source/i18n/
olsontz.cpp 720 UDate* times = (UDate*)uprv_malloc(sizeof(UDate)*transCount); /* large enough to store all transition times */
744 historicRules = (TimeArrayTimeZoneRule**)uprv_malloc(sizeof(TimeArrayTimeZoneRule*)*historicRuleCount);
    [all...]
uspoof_impl.cpp 530 fRawData = static_cast<SpoofDataHeader *>(uprv_malloc(initialSize));
779 fNormalizedText = (UChar *)uprv_malloc((fNormalizedTextLength+1)*sizeof(UChar));
rematch.cpp 256 fData = (int64_t *)uprv_malloc(fPattern->fDataSize * sizeof(int64_t));
331 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1));
523 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16));
    [all...]
msgfmt.cpp 397 subformats = (Subformat*) uprv_malloc(sizeof(*subformats) * capacity);
428 argTypes = (Formattable::Type*) uprv_malloc(sizeof(*argTypes) * capacity);
1047 uprv_malloc(sizeof(Format*) * formatAliasesCapacity)
    [all...]
bmsearch.cpp 38 #define NEW_ARRAY(type, count) (type *) uprv_malloc((count) * sizeof(type))
locdspnm.cpp 94 this->path = (const char*) uprv_malloc(len + 1);
nfrs.cpp 574 char* buf = (char *)uprv_malloc((len+1)*sizeof(char)); //new char[len+1];
tzrule.cpp 588 fStartTimes = (UDate*)uprv_malloc(sizeof(UDate)*size);
ucoleitr.cpp 38 #define NEW_ARRAY(type, count) (type *) uprv_malloc((count) * sizeof(type))
uspoof_conf.cpp 219 fInput = static_cast<UChar *>(uprv_malloc((inputLen+1) * sizeof(UChar)));
  /external/chromium_org/third_party/icu/source/tools/toolutil/
ucmstate.c 703 oldStateTable=(int32_t (*)[256])uprv_malloc(states->countStates*1024);
754 *pUnicodeCodeUnits=(uint16_t *)uprv_malloc(sum*sizeof(uint16_t));
    [all...]
  /external/icu4c/common/
udata.cpp 343 newElement = (DataCacheElement *)uprv_malloc(sizeof(DataCacheElement));
357 newElement->name = (char *)uprv_malloc(nameLen+1);
    [all...]
uhash.c 223 uprv_malloc(sizeof(UHashElement) * hash->length);
285 result = (UHashtable*) uprv_malloc(sizeof(UHashtable));
uresdata.c     [all...]
usprep.cpp 702 b1 = (UChar*) uprv_malloc(b1Len * U_SIZEOF_UCHAR);
721 b2 = (UChar*) uprv_malloc(b2Len * U_SIZEOF_UCHAR);
ucnv.c 235 localConverter = allocatedConverter = (UConverter *) uprv_malloc (bufferSizeNeeded);
265 localConverter->subChars = (uint8_t *)uprv_malloc(UCNV_ERROR_BUFFER_LENGTH * U_SIZEOF_UCHAR);
534 cnv->subChars = (uint8_t *)uprv_malloc(UCNV_ERROR_BUFFER_LENGTH * U_SIZEOF_UCHAR);
    [all...]
ucnv_ct.c 262 cnv->extraInfo = uprv_malloc (sizeof (UConverterDataCompoundText));
ustrcase.cpp 407 temp=(UChar *)uprv_malloc(destCapacity*U_SIZEOF_UCHAR);
  /external/icu4c/i18n/
olsontz.cpp 752 UDate* times = (UDate*)uprv_malloc(sizeof(UDate)*transCount); /* large enough to store all transition times */
776 historicRules = (TimeArrayTimeZoneRule**)uprv_malloc(sizeof(TimeArrayTimeZoneRule*)*historicRuleCount);
    [all...]
ucol.cpp 281 uint32_t *newCEs = (uint32_t *)uprv_malloc(newCapacity * 4);
327 int32_t *newBuffer = static_cast<int32_t *>(uprv_malloc(newCapacity * 4));
626 stackBufferChars = (char *)uprv_malloc(bufferSizeNeeded);
648 image = (uint8_t *)uprv_malloc(imageSize);
778 result = (uint8_t *)uprv_malloc(*length);
787 result = (uint8_t *)uprv_malloc(*length);
911 result = (UCollator *)uprv_malloc(sizeof(UCollator));
    [all...]
  /external/icu4c/tools/toolutil/
ucmstate.c 703 oldStateTable=(int32_t (*)[256])uprv_malloc(states->countStates*1024);
754 *pUnicodeCodeUnits=(uint16_t *)uprv_malloc(sum*sizeof(uint16_t));
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ucnv.c 233 localConverter = allocatedConverter = (UConverter *) uprv_malloc (bufferSizeNeeded);
263 localConverter->subChars = (uint8_t *)uprv_malloc(UCNV_ERROR_BUFFER_LENGTH * U_SIZEOF_UCHAR);
532 cnv->subChars = (uint8_t *)uprv_malloc(UCNV_ERROR_BUFFER_LENGTH * U_SIZEOF_UCHAR);
    [all...]
locdispnames.cpp 670 UChar *result = (UChar *)uprv_malloc((length+1)*sizeof(UChar));
ucasemap.c 42 csm=(UCaseMap *)uprv_malloc(sizeof(UCaseMap));
utext.cpp 922 ut = (UText *)uprv_malloc(spaceRequired);
957 ut->pExtra = uprv_malloc(extraSpace);
    [all...]

Completed in 3530 milliseconds

<<11121314