HomeSort by relevance Sort by last modified time
    Searched refs:pixels (Results 1 - 25 of 815) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2010-06-17-asmcrash.c 8 void avg_pixels8_mmx2(uint8_t *block, const uint8_t *pixels, int line_size, int h)
11 :"+g"(h), "+S"(pixels), "+D"(block)
  /external/chromium_org/third_party/WebKit/public/platform/
WebExternalBitmap.h 43 // invalidate the pointer returned from pixels if the size changes.
46 // Returns the pixels for the bitmap. The buffer that's returned will
49 virtual uint8* pixels() = 0;
  /external/chromium_org/third_party/WebKit/Source/platform/image-encoders/skia/
WEBPImageEncoder.cpp 49 static bool rgbPictureImport(const unsigned char* pixels, bool premultiplied, WebPImporter importRGBX, WebPImporter importRGB, WebPPicture* picture)
52 return importRGBX(picture, pixels, picture->width * 4);
54 // Write the RGB pixels to an rgb data buffer, alpha premultiplied, then import the rgb data.
60 for (unsigned char* data = rgb.data(); pixelCount-- > 0; pixels += 4) {
61 unsigned char alpha = pixels[3];
63 *data++ = SkMulDiv255Round(pixels[0], alpha);
64 *data++ = SkMulDiv255Round(pixels[1], alpha);
65 *data++ = SkMulDiv255Round(pixels[2], alpha);
67 *data++ = pixels[0];
68 *data++ = pixels[1]
    [all...]
JPEGImageEncoder.cpp 82 static void preMultipliedBGRAtoRGB(const unsigned char* pixels, unsigned int pixelCount, unsigned char* output)
84 const SkPMColor* input = reinterpret_cast_ptr<const SkPMColor*>(pixels);
92 static void RGBAtoRGB(const unsigned char* pixels, unsigned int pixelCount, unsigned char* output)
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[1]
159 unsigned char* pixels = inputPixels; local
185 unsigned char* pixels = inputPixels; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_pixel_draw.c 48 const GLvoid * pixels)
52 unpack, pixels);
57 unpack, pixels);
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_pixel_draw.c 48 const GLvoid * pixels)
52 unpack, pixels);
57 unpack, pixels);
  /external/chromium_org/cc/resources/
