Searched refs:prow (Results 1 - 2 of 2) sorted by relevance

/haiku/src/tools/translation/bitsinfo/
H A Dbitsinfo.cpp191 uint8 *prow = new uint8[header.rowBytes]; local
192 if (!prow) {
200 while ((ret = file.Read(prow, header.rowBytes)) > 0) {
205 printf("%.2X", prow[n]);
/haiku/src/add-ons/translators/png/
H A DPNGTranslator.cpp322 uint8 **prows = NULL, *prow = NULL; local
437 prow = new(std::nothrow) uint8[rowbytes];
438 if (!prow) {
443 png_read_row(ppng, prow, NULL);
444 outDestination->Write(prow, width * kbytes);
491 delete[] prow;
492 prow = NULL;
823 uint8 *pbitsrow = NULL, *prow = NULL; local
863 prow = new(std::nothrow) uint8[width * pngBytesPerPixel];
864 if (!prow) {
[all...]

Completed in 27 milliseconds