Home
last modified time | relevance | path

Searched refs:fBytes (Results 1 – 5 of 5) sorted by relevance

/external/icu4c/i18n/unicode/
Dsortkey.h255 return (fFlagAndLength >= 0) ? fUnion.fStackBuffer : fUnion.fFields.fBytes; in getBytes()
258 return (fFlagAndLength >= 0) ? fUnion.fStackBuffer : fUnion.fFields.fBytes; in getBytes()
307 uint8_t *fBytes; member
/external/icu4c/i18n/
Dsortkey.cpp96 if(fFlagAndLength < 0) { uprv_free(fUnion.fFields.fBytes); } in ~CollationKey()
105 if(fFlagAndLength < 0) { uprv_free(fUnion.fFields.fBytes); } in reallocate()
106 fUnion.fFields.fBytes = newBytes; in reallocate()
236 uprv_memcpy(result, fBytes, fCount); in toByteArray()
/external/icu4c/tools/genrb/
Dgenrb.c99 uint8_t *fBytes; member
341 poolBundle.fBytes = (uint8_t *)uprv_malloc((poolFileSize + 15) & ~15); in main()
342 if (poolFileSize > 0 && poolBundle.fBytes == NULL) { in main()
348 int32_t bytesRead = T_FileStream_read(poolFile, poolBundle.fBytes, poolFileSize); in main()
359 ds = udata_openSwapperForInputData(poolBundle.fBytes, bytesRead, in main()
366 ures_swap(ds, poolBundle.fBytes, bytesRead, poolBundle.fBytes, &status); in main()
373 header = (const DataHeader *)poolBundle.fBytes; in main()
427 uprv_free(poolBundle.fBytes); in main()
/external/skia/src/pipe/utils/
DSamplePipeControllers.h73 PipeBlock(void* block, size_t bytes) { fBlock = block, fBytes = bytes; } in PipeBlock()
78 size_t fBytes; member
DSamplePipeControllers.cpp109 reader.playback(fBlockList[currentBlock].fBlock, fBlockList[currentBlock].fBytes); in draw()