Home
last modified time | relevance | path

Searched refs:last_pixel_ (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/third_party/externals/libwebp/src/dec/
Dvp8l_dec.c1016 int row = dec->last_pixel_ / width; in DecodeAlphaData()
1017 int col = dec->last_pixel_ % width; in DecodeAlphaData()
1020 int pos = dec->last_pixel_; // current position in DecodeAlphaData()
1093 dec->last_pixel_ = pos; in DecodeAlphaData()
1111 dec->last_pixel_ = dec->saved_last_pixel_; in RestoreState()
1121 int row = dec->last_pixel_ / width; in DecodeImageData()
1122 int col = dec->last_pixel_ % width; in DecodeImageData()
1125 uint32_t* src = data + dec->last_pixel_; in DecodeImageData()
1252 dec->last_pixel_ = (int)(src - data); // end-of-scan marker in DecodeImageData()
1505 dec->last_pixel_ = 0; // Reset for future DECODE_DATA_FUNC() calls. in DecodeImageStream()
Dvp8li_dec.h77 int last_pixel_; // last pixel decoded so far. However, it may member