Lines Matching defs:pass
360 // The below variables are unused, however, we need to pass them in anyway or
508 static void AllRowsCallback(png_structp png_ptr, png_bytep row, png_uint_32 rowNum, int /*pass*/) {
512 static void RowCallback(png_structp png_ptr, png_bytep row, png_uint_32 rowNum, int /*pass*/) {
626 static void InterlacedRowCallback(png_structp png_ptr, png_bytep row, png_uint_32 rowNum, int pass) {
628 decoder->interlacedRowCallback(row, rowNum, pass);
647 void interlacedRowCallback(png_bytep row, int rowNum, int pass) {
656 if (0 == pass) {
657 // The first pass initializes all rows.
663 if (fNumberPasses - 1 == pass && rowNum == fLastRow) {
664 // Last pass, and we have read all of the rows we care about.