Searched refs:fBytes (Results 1 - 3 of 3) sorted by relevance

/external/icu4c/i18n/
H A Dsortkey.cpp50 fHashCode(kEmptyHashCode), fBytes(NULL)
59 fBytes = (uint8_t *)uprv_malloc(count);
61 if (fBytes == NULL)
67 uprv_memcpy(fBytes, newValues, fCount);
72 fHashCode(other.fHashCode), fBytes(NULL)
80 fBytes = (uint8_t *)uprv_malloc(fCapacity);
82 if (fBytes == NULL)
88 uprv_memcpy(fBytes, other.fBytes, other.fCount);
90 uprv_memset(fBytes
[all...]
/external/icu4c/i18n/unicode/
H A Dsortkey.h282 * Size of fBytes used to store the sortkey. i.e. up till the
287 * Full size of the fBytes
297 uint8_t* fBytes; member in class:CollationKey
317 return fBytes;
/external/icu4c/tools/genrb/
H A Dgenrb.c101 uint8_t *fBytes; member in struct:ResFile
346 poolBundle.fBytes = (uint8_t *)uprv_malloc((poolFileSize + 15) & ~15);
347 if (poolFileSize > 0 && poolBundle.fBytes == NULL) {
353 int32_t bytesRead = T_FileStream_read(poolFile, poolBundle.fBytes, poolFileSize);
364 ds = udata_openSwapperForInputData(poolBundle.fBytes, bytesRead,
371 ures_swap(ds, poolBundle.fBytes, bytesRead, poolBundle.fBytes, &status);
378 header = (const DataHeader *)poolBundle.fBytes;
430 uprv_free(poolBundle.fBytes);

Completed in 79 milliseconds