Lines Matching refs:buffer
1350 // Append the character to the text buffer
1375 * \brief Adds the specified character to the text buffer
1583 unsigned char *buffer = new unsigned char[width];
1588 color_map->getGrayLine(row, buffer, width);
1590 unsigned char *buf_ptr = buffer;
1599 png_write_row(png_ptr, (png_bytep)buffer);
1601 delete [] buffer;
1609 unsigned int *buffer = new unsigned int[width];
1613 color_map->getRGBLine(row, buffer, width);
1615 unsigned int *dest = buffer;
1630 png_write_row(png_ptr, (png_bytep)buffer);
1635 memset((void*)buffer, 0xff, sizeof(int) * width);
1636 color_map->getRGBLine(row, buffer, width);
1637 png_write_row(png_ptr, (png_bytep)buffer);
1640 delete [] buffer;