• Home
  • Raw
  • Download

Lines Matching refs:tile_x

299                                    int tile_x, int tile_y, int bits,  in GetBestPredictorForTile()  argument
307 const int start_x = tile_x << bits; in GetBestPredictorForTile()
322 const int left_mode = (tile_x > 0) ? in GetBestPredictorForTile()
323 (modes[tile_y * tiles_per_row + tile_x - 1] >> 8) & 0xff : 0xff; in GetBestPredictorForTile()
325 (modes[(tile_y - 1) * tiles_per_row + tile_x] >> 8) & 0xff : 0xff; in GetBestPredictorForTile()
492 int tile_x; in VP8LResidualImage() local
493 for (tile_x = 0; tile_x < tiles_per_row; ++tile_x) { in VP8LResidualImage()
494 const int pred = GetBestPredictorForTile(width, height, tile_x, tile_y, in VP8LResidualImage()
497 image[tile_y * tiles_per_row + tile_x] = ARGB_BLACK | (pred << 8); in VP8LResidualImage()
676 int tile_x, int tile_y, int bits, in GetBestColorTransformForTile() argument
685 const int tile_x_offset = tile_x * max_tile_size; in GetBestColorTransformForTile()
704 int tile_x, int tile_y, in CopyTileWithColorTransform() argument
708 const int xscan = GetMin(max_tile_size, xsize - tile_x); in CopyTileWithColorTransform()
710 argb += tile_y * xsize + tile_x; in CopyTileWithColorTransform()
724 int tile_x, tile_y; in VP8LColorSpaceTransform() local
729 for (tile_x = 0; tile_x < tile_xsize; ++tile_x) { in VP8LColorSpaceTransform()
731 const int tile_x_offset = tile_x * max_tile_size; in VP8LColorSpaceTransform()
735 const int offset = tile_y * tile_xsize + tile_x; in VP8LColorSpaceTransform()
739 prev_x = GetBestColorTransformForTile(tile_x, tile_y, bits, in VP8LColorSpaceTransform()