Home
last modified time | relevance | path

Searched refs:pixels_ (Results 1 – 11 of 11) sorted by relevance

/external/autotest/client/deps/glbench/src/
Dreadpixeltest.cc18 ReadPixelTest() : pixels_(NULL) {} in ReadPixelTest()
27 void* pixels_; member in glbench::ReadPixelTest
33 glReadPixels(0, 0, g_width, g_height, GL_RGBA, GL_UNSIGNED_BYTE, pixels_); in TestFunc()
36 glReadPixels(0, 0, g_width, g_height, GL_RGBA, GL_UNSIGNED_BYTE, pixels_); in TestFunc()
48 pixels_ = buf.get(); in Run()
56 pixels_ = static_cast<void*>(buf.get() + 1); in Run()
Dtexturetest.cc98 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()
Dtextureuploadtest.cc32 pixels_[i % kNumberOfTextures].get()); in TestFunc()
37 pixels_[i % kNumberOfTextures].get()); in TestFunc()
Dtextureupdatetest.cc35 pixels_[i % kNumberOfTextures].get()); in TestFunc()
40 pixels_[i % kNumberOfTextures].get()); in TestFunc()
Dtexturereusetest.cc37 pixels_[i % kNumberOfTextures].get()); in TestFunc()
42 pixels_[i % kNumberOfTextures].get()); in TestFunc()
Dtexturetest.h40 std::unique_ptr<char[]> pixels_[kNumberOfTextures]; variable
/external/ImageMagick/Magick++/lib/Magick++/
DPixels.h69 Pixels(const Pixels& pixels_);
70 const Pixels& operator=(const Pixels& pixels_);
108 PixelData(const PixelData& pixels_);
109 const PixelData& operator=(const PixelData& pixels_);
DImage.h89 const StorageType type_,const void *pixels_);
1219 const StorageType type_,const void *pixels_);
1473 void *pixels_);
/external/webp/src/dec/
Dvp8l_dec.c729 const uint32_t* const rows = dec->pixels_ + dec->width_ * dec->last_row_; in ProcessRows()
817 (uint8_t*)dec->pixels_ + dec->width_ * first_row; in ExtractPalettedAlphaRows()
1322 WebPSafeFree(dec->pixels_); in VP8LClear()
1323 dec->pixels_ = NULL; in VP8LClear()
1455 dec->pixels_ = (uint32_t*)WebPSafeMalloc(total_num_pixels, sizeof(uint32_t)); in AllocateInternalBuffers32b()
1456 if (dec->pixels_ == NULL) { in AllocateInternalBuffers32b()
1461 dec->argb_cache_ = dec->pixels_ + num_pixels + cache_top_pixels; in AllocateInternalBuffers32b()
1468 dec->pixels_ = (uint32_t*)WebPSafeMalloc(total_num_pixels, sizeof(uint8_t)); in AllocateInternalBuffers8b()
1469 if (dec->pixels_ == NULL) { in AllocateInternalBuffers8b()
1482 const uint32_t* in = dec->pixels_ + dec->width_ * cur_row; in ExtractAlphaRows()
[all …]
Dvp8li_dec.h65 uint32_t *pixels_; // Internal data: either uint8_t* for alpha member
/external/ImageMagick/Magick++/lib/
DImage.cpp231 const std::string &map_,const StorageType type_,const void *pixels_) in Image() argument
237 read(width_,height_,map_.c_str(),type_,pixels_); in Image()
4013 const std::string &map_,const StorageType type_,const void *pixels_) in read() argument
4019 newImage=ConstituteImage(width_,height_,map_.c_str(),type_, pixels_, in read()
4872 const StorageType type_,void *pixels_) in write() argument
4875 ExportImagePixels(image(),x_,y_,columns_,rows_,map_.c_str(),type_,pixels_, in write()