etc1_pixel_ref.cc 13 // Takes ownership of pixels.
14 ETC1PixelRef::ETC1PixelRef(scoped_ptr<uint8_t[]> pixels)
15 : pixels_(pixels.Pass()) {
20 // Takes ownership of pixels.
22 scoped_ptr<uint8_t[]> pixels)
23 : SkPixelRef(info), pixels_(pixels.Pass()) {
etc1_pixel_ref.h 21 explicit ETC1PixelRef(scoped_ptr<uint8_t[]> pixels);
24 // Takes ownership of pixels.
25 ETC1PixelRef(const SkImageInfo& info, scoped_ptr<uint8_t[]> pixels);
  /external/chromium_org/printing/
units.cc 43 int ConvertPixelsToPoint(int pixels) {
44 return ConvertUnit(pixels, kPixelsPerInch, kPointsPerInch);
47 double ConvertPixelsToPointDouble(double pixels) {
48 return ConvertUnitDouble(pixels, kPixelsPerInch, kPointsPerInch);
units.h 56 PRINTING_EXPORT int ConvertPixelsToPoint(int pixels);
59 PRINTING_EXPORT double ConvertPixelsToPointDouble(double pixels);
  /external/pixman/test/
pdf-op-test.c 23 static const uint32_t pixels[] = variable
45 for (s = 0; s < ARRAY_LENGTH (pixels); ++s)
50 PIXMAN_a8r8g8b8, 1, 1, (uint32_t *)&(pixels[s]), 4);
52 for (m = -1; m < ARRAY_LENGTH (pixels); ++m)
58 PIXMAN_a8r8g8b8, 1, 1, (uint32_t *)&(pixels[m]), 4);
61 for (d = 0; d < ARRAY_LENGTH (pixels); ++d)
64 uint32_t dp = pixels[d];
  /external/libvpx/libvpx/vp8/common/arm/armv6/
vp8_sad16x16_armv6.asm 38 ldr r6, [r0, #0x0] ; load 4 src pixels (1A)
39 ldr r8, [r2, #0x0] ; load 4 ref pixels (1A)
40 ldr r7, [r0, #0x4] ; load 4 src pixels (1A)
41 ldr r9, [r2, #0x4] ; load 4 ref pixels (1A)
42 ldr r10, [r0, #0x8] ; load 4 src pixels (1B)
43 ldr r11, [r0, #0xC] ; load 4 src pixels (1B)
45 usada8 r4, r8, r6, r4 ; calculate sad for 4 pixels
46 usad8 r8, r7, r9 ; calculate sad for 4 pixels
48 ldr r12, [r2, #0x8] ; load 4 ref pixels (1B)
49 ldr lr, [r2, #0xC] ; load 4 ref pixels (1B
    [all...]
vp8_variance_halfpixvar16x16_hv_armv6.asm 38 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...]
  /external/chromium_org/cc/debug/
rendering_stats_instrumentation.h 52 void AddPaint(base::TimeDelta duration, int64 pixels);
53 void AddRecord(base::TimeDelta duration, int64 pixels);
54 void AddRaster(base::TimeDelta duration, int64 pixels);
55 void AddAnalysis(base::TimeDelta duration, int64 pixels);
  /external/icu4c/layout/
AnchorTables.cpp 56 LEPoint pixels; local
58 fontInstance->transformFunits(x, y, pixels);
60 fontInstance->pixelsToUnits(pixels, anchor);
82 LEPoint pixels; local
86 fontInstance->transformFunits(x, y, pixels);
92 pixels.fX += adjx;
99 pixels.fY += adjy;
102 fontInstance->pixelsToUnits(pixels, anchor);
ValueRecords.cpp 47 LEPoint pixels; local
49 fontInstance->transformFunits(value, 0, pixels);
51 xPlacementAdjustment += fontInstance->xPixelsToUnits(pixels.fX);
52 yPlacementAdjustment += fontInstance->yPixelsToUnits(pixels.fY);
57 LEPoint pixels; local
59 fontInstance->transformFunits(0, value, pixels);
61 xPlacementAdjustment += fontInstance->xPixelsToUnits(pixels.fX);
62 yPlacementAdjustment += fontInstance->yPixelsToUnits(pixels.fY);
67 LEPoint pixels; local
69 fontInstance->transformFunits(value, 0, pixels);
77 LEPoint pixels; local
151 LEPoint pixels; local
161 LEPoint pixels; local
171 LEPoint pixels; local
181 LEPoint pixels; local
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/performance/
Throughput.java 30 public Throughput(int totalFrames, int periodFrames, int periodTime, int pixels) {
34 mPixels = pixels;
  /external/chromium_org/v8/test/mjsunit/
pixel-array-rounding.js 30 var pixels = new Uint8ClampedArray(11);
34 pixels[i] = (i * 1.1);
36 pixels[8] = 255.5;
37 pixels[9] = NaN;
38 pixels[10] = -0.5;
39 return pixels[1] + pixels[6];
44 assertEquals(6, pixels[5]);
47 assertEquals(6, pixels[5]);
48 assertEquals(255, pixels[8])
    [all...]
  /external/chromium_org/gpu/command_buffer/tests/
gl_copy_texture_CHROMIUM_unittest.cc 55 uint8 pixels[1 * 4] = { 255u, 0u, 0u, 255u }; local
59 pixels);
75 GLTestHelper::CheckPixels(0, 0, 1, 1, 0, pixels);
81 uint8 pixels[2][2][4]; local
84 pixels[y][x][0] = x + y;
85 pixels[y][x][1] = x + y;
86 pixels[y][x][2] = x + y;
87 pixels[y][x][3] = 255u;
93 pixels);
104 EXPECT_EQ(pixels[1-y][x][0], copied_pixels[y][x][0])
117 uint8 pixels[1 * 4] = { 2, 2, 2, 128 }; local
141 uint8 pixels[1 * 4] = { 16, 16, 16, 128 }; local
163 uint8 pixels[2][2][4]; local
199 uint8 pixels[2][2][4]; local
248 uint8 pixels[1 * 4] = { 255u, 0u, 0u, 255u }; local
302 uint8 pixels[1 * 4] = { 255u, 0u, 0u, 255u }; local
344 uint8 pixels[1 * 4] = { 255u, 0u, 0u, 255u }; local
475 uint8 pixels[1 * 4] = { 255u, 0u, 0u, 255u }; local
506 uint8 pixels[kHeight][kWidth][4] = {{{1}}}; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
readpix.h 41 GLvoid *pixels);
45 GLenum format, GLenum type, GLvoid *pixels );
50 GLvoid *pixels );
texgetimage.h 38 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/
readpix.h 41 GLvoid *pixels);
45 GLenum format, GLenum type, GLvoid *pixels );
50 GLvoid *pixels );
texgetimage.h 38 GLenum format, GLenum type, GLvoid *pixels,
51 GLenum format, GLenum type, GLvoid *pixels );
54 GLenum type, GLsizei bufSize, GLvoid *pixels );
  /external/chromium_org/content/renderer/
scoped_clipboard_writer_glue.cc 25 void ScopedClipboardWriterGlue::WriteBitmapFromPixels(const void* pixels,
28 context_->WriteBitmapFromPixels(&objects_, pixels, size);
  /external/chromium/chrome/browser/
icon_loader_linux.cc 19 int pixels = 48; local
21 pixels = 32;
23 pixels = 16;
25 return pixels;

Completed in 1004 milliseconds

1 2 3 4 5 6 7 8 91011>>