Home
last modified time | relevance | path

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

/external/chromium_org/android_webview/native/
Djava_browser_view_renderer_helper.cc29 ScopedPixelAccess(JNIEnv* env, jobject java_canvas) : pixels_(NULL) { in ScopedPixelAccess()
31 pixels_ = g_sw_draw_functions->access_pixels(env, java_canvas); in ScopedPixelAccess()
35 if (pixels_) in ~ScopedPixelAccess()
36 g_sw_draw_functions->release_pixels(pixels_); in ~ScopedPixelAccess()
39 AwPixelInfo* pixels() { return pixels_; } in pixels()
42 AwPixelInfo* pixels_; member in android_webview::__anonefa759880111::ScopedPixelAccess
/external/chromium_org/ui/gfx/android/
Djava_bitmap.h34 inline void* pixels() { return pixels_; } in pixels()
35 inline const void* pixels() const { return pixels_; } in pixels()
46 void* pixels_; variable
Djava_bitmap.cc22 pixels_(NULL) { in JavaBitmap()
23 int err = AndroidBitmap_lockPixels(AttachCurrentThread(), bitmap_, &pixels_); in JavaBitmap()
25 DCHECK(pixels_); in JavaBitmap()
/external/chromium_org/cc/resources/
Dshared_bitmap.h40 uint8* pixels() { return pixels_; } in pixels()
61 uint8* pixels_; variable
Dshared_bitmap.cc18 pixels_(static_cast<uint8*>(memory_->memory())), in SharedBitmap()
27 : memory_(NULL), pixels_(pixels), id_(id), free_callback_(free_callback) { in SharedBitmap()
/external/webp/src/dec/
Dvp8l.c671 const uint32_t* const rows = dec->pixels_ + dec->width_ * dec->last_row_; in ProcessRows()
729 (uint8_t*)dec->pixels_ + dec->width_ * dec->last_row_; in ExtractPalettedAlphaRows()
1063 WebPSafeFree(dec->pixels_); in VP8LClear()
1064 dec->pixels_ = NULL; in VP8LClear()
1202 dec->pixels_ = (uint32_t*)WebPSafeMalloc(total_num_pixels, sizeof(uint32_t)); in AllocateInternalBuffers32b()
1203 if (dec->pixels_ == NULL) { in AllocateInternalBuffers32b()
1208 dec->argb_cache_ = dec->pixels_ + num_pixels + cache_top_pixels; in AllocateInternalBuffers32b()
1215 dec->pixels_ = (uint32_t*)WebPSafeMalloc(total_num_pixels, sizeof(uint8_t)); in AllocateInternalBuffers8b()
1216 if (dec->pixels_ == NULL) { in AllocateInternalBuffers8b()
1228 const uint32_t* const in = dec->pixels_ + dec->width_ * dec->last_row_; in ExtractAlphaRows()
[all …]
Dvp8li.h64 uint32_t *pixels_; // Internal data: either uint8_t* for alpha member
/external/chromium_org/third_party/libwebp/dec/
Dvp8l.c671 const uint32_t* const rows = dec->pixels_ + dec->width_ * dec->last_row_; in ProcessRows()
729 (uint8_t*)dec->pixels_ + dec->width_ * dec->last_row_; in ExtractPalettedAlphaRows()
1063 WebPSafeFree(dec->pixels_); in VP8LClear()
1064 dec->pixels_ = NULL; in VP8LClear()
1202 dec->pixels_ = (uint32_t*)WebPSafeMalloc(total_num_pixels, sizeof(uint32_t)); in AllocateInternalBuffers32b()
1203 if (dec->pixels_ == NULL) { in AllocateInternalBuffers32b()
1208 dec->argb_cache_ = dec->pixels_ + num_pixels + cache_top_pixels; in AllocateInternalBuffers32b()
1215 dec->pixels_ = (uint32_t*)WebPSafeMalloc(total_num_pixels, sizeof(uint8_t)); in AllocateInternalBuffers8b()
1216 if (dec->pixels_ == NULL) { in AllocateInternalBuffers8b()
1228 const uint32_t* const in = dec->pixels_ + dec->width_ * dec->last_row_; in ExtractAlphaRows()
[all …]
Dvp8li.h64 uint32_t *pixels_; // Internal data: either uint8_t* for alpha member
/external/chromium_org/content/common/gpu/client/
Dgl_helper.cc216 unsigned char* pixels_, in Request()
222 pixels(pixels_), in Request()