Lines Matching refs:pixels_
784 const uint32_t* const rows = dec->pixels_ + dec->width_ * dec->last_row_; in ProcessRows()
875 (uint8_t*)dec->pixels_ + dec->width_ * first_row; in ExtractPalettedAlphaRows()
1386 WebPSafeFree(dec->pixels_); in VP8LClear()
1387 dec->pixels_ = NULL; in VP8LClear()
1519 dec->pixels_ = (uint32_t*)WebPSafeMalloc(total_num_pixels, sizeof(uint32_t)); in AllocateInternalBuffers32b()
1520 if (dec->pixels_ == NULL) { in AllocateInternalBuffers32b()
1525 dec->argb_cache_ = dec->pixels_ + num_pixels + cache_top_pixels; in AllocateInternalBuffers32b()
1532 dec->pixels_ = (uint32_t*)WebPSafeMalloc(total_num_pixels, sizeof(uint8_t)); in AllocateInternalBuffers8b()
1533 if (dec->pixels_ == NULL) { in AllocateInternalBuffers8b()
1546 const uint32_t* in = dec->pixels_ + dec->width_ * cur_row; in ExtractAlphaRows()
1632 DecodeAlphaData(dec, (uint8_t*)dec->pixels_, dec->width_, dec->height_, in VP8LDecodeAlphaImageStream()
1634 DecodeImageData(dec, dec->pixels_, dec->width_, dec->height_, in VP8LDecodeAlphaImageStream()
1728 if (!DecodeImageData(dec, dec->pixels_, dec->width_, dec->height_, in VP8LDecodeImage()