Home
last modified time | relevance | path

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

/external/autotest/client/deps/glbench/src/
Dreadpixeltest.cc15 ReadPixelTest() : pixels_(NULL) {} in ReadPixelTest()
24 void* pixels_; member in glbench::ReadPixelTest
29 glReadPixels(0, 0, g_width, g_height, GL_RGBA, GL_UNSIGNED_BYTE, pixels_); in TestFunc()
32 glReadPixels(0, 0, g_width, g_height, GL_RGBA, GL_UNSIGNED_BYTE, pixels_); in TestFunc()
43 pixels_ = buf.get(); in Run()
51 pixels_ = static_cast<void*>(buf.get() + 1); in Run()
Dtexturetest.cc104 pixels_[i].reset(new char[buffer_size]); in Run()
105 memset(pixels_[i].get(), 255, buffer_size); in Run()
129 pixels_[i % kNumberOfTextures].get()); in Run()
134 pixels_[i % kNumberOfTextures].get()); in Run()
151 pixels_[i].reset(); in Run()
Dtextureuploadtest.cc30 pixels_[i % kNumberOfTextures].get()); in TestFunc()
35 pixels_[i % kNumberOfTextures].get()); in TestFunc()
Dtextureupdatetest.cc33 pixels_[i % kNumberOfTextures].get()); in TestFunc()
38 pixels_[i % kNumberOfTextures].get()); in TestFunc()
Dtexturereusetest.cc35 pixels_[i % kNumberOfTextures].get()); in TestFunc()
40 pixels_[i % kNumberOfTextures].get()); in TestFunc()
Dtexturetest.h39 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_);
1233 const StorageType type_,const void *pixels_);
1488 void *pixels_);
/external/webp/src/dec/
Dvp8l_dec.c784 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()
[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()
4075 const std::string &map_,const StorageType type_,const void *pixels_) in read() argument
4081 newImage=ConstituteImage(width_,height_,map_.c_str(),type_, pixels_, in read()
4940 const StorageType type_,void *pixels_) in write() argument
4943 ExportImagePixels(image(),x_,y_,columns_,rows_,map_.c_str(),type_,pixels_, in write()