Searched refs:pixels_ (Results 1 – 10 of 10) sorted by relevance
/external/autotest/client/deps/glbench/src/ |
D | readpixeltest.cc | 17 ReadPixelTest() : pixels_(NULL) {} in ReadPixelTest() 26 void* pixels_; member in glbench::ReadPixelTest 32 glReadPixels(0, 0, g_width, g_height, GL_RGBA, GL_UNSIGNED_BYTE, pixels_); in TestFunc() 35 glReadPixels(0, 0, g_width, g_height, GL_RGBA, GL_UNSIGNED_BYTE, pixels_); in TestFunc() 47 pixels_ = buf.get(); in Run() 55 pixels_ = static_cast<void*>(buf.get() + 1); in Run()
|
D | texturetest.cc | 98 pixels_[i].reset(new char[buffer_size]); in Run() 99 memset(pixels_[i].get(), 255, buffer_size); in Run() 124 pixels_[i].reset(); in Run()
|
D | textureuploadtest.cc | 32 pixels_[i % kNumberOfTextures].get()); in TestFunc() 37 pixels_[i % kNumberOfTextures].get()); in TestFunc()
|
D | textureupdatetest.cc | 35 pixels_[i % kNumberOfTextures].get()); in TestFunc() 40 pixels_[i % kNumberOfTextures].get()); in TestFunc()
|
D | texturereusetest.cc | 37 pixels_[i % kNumberOfTextures].get()); in TestFunc() 42 pixels_[i % kNumberOfTextures].get()); in TestFunc()
|
D | texturetest.h | 40 scoped_ptr<char[]> pixels_[kNumberOfTextures]; variable
|
/external/opencv3/3rdparty/libwebp/dec/ |
D | vp8l.c | 647 const uint32_t* const rows = dec->pixels_ + dec->width_ * dec->last_row_; in ProcessRows() 936 free(dec->pixels_); in VP8LClear() 937 dec->pixels_ = NULL; in VP8LClear() 1077 dec->pixels_ = (uint32_t*)WebPSafeMalloc(total_num_pixels, bytes_per_pixel); in AllocateInternalBuffers() 1078 if (dec->pixels_ == NULL) { in AllocateInternalBuffers() 1084 argb_cache_needed ? dec->pixels_ + num_pixels + cache_top_pixels : NULL; in AllocateInternalBuffers() 1093 const uint32_t* const in = dec->pixels_ + dec->width_ * dec->last_row_; in ExtractAlphaRows() 1115 (uint8_t*)dec->pixels_ + dec->width_ * dec->last_row_; in ExtractPalettedAlphaRows() 1160 DecodeAlphaData(dec, (uint8_t*)dec->pixels_, dec->width_, dec->height_, in VP8LDecodeAlphaImageStream() 1162 DecodeImageData(dec, dec->pixels_, dec->width_, dec->height_, in VP8LDecodeAlphaImageStream() [all …]
|
D | vp8li.h | 68 uint32_t *pixels_; // Internal data: either uint8_t* for alpha member
|
/external/webp/src/dec/ |
D | vp8l.c | 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() [all …]
|
D | vp8li.h | 65 uint32_t *pixels_; // Internal data: either uint8_t* for alpha member
|