Searched refs:cBuffer (Results 1 – 4 of 4) sorted by relevance
/external/icu/icu4c/source/test/iotest/ |
D | iotest.cpp | 203 char cBuffer[512]; in DataDrivenPrintf() local 204 char cFormat[sizeof(cBuffer)]; in DataDrivenPrintf() 205 char cExpected[sizeof(cBuffer)]; in DataDrivenPrintf() 248 u_austrncpy(cBuffer, format, sizeof(cBuffer)); in DataDrivenPrintf() 255 log_verbose("Test %d: format=\"%s\"\n", i, cBuffer); in DataDrivenPrintf() 258 dbl = atof(u_austrcpy(cBuffer, argument)); in DataDrivenPrintf() 283 u_austrncpy(cBuffer, argument, sizeof(cBuffer)); in DataDrivenPrintf() 284 uBufferLenReturned = u_sprintf_u(uBuffer, format, cBuffer); in DataDrivenPrintf() 285 uFileBufferLenReturned = u_fprintf_u(testFile.getAlias(), format, cBuffer); in DataDrivenPrintf() 297 u_austrncpy(cBuffer, uBuffer, sizeof(cBuffer)); in DataDrivenPrintf() [all …]
|
D | strtst.c | 251 char cBuffer[256]; in TestLocalizedString() local 264 u_austrcpy(cBuffer,testStr); in TestLocalizedString() 266 log_err("u_fprintf failed to work on an en string Got: %s\n", cBuffer); in TestLocalizedString() 289 u_austrcpy(cBuffer,testStr); in TestLocalizedString() 291 log_err("u_fprintf failed to work on a de string Got: %s\n", cBuffer); in TestLocalizedString()
|
/external/skia/src/codec/ |
D | SkBmpStandardCodec.cpp | 90 SkAutoTDeleteArray<uint8_t> cBuffer(new uint8_t[colorBytes]); in createColorTable() local 91 if (stream()->read(cBuffer.get(), colorBytes) != colorBytes) { in createColorTable() 107 uint8_t blue = get_byte(cBuffer.get(), i*fBytesPerColor); in createColorTable() 108 uint8_t green = get_byte(cBuffer.get(), i*fBytesPerColor + 1); in createColorTable() 109 uint8_t red = get_byte(cBuffer.get(), i*fBytesPerColor + 2); in createColorTable() 114 alpha = get_byte(cBuffer.get(), i*fBytesPerColor + 3); in createColorTable()
|
D | SkBmpRLECodec.cpp | 92 SkAutoTDeleteArray<uint8_t> cBuffer(new uint8_t[colorBytes]); in createColorTable() local 93 if (stream()->read(cBuffer.get(), colorBytes) != colorBytes) { in createColorTable() 101 uint8_t blue = get_byte(cBuffer.get(), i*fBytesPerColor); in createColorTable() 102 uint8_t green = get_byte(cBuffer.get(), i*fBytesPerColor + 1); in createColorTable() 103 uint8_t red = get_byte(cBuffer.get(), i*fBytesPerColor + 2); in createColorTable()
|