Searched refs:tile_y_offset (Results 1 – 2 of 2) sorted by relevance
/external/webp/src/dsp/ |
D | lossless_enc.c | 691 const int tile_y_offset = tile_y * max_tile_size; in VP8LResidualImage() local 693 (tile_y < tiles_per_col - 1) ? max_tile_size : height - tile_y_offset; in VP8LResidualImage() 699 memcpy(current_tile_rows, &argb[tile_y_offset * width], in VP8LResidualImage() 965 const int tile_y_offset = tile_y * max_tile_size; in GetBestColorTransformForTile() local 968 const int all_y_max = GetMin(tile_y_offset + max_tile_size, ysize); in GetBestColorTransformForTile() 970 const int tile_height = all_y_max - tile_y_offset; in GetBestColorTransformForTile() 971 const uint32_t* const tile_argb = argb + tile_y_offset * xsize in GetBestColorTransformForTile() 1013 const int tile_y_offset = tile_y * max_tile_size; in VP8LColorSpaceTransform() local 1015 const int all_y_max = GetMin(tile_y_offset + max_tile_size, height); in VP8LColorSpaceTransform() 1027 CopyTileWithColorTransform(width, height, tile_x_offset, tile_y_offset, in VP8LColorSpaceTransform() [all …]
|
/external/opencv3/3rdparty/libwebp/dsp/ |
D | lossless.c | 625 const int tile_y_offset = tile_y * max_tile_size; in VP8LResidualImage() local 627 (tile_y < tiles_per_col - 1) ? max_tile_size : height - tile_y_offset; in VP8LResidualImage() 633 memcpy(current_tile_rows, &argb[tile_y_offset * width], in VP8LResidualImage() 651 int all_y = tile_y_offset + y; in VP8LResidualImage() 885 const int tile_y_offset = tile_y * max_tile_size; in GetBestColorTransformForTile() local 891 int all_y_max = tile_y_offset + max_tile_size; in GetBestColorTransformForTile() 905 for (all_y = tile_y_offset; all_y < all_y_max; ++all_y) { in GetBestColorTransformForTile() 935 for (all_y = tile_y_offset; all_y < all_y_max; ++all_y) { in GetBestColorTransformForTile() 1018 const int tile_y_offset = tile_y * max_tile_size; in VP8LColorSpaceTransform() local 1047 int all_y = tile_y_offset + y; in VP8LColorSpaceTransform()
|