Lines Matching defs:above_row
355 N = above_row[(x)]; \
357 NW = above_row[(x) - 1]; \
358 NE = above_row[(x) + 1]; \
361 NWW = above_row[(x) - 2]; \
370 NE = above_row[(x) + 1]; \
503 const uint32_t *above_row)
511 N = above_row[x];
512 NW = above_row[x - 1];
533 pred = above_row[x];
566 const uint32_t *above_row, uint32_t *pPix)
585 pix = above_row[x];
597 const uint32_t *above_row,
684 uint32_t pix = above_row[start_pos + 1];
686 if (!(above_row[pos] == pix))
743 const uint32_t *above_row, uint32_t *pPix)
749 uint32_t NW = above_row[x - 1];
750 if (NW != curr_row[x - 1] && NW != above_row[x] && !is_pixel_on_stack(dc, NW)) {
759 uint32_t NE = above_row[pos + 1];
760 if (NE != above_row[pos] && !is_pixel_on_stack(dc, NE)) {
803 uint32_t *curr_row = NULL, *above_row = NULL, *above2_row;
806 above2_row = above_row;
807 above_row = curr_row;
817 pix != curr_row[x - 2] && pix != above_row[x - 1] &&
818 pix != above_row[x - 2] && pix != above_row[x] &&
820 curr_row[x] = epic_decode_pixel_pred(dc, x, y, curr_row, above_row);
828 got_pixel = epic_handle_edges(dc, x, y, curr_row, above_row, &pix);
831 curr_row, above_row,
839 above_row, &pix)) {
842 pix = epic_decode_pixel_pred(dc, x, y, curr_row, above_row);