Home | History | Annotate | Download | only in dec

Lines Matching full:xsize

77 static int DecodeImageStream(int xsize, int ysize,
139 static WEBP_INLINE int PlaneCodeToDistance(int xsize, int plane_code) {
146 const int dist = yoffset * xsize + xoffset;
300 static int ReadHuffmanCodes(VP8LDecoder* const dec, int xsize, int ysize,
312 const int huffman_xsize = VP8LSubSampleSize(xsize, huffman_precision);
593 const uint32_t* const image, int xsize, int bits, int x, int y) {
595 return image[xsize * (y >> bits) + (x >> bits)];
849 static int ReadTransform(int* const xsize, int const* ysize,
864 transform->xsize_ = *xsize;
886 *xsize = VP8LSubSampleSize(transform->xsize_, bits);
967 static int DecodeImageStream(int xsize, int ysize,
972 int transform_xsize = xsize;