HomeSort by relevance Sort by last modified time
    Searched full:ownedcodes (Results 1 - 1 of 1) sorted by null

  /external/icu/icu4c/source/i18n/
collationsettings.cpp 193 int32_t *ownedCodes;
197 ownedCodes = const_cast<int32_t *>(reorderCodes);
201 ownedCodes = (int32_t *)uprv_malloc(capacity * 4 + 256);
202 if(ownedCodes == NULL) {
210 reorderCodes = ownedCodes;
213 uprv_memcpy(ownedCodes + reorderCodesCapacity, table, 256);
214 uprv_memcpy(ownedCodes, codes, codesLength * 4);
215 uprv_memcpy(ownedCodes + codesLength, ranges, rangesLength * 4);
218 reorderRanges = reinterpret_cast<uint32_t *>(ownedCodes) + codesLength;

Completed in 36 milliseconds