Home | History | Annotate | Download | only in dsp

Lines Matching refs:tile_x

522                                    int tile_x, int tile_y, int bits,
526 const int col_start = tile_x << bits;
578 int tile_x, int tile_y, int bits, int mode,
581 const int col_start = tile_x << bits;
628 int tile_x;
635 for (tile_x = 0; tile_x < tiles_per_row; ++tile_x) {
638 const int tile_x_offset = tile_x * max_tile_size;
643 pred = GetBestPredictorForTile(width, height, tile_x, tile_y, bits, histo,
645 image[tile_y * tiles_per_row + tile_x] = 0xff000000u | (pred << 8);
646 CopyTileWithPrediction(width, height, tile_x, tile_y, bits, pred,
874 int tile_x, int tile_y, int bits,
886 const int tile_x_offset = tile_x * max_tile_size;
976 int tile_x, int tile_y, int bits,
982 tile_x <<= bits;
984 if (xscan > xsize - tile_x) {
985 xscan = xsize - tile_x;
992 int ix = y * xsize + tile_x;
1008 int tile_x;
1014 for (tile_x = 0; tile_x < tile_xsize; ++tile_x) {
1019 const int tile_x_offset = tile_x * max_tile_size;
1021 ColorCodeToMultipliers(image[tile_y * tile_xsize + tile_x - 1], &prevX);
1022 ColorCodeToMultipliers(image[(tile_y - 1) * tile_xsize + tile_x],
1024 } else if (tile_x != 0) {
1025 ColorCodeToMultipliers(image[tile_y * tile_xsize + tile_x - 1], &prevX);
1028 GetBestColorTransformForTile(tile_x, tile_y, bits,
1034 image[tile_y * tile_xsize + tile_x] =
1036 CopyTileWithColorTransform(width, height, tile_x, tile_y, bits,