Lines Matching refs:pixels_
734 const uint32_t* const rows = dec->pixels_ + dec->width_ * dec->last_row_; in ProcessRows()
792 (uint8_t*)dec->pixels_ + dec->width_ * dec->last_row_; in ExtractPalettedAlphaRows()
1284 WebPSafeFree(dec->pixels_); in VP8LClear()
1285 dec->pixels_ = NULL; in VP8LClear()
1417 dec->pixels_ = (uint32_t*)WebPSafeMalloc(total_num_pixels, sizeof(uint32_t)); in AllocateInternalBuffers32b()
1418 if (dec->pixels_ == NULL) { in AllocateInternalBuffers32b()
1423 dec->argb_cache_ = dec->pixels_ + num_pixels + cache_top_pixels; in AllocateInternalBuffers32b()
1430 dec->pixels_ = (uint32_t*)WebPSafeMalloc(total_num_pixels, sizeof(uint8_t)); in AllocateInternalBuffers8b()
1431 if (dec->pixels_ == NULL) { in AllocateInternalBuffers8b()
1443 const uint32_t* const in = dec->pixels_ + dec->width_ * dec->last_row_; in ExtractAlphaRows()
1524 DecodeAlphaData(dec, (uint8_t*)dec->pixels_, dec->width_, dec->height_, in VP8LDecodeAlphaImageStream()
1526 DecodeImageData(dec, dec->pixels_, dec->width_, dec->height_, in VP8LDecodeAlphaImageStream()
1613 if (!DecodeImageData(dec, dec->pixels_, dec->width_, dec->height_, in VP8LDecodeImage()