Searched refs:pixels (Results 26 - 50 of 653) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dreadpix.h41 GLvoid *pixels);
45 GLenum format, GLenum type, GLvoid *pixels );
50 GLvoid *pixels );
H A Dtexgetimage.h38 GLenum format, GLenum type, GLvoid *pixels,
51 GLenum format, GLenum type, GLvoid *pixels );
54 GLenum type, GLsizei bufSize, GLvoid *pixels );
/external/mesa3d/src/mesa/main/
H A Dreadpix.h41 GLvoid *pixels);
45 GLenum format, GLenum type, GLvoid *pixels );
50 GLvoid *pixels );
H A Dtexgetimage.h38 GLenum format, GLenum type, GLvoid *pixels,
51 GLenum format, GLenum type, GLvoid *pixels );
54 GLenum type, GLsizei bufSize, GLvoid *pixels );
/external/chromium_org/ui/ozone/platform/dri/
H A Ddri_buffer.cc48 void* pixels = const_cast<void*>(surface_->peekPixels(&info, NULL)); local
49 if (!pixels)
52 dri_->DestroyDumbBuffer(info, handle_, stride_, pixels);
56 void* pixels = NULL; local
57 if (!dri_->CreateDumbBuffer(info, &handle_, &stride_, &pixels)) {
73 surface_ = skia::AdoptRef(SkSurface::NewRasterDirect(info, pixels, stride_));
75 VLOG(2) << "Cannot install Skia pixels for drm buffer";
/external/chromium_org/printing/
H A Dunits.h56 PRINTING_EXPORT int ConvertPixelsToPoint(int pixels);
59 PRINTING_EXPORT double ConvertPixelsToPointDouble(double pixels);
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/arm/armv6/
H A Dvp8_variance_halfpixvar16x16_hv_armv6.asm38 add r9, r0, r1 ; pointer to pixels on the next row
39 ; 1st 4 pixels
40 ldr r4, [r0, #0] ; load source pixels a, row N
41 ldr r6, [r0, #1] ; load source pixels b, row N
42 ldr r5, [r9, #0] ; load source pixels c, row N+1
43 ldr r7, [r9, #1] ; load source pixels d, row N+1
45 ; x = (a + b + 1) >> 1, interpolate pixels horizontally on row N
49 ; y = (c + d + 1) >> 1, interpolate pixels horizontally on row N+1
56 ldr r5, [r2, #0] ; load 4 ref pixels
69 orr r6, r6, r7 ; differences of all 4 pixels
[all...]
H A Dvp8_variance_halfpixvar16x16_h_armv6.asm38 ; 1st 4 pixels
39 ldr r4, [r0, #0] ; load 4 src pixels
40 ldr r6, [r0, #1] ; load 4 src pixels with 1 byte offset
41 ldr r5, [r2, #0] ; load 4 ref pixels
58 orr r6, r6, r7 ; differences of all 4 pixels
64 uxtb16 r5, r6 ; byte (two pixels) to halfwords
65 uxtb16 r7, r6, ror #8 ; another two pixels to halfwords
68 ; 2nd 4 pixels
69 ldr r4, [r0, #4] ; load 4 src pixels
70 ldr r6, [r0, #5] ; load 4 src pixels wit
[all...]
H A Dvp8_variance_halfpixvar16x16_v_armv6.asm39 ; 1st 4 pixels
40 ldr r4, [r0, #0] ; load 4 src pixels
41 ldr r6, [r9, #0] ; load 4 src pixels from next row
42 ldr r5, [r2, #0] ; load 4 ref pixels
59 orr r6, r6, r7 ; differences of all 4 pixels
65 uxtb16 r5, r6 ; byte (two pixels) to halfwords
66 uxtb16 r7, r6, ror #8 ; another two pixels to halfwords
69 ; 2nd 4 pixels
70 ldr r4, [r0, #4] ; load 4 src pixels
71 ldr r6, [r9, #4] ; load 4 src pixels fro
[all...]
/external/libvpx/libvpx/vp8/common/arm/armv6/
H A Dvp8_variance_halfpixvar16x16_hv_armv6.asm38 add r9, r0, r1 ; pointer to pixels on the next row
39 ; 1st 4 pixels
40 ldr r4, [r0, #0] ; load source pixels a, row N
41 ldr r6, [r0, #1] ; load source pixels b, row N
42 ldr r5, [r9, #0] ; load source pixels c, row N+1
43 ldr r7, [r9, #1] ; load source pixels d, row N+1
45 ; x = (a + b + 1) >> 1, interpolate pixels horizontally on row N
49 ; y = (c + d + 1) >> 1, interpolate pixels horizontally on row N+1
56 ldr r5, [r2, #0] ; load 4 ref pixels
69 orr r6, r6, r7 ; differences of all 4 pixels
[all...]
H A Dvp8_variance_halfpixvar16x16_h_armv6.asm38 ; 1st 4 pixels
39 ldr r4, [r0, #0] ; load 4 src pixels
40 ldr r6, [r0, #1] ; load 4 src pixels with 1 byte offset
41 ldr r5, [r2, #0] ; load 4 ref pixels
58 orr r6, r6, r7 ; differences of all 4 pixels
64 uxtb16 r5, r6 ; byte (two pixels) to halfwords
65 uxtb16 r7, r6, ror #8 ; another two pixels to halfwords
68 ; 2nd 4 pixels
69 ldr r4, [r0, #4] ; load 4 src pixels
70 ldr r6, [r0, #5] ; load 4 src pixels wit
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/image-encoders/skia/
H A DJPEGImageEncoder.cpp82 static void preMultipliedBGRAtoRGB(const unsigned char* pixels, unsigned pixelCount, unsigned char* output) argument
84 const SkPMColor* input = reinterpret_cast_ptr<const SkPMColor*>(pixels);
92 static void RGBAtoRGB(const unsigned char* pixels, unsigned pixelCount, unsigned char* output) argument
94 for (; pixelCount-- > 0; pixels += 4) {
96 unsigned char alpha = pixels[3];
98 *output++ = SkMulDiv255Round(pixels[0], alpha);
99 *output++ = SkMulDiv255Round(pixels[1], alpha);
100 *output++ = SkMulDiv255Round(pixels[2], alpha);
102 *output++ = pixels[0];
103 *output++ = pixels[
159 unsigned char* pixels = inputPixels; local
185 unsigned char* pixels = inputPixels; local
[all...]
/external/chromium_org/cc/debug/
H A Drendering_stats_instrumentation.h51 void AddPaint(base::TimeDelta duration, int64 pixels);
52 void AddRecord(base::TimeDelta duration, int64 pixels);
53 void AddRaster(base::TimeDelta duration, int64 pixels);
54 void AddAnalysis(base::TimeDelta duration, int64 pixels);
/external/chromium_org/content/renderer/
H A Dscoped_clipboard_writer_glue.h21 void WriteBitmapFromPixels(const void* pixels, const gfx::Size& size);
/external/chromium_org/ppapi/generators/test_cgen/
H A Dstructs.h54 /* struct st2 { s_array pixels[640][480]; }; */
56 s_array pixels[640][480]; member in struct:st2
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableLength.h51 static PassRefPtrWillBeRawPtr<AnimatableLength> create(double pixels, double percent, bool hasPixels, bool hasPercent) argument
53 return adoptRefWillBeNoop(new AnimatableLength(pixels, percent, hasPixels, hasPercent));
56 AnimatableLength(double pixels, double percent, bool hasPixels, bool hasPercent) argument
57 : m_pixels(pixels)
/external/chromium_org/third_party/skia/src/animator/
H A DSkSnapshot.cpp64 SkBitmap pixels; local
65 pixels.allocPixels(maker.fCanvas->imageInfo());
66 maker.fCanvas->readPixels(&pixels, 0, 0);
67 encoder->encodeFile(name.c_str(), pixels, SkScalarFloorToInt(quality));
/external/qemu/android/
H A Dmultitouch-screen.h69 * require synchronization on any data structures it modifies. The pixels buffer
71 * The pixels buffer is intentionally not const: the callback may modify the data
78 * width, height Dimensions of the image, in pixels. Rows are tightly packed;
84 * pixels The framebuffer image.
96 unsigned char* pixels);
/external/icu/icu4c/source/layout/
H A DMarkToBasePosnSubtables.cpp67 LEPoint baseAnchor, markAdvance, pixels; local
77 fontInstance->getGlyphAdvance(markGlyph, pixels);
78 fontInstance->pixelsToUnits(pixels, markAdvance);
92 fontInstance->getGlyphAdvance(baseGlyph, pixels);
101 pixels.fX += px.fX; // and add that to the base glyph's advance
102 pixels.fY += px.fY;
107 fontInstance->pixelsToUnits(pixels, baseAdvance);
H A DMarkToMarkPosnSubtables.cpp66 LEPoint mark2Anchor, markAdvance, pixels; local
75 fontInstance->getGlyphAdvance(markGlyph, pixels);
76 fontInstance->pixelsToUnits(pixels, markAdvance);
88 fontInstance->getGlyphAdvance(mark2Glyph, pixels);
89 fontInstance->pixelsToUnits(pixels, mark2Advance);
/external/chromium_org/third_party/skia/src/image/
H A DSkSurface_Raster.cpp21 void (*releaseProc)(void* pixels, void* context), void* context,
81 SkSurface_Raster::SkSurface_Raster(const SkImageInfo& info, void* pixels, size_t rb, argument
82 void (*releaseProc)(void* pixels, void* context), void* context,
86 fBitmap.installPixels(info, pixels, rb, NULL, releaseProc, context);
135 // this as its backend, so we can't modify the image's pixels anymore.
143 SkSurface* SkSurface::NewRasterDirectReleaseProc(const SkImageInfo& info, void* pixels, size_t rb, argument
144 void (*releaseProc)(void* pixels, void* context),
152 if (NULL == pixels) {
156 return SkNEW_ARGS(SkSurface_Raster, (info, pixels, rb, releaseProc, context, props));
159 SkSurface* SkSurface::NewRasterDirect(const SkImageInfo& info, void* pixels, size_ argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFELighting.cpp74 int center = static_cast<int>(pixels->item(offset + cAlphaChannelOffset));
75 int right = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset));
77 int bottom = static_cast<int>(pixels->item(offset + cAlphaChannelOffset));
78 int bottomRight = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset));
85 int left = static_cast<int>(pixels->item(offset - cPixelSize + cAlphaChannelOffset));
86 int center = static_cast<int>(pixels->item(offset + cAlphaChannelOffset));
87 int right = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset));
89 int bottomLeft = static_cast<int>(pixels->item(offset - cPixelSize + cAlphaChannelOffset));
90 int bottom = static_cast<int>(pixels->item(offset + cAlphaChannelOffset));
91 int bottomRight = static_cast<int>(pixels
313 drawLighting(Uint8ClampedArray* pixels, int width, int height) argument
[all...]
/external/chromium_org/media/base/simd/
H A Dconvert_rgb_to_yuv_ssse3.inc8 ; The main code that converts RGB pixels to YUV pixels. This function roughly
9 ; consists of three parts: converting one ARGB pixel to YUV pixels, converting
10 ; two ARGB pixels to YUV pixels, and converting four ARGB pixels to YUV pixels.
21 ; // Convert two ARGB pixels to two Y pixels, one U pixel, and one V pixel.
26 ; // Convert four ARGB pixels t
[all...]
/external/chromium_org/android_webview/native/
H A Djava_browser_view_renderer_helper.cc39 AwPixelInfo* pixels() { return pixels_; } function in class:android_webview::__anon1829::ScopedPixelAccess
80 AwPixelInfo* pixels = auto_release_pixels.pixels(); local
81 if (pixels && pixels->state) {
83 SkCanvasStateUtils::CreateFromCanvasState(pixels->state));
157 void* pixels = NULL; local
158 if (AndroidBitmap_lockPixels(env, jbitmap.obj(), &pixels) < 0) {
159 LOG(ERROR) << "Error locking java bitmap pixels.";
168 bitmap.installPixels(info, pixels, bitmap_inf
[all...]
/external/chromium_org/third_party/skia/tests/
H A DTextureCompressionTest.cpp108 * Make sure that if you compress a texture with alternating black/white pixels, and
136 uint8_t* pixels = reinterpret_cast<uint8_t*>(bitmap.getPixels()); local
137 REPORTER_ASSERT(reporter, pixels);
138 if (NULL == pixels) {
145 pixels[x] = 0xFF;
147 pixels[x] = 0;
150 pixels += bitmap.rowBytes();
184 uint8_t* pixels = reinterpret_cast<uint8_t*>(bitmap.getPixels()); local
185 REPORTER_ASSERT(reporter, pixels);
186 if (NULL == pixels) {
230 uint8_t* pixels = reinterpret_cast<uint8_t*>(bitmap.getPixels()); local
[all...]

Completed in 856 milliseconds

1234567891011>>