Lines Matching defs:outDestination

568 //				outDestination,	where the BMP data will be written
584 BPositionIO *outDestination, color_space fromspace, MSInfoHeader &msheader)
764 outDestination->Write(bmpRowData, bmpRowBytes);
792 // outDestination, where the BMP data will be written
809 BPositionIO *outDestination, int32 bitsRowBytes, MSInfoHeader &msheader)
829 outDestination->Write(bmpRowData, bmpRowBytes);
857 // outDestination, where the BMP data will be written
874 BPositionIO *outDestination, int32 bitsRowBytes, MSInfoHeader &msheader)
915 outDestination->Write(bmpRowData, bmpRowBytes);
938 // to outDestination.
942 // Parameters: outDestination, where the headers are written to
955 write_bmp_headers(BPositionIO *outDestination, BMPFileHeader &fileHeader,
973 if (outDestination->Write(bmpheaders, 54) != 54)
991 // outDestination, where the output is written to
1005 BPositionIO *outDestination)
1099 result = write_bmp_headers(outDestination, fileHeader, msheader);
1126 return translate_from_bits_to_bmp24(inSource, outDestination,
1158 ssize_t written = outDestination->Write(pal, 1024);
1164 return translate_from_bits8_to_bmp8(inSource, outDestination,
1172 ssize_t written = outDestination->Write(monopal, 8);
1178 return translate_from_bits1_to_bmp1(inSource, outDestination,
1199 // outDestination, where the bits data will be written to
1211 BPositionIO *outDestination, MSInfoHeader &msheader)
1218 // Setup outDestination so that it can be written to
1223 if (outDestination->SetSize(bitsFileSize) != B_OK) {
1231 outDestination->Seek((msheader.height - 1) * bitsRowBytes, SEEK_CUR);
1278 ssize_t written = outDestination->Write(bitsRowData, bitsRowBytes);
1280 outDestination->Seek(bitsRowBytes * -2, SEEK_CUR);
1308 // outDestination, where the bits data will be written to
1325 BPositionIO *outDestination, MSInfoHeader &msheader,
1343 // Setup outDestination so that it can be written to
1349 if (outDestination->SetSize(bitsFileSize) != B_OK)
1354 outDestination->Seek((msheader.height - 1) * bitsRowBytes, SEEK_CUR);
1378 outDestination->Write(bitsRowData, bitsRowBytes);
1387 outDestination->Seek(bitsRowBytes * -2, SEEK_CUR);
1438 // outDestination, where the bits data will be written to
1454 BPositionIO *outDestination, int32 datasize, MSInfoHeader &msheader,
1462 // Setup outDestination so that it can be written to
1469 if (outDestination->SetSize(bitsFileSize) != B_OK)
1482 outDestination->Seek((msheader.height - 1) * bitsRowBytes, SEEK_CUR);
1527 outDestination->Write(bitsRowData, bitsRowBytes);
1531 outDestination->Seek(rowOffset, SEEK_CUR);
1538 outDestination->Write(bitsRowData, bitsRowBytes);
1542 outDestination->Seek(rowOffset, SEEK_CUR);
1548 outDestination->Write(bitsRowData, bitsRowBytes);
1552 outDestination->Seek(rowOffset, SEEK_CUR);
1585 outDestination->Write(bitsRowData, bitsRowBytes);
1589 outDestination->Seek(rowOffset, SEEK_CUR);
1668 // outDestination, where the output is written to
1682 BPositionIO *outDestination)
1704 result = write_bmp_headers(outDestination, fileHeader, msheader);
1726 outDestination->Write(mspalent, 4);
1738 outDestination->Write(buf, rd);
1803 outDestination->Write(&bitsHeader, sizeof(TranslatorBitmap));
1815 outDestination, msheader);
1821 outDestination, msheader, bmppalette, frommsformat);
1826 outDestination, datasize, msheader, bmppalette);
1834 outDestination, msheader, bmppalette, frommsformat);
1839 outDestination, datasize, msheader, bmppalette);
1845 outDestination, msheader, bmppalette, frommsformat);
1859 // the translated data in outDestination.
1872 // outDestination, where the translated data is
1893 uint32 outType, BPositionIO *outDestination, int32 baseType)
1897 return translate_from_bits(inSource, outType, outDestination);
1900 return translate_from_bmp(inSource, outType, outDestination);