Searched refs:tile_ysize (Results 1 – 4 of 4) sorted by relevance
/external/pdfium/third_party/libtiff/ |
D | tif_getimage.c | 2830 uint32 tile_xsize, tile_ysize; in TIFFReadRGBATile() local 2847 TIFFGetFieldDefaulted(tif, TIFFTAG_TILELENGTH, &tile_ysize); in TIFFReadRGBATile() 2848 if( (col % tile_xsize) != 0 || (row % tile_ysize) != 0 ) in TIFFReadRGBATile() 2873 if( row + tile_ysize > img.height ) in TIFFReadRGBATile() 2876 read_ysize = tile_ysize; 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() 2913 for( i_row = read_ysize; i_row < tile_ysize; i_row++ ) { in TIFFReadRGBATile() 2914 _TIFFmemset( raster + (tile_ysize - i_row - 1) * tile_xsize, in TIFFReadRGBATile()
|
/external/opencv3/3rdparty/libtiff/ |
D | tif_getimage.c | 2769 uint32 tile_xsize, tile_ysize; in TIFFReadRGBATile() local 2786 TIFFGetFieldDefaulted(tif, TIFFTAG_TILELENGTH, &tile_ysize); in TIFFReadRGBATile() 2787 if( (col % tile_xsize) != 0 || (row % tile_ysize) != 0 ) in TIFFReadRGBATile() 2812 if( row + tile_ysize > img.height ) in TIFFReadRGBATile() 2815 read_ysize = tile_ysize; 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() 2852 for( i_row = read_ysize; i_row < tile_ysize; i_row++ ) { in TIFFReadRGBATile() 2853 _TIFFmemset( raster + (tile_ysize - i_row - 1) * tile_xsize, in TIFFReadRGBATile()
|
/external/webp/src/dsp/ |
D | lossless_enc.c | 1002 const int tile_ysize = VP8LSubSampleSize(height, bits); in VP8LColorSpaceTransform() local 1009 for (tile_y = 0; tile_y < tile_ysize; ++tile_y) { in VP8LColorSpaceTransform()
|
/external/opencv3/3rdparty/libwebp/dsp/ |
D | lossless.c | 1004 int tile_ysize = VP8LSubSampleSize(height, bits); in VP8LColorSpaceTransform() local 1013 for (tile_y = 0; tile_y < tile_ysize; ++tile_y) { in VP8LColorSpaceTransform()
|