Lines Matching refs:tile_x
556 int tile_x, int tile_y, int bits, in GetBestPredictorForTile() argument
561 const int col_start = tile_x << bits; in GetBestPredictorForTile()
694 int tile_x; in VP8LResidualImage() local
701 for (tile_x = 0; tile_x < tiles_per_row; ++tile_x) { in VP8LResidualImage()
702 const int pred = GetBestPredictorForTile(width, height, tile_x, tile_y, in VP8LResidualImage()
704 image[tile_y * tiles_per_row + tile_x] = ARGB_BLACK | (pred << 8); in VP8LResidualImage()
957 int tile_x, int tile_y, int bits, in GetBestColorTransformForTile() argument
966 const int tile_x_offset = tile_x * max_tile_size; in GetBestColorTransformForTile()
985 int tile_x, int tile_y, in CopyTileWithColorTransform() argument
989 const int xscan = GetMin(max_tile_size, xsize - tile_x); in CopyTileWithColorTransform()
991 argb += tile_y * xsize + tile_x; in CopyTileWithColorTransform()
1005 int tile_x, tile_y; in VP8LColorSpaceTransform() local
1010 for (tile_x = 0; tile_x < tile_xsize; ++tile_x) { in VP8LColorSpaceTransform()
1012 const int tile_x_offset = tile_x * max_tile_size; in VP8LColorSpaceTransform()
1016 const int offset = tile_y * tile_xsize + tile_x; in VP8LColorSpaceTransform()
1020 prev_x = GetBestColorTransformForTile(tile_x, tile_y, bits, in VP8LColorSpaceTransform()