Home
last modified time | relevance | path

Searched refs:tile_xsize (Results 1 – 4 of 4) sorted by relevance

/external/opencv3/3rdparty/libwebp/dsp/
Dlossless.c1003 int tile_xsize = VP8LSubSampleSize(width, bits); in VP8LColorSpaceTransform() local
1014 for (tile_x = 0; tile_x < tile_xsize; ++tile_x) { in VP8LColorSpaceTransform()
1021 ColorCodeToMultipliers(image[tile_y * tile_xsize + tile_x - 1], &prevX); in VP8LColorSpaceTransform()
1022 ColorCodeToMultipliers(image[(tile_y - 1) * tile_xsize + tile_x], in VP8LColorSpaceTransform()
1025 ColorCodeToMultipliers(image[tile_y * tile_xsize + tile_x - 1], &prevX); in VP8LColorSpaceTransform()
1034 image[tile_y * tile_xsize + tile_x] = in VP8LColorSpaceTransform()
/external/pdfium/third_party/libtiff/
Dtif_getimage.c2830 uint32 tile_xsize, tile_ysize; in TIFFReadRGBATile() local
2846 TIFFGetFieldDefaulted(tif, TIFFTAG_TILEWIDTH, &tile_xsize); in TIFFReadRGBATile()
2848 if( (col % tile_xsize) != 0 || (row % tile_ysize) != 0 ) in TIFFReadRGBATile()
2878 if( col + tile_xsize > img.width ) in TIFFReadRGBATile()
2881 read_xsize = tile_xsize; in TIFFReadRGBATile()
2902 if( read_xsize == tile_xsize && read_ysize == tile_ysize ) in TIFFReadRGBATile()
2906 memmove( raster + (tile_ysize - i_row - 1) * tile_xsize, in TIFFReadRGBATile()
2909 _TIFFmemset( raster + (tile_ysize - i_row - 1) * tile_xsize+read_xsize, in TIFFReadRGBATile()
2910 0, sizeof(uint32) * (tile_xsize - read_xsize) ); in TIFFReadRGBATile()
2914 _TIFFmemset( raster + (tile_ysize - i_row - 1) * tile_xsize, in TIFFReadRGBATile()
[all …]
/external/opencv3/3rdparty/libtiff/
Dtif_getimage.c2769 uint32 tile_xsize, tile_ysize; in TIFFReadRGBATile() local
2785 TIFFGetFieldDefaulted(tif, TIFFTAG_TILEWIDTH, &tile_xsize); in TIFFReadRGBATile()
2787 if( (col % tile_xsize) != 0 || (row % tile_ysize) != 0 ) in TIFFReadRGBATile()
2817 if( col + tile_xsize > img.width ) in TIFFReadRGBATile()
2820 read_xsize = tile_xsize; in TIFFReadRGBATile()
2841 if( read_xsize == tile_xsize && read_ysize == tile_ysize ) in TIFFReadRGBATile()
2845 memmove( raster + (tile_ysize - i_row - 1) * tile_xsize, in TIFFReadRGBATile()
2848 _TIFFmemset( raster + (tile_ysize - i_row - 1) * tile_xsize+read_xsize, in TIFFReadRGBATile()
2849 0, sizeof(uint32) * (tile_xsize - read_xsize) ); in TIFFReadRGBATile()
2853 _TIFFmemset( raster + (tile_ysize - i_row - 1) * tile_xsize, in TIFFReadRGBATile()
[all …]
/external/webp/src/dsp/
Dlossless_enc.c1001 const int tile_xsize = VP8LSubSampleSize(width, bits); in VP8LColorSpaceTransform() local
1010 for (tile_x = 0; tile_x < tile_xsize; ++tile_x) { in VP8LColorSpaceTransform()
1016 const int offset = tile_y * tile_xsize + tile_x; in VP8LColorSpaceTransform()
1018 ColorCodeToMultipliers(image[offset - tile_xsize], &prev_y); in VP8LColorSpaceTransform()