Lines Matching defs:outDestination

812 //				outDestination,	where the TGA data will be written
832 BPositionIO *outDestination, color_space fromspace,
912 outDestination->Write(tgaRowData, bytescopied);
941 // outDestination, where the TGA data will be written
962 BPositionIO *outDestination, int32 bitsRowBytes,
1024 outDestination->Write(tgaRowData, bytescopied);
1048 // Writes the TGA headers to outDestination.
1052 // Parameters: outDestination, where the headers are written to
1068 write_tga_headers(BPositionIO *outDestination, TGAFileHeader &fileheader,
1110 written = outDestination->Write(tgaheaders, TGA_HEADERS_SIZE);
1127 // Parameters: outDestination, where the headers are written to
1137 write_tga_footer(BPositionIO *outDestination)
1150 written = outDestination->Write(footer, kfootersize);
1176 // outDestination, where the output is written to
1190 BPositionIO *outDestination)
1321 result = write_tga_headers(outDestination, fileheader,
1349 result = translate_from_bits_to_tgatc(inSource, outDestination,
1368 if (outDestination->Write(pal, 1024) != 1024)
1371 result = translate_from_bits_to_tgatc(inSource, outDestination,
1377 result = translate_from_bits_to_tgatc(inSource, outDestination,
1382 result = translate_from_bits1_to_tgabw(inSource, outDestination,
1392 result = write_tga_footer(outDestination);
1517 // outDestination, where the bits data will be written to
1535 BPositionIO *outDestination, TGAFileHeader &filehead,
1550 // Setup outDestination so that it can be written to
1555 if (outDestination->SetSize(bitsFileSize) != B_OK)
1561 outDestination->Seek(bitsoffset, SEEK_CUR);
1582 outDestination->Write(bitsRowData, bitsRowBytes);
1591 outDestination->Seek(-(bitsRowBytes * 2), SEEK_CUR);
1607 // and write results to outDestination
1613 // outDestination, where the bits data will be written to
1631 BPositionIO *outDestination, TGAFileHeader &filehead,
1647 // Setup outDestination so that it can be written to
1652 if (outDestination->SetSize(bitsFileSize) != B_OK)
1658 outDestination->Seek(bitsoffset, SEEK_CUR);
1718 outDestination->Write(bitsRowData, bitsRowBytes);
1724 outDestination->Seek(-(bitsRowBytes * 2), SEEK_CUR);
1821 // outDestination, where the bits data will be written to
1838 BPositionIO *outDestination, TGAColorMapSpec &mapspec,
1853 // Setup outDestination so that it can be written to
1858 if (outDestination->SetSize(bitsFileSize) != B_OK)
1864 outDestination->Seek(bitsoffset, SEEK_CUR);
1884 outDestination->Write(bitsRowData, bitsRowBytes);
1893 outDestination->Seek(-(bitsRowBytes * 2), SEEK_CUR);
1915 // outDestination, where the bits data will be written to
1934 BPositionIO *outDestination, TGAFileHeader &filehead,
1952 // Setup outDestination so that it can be written to
1957 if (outDestination->SetSize(bitsFileSize) != B_OK)
1963 outDestination->Seek(bitsoffset, SEEK_CUR);
2024 outDestination->Write(bitsRowData, bitsRowBytes);
2030 outDestination->Seek(-(bitsRowBytes * 2), SEEK_CUR);
2060 // outDestination, where the output is written to
2074 BPositionIO *outDestination)
2091 result = write_tga_headers(outDestination, fileheader,
2105 outDestination->Write(buf, rd);
2152 outDestination->Write(&bitsHeader, sizeof(TranslatorBitmap));
2164 outDestination, fileheader, mapspec, imagespec);
2169 outDestination, mapspec, imagespec, ptgapalette);
2175 outDestination, fileheader, mapspec, imagespec);
2179 result = translate_from_tgamrle_to_bits(inSource, outDestination,
2200 BPositionIO *outDestination, int32 baseType)
2204 return translate_from_bits(inSource, outType, outDestination);
2207 return translate_from_tga(inSource, outType, outDestination);