Searched defs:pixels (Results 1 - 25 of 119) sorted by relevance

12345

/external/chromium/chrome/browser/
H A Dicon_loader_linux.cc19 int pixels = 48; local
21 pixels = 32;
23 pixels = 16;
25 return pixels;
/external/clang/test/CodeGen/
H A D2010-06-17-asmcrash.c8 void avg_pixels8_mmx2(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
11 :"+g"(h), "+S"(pixels), "+D"(block)
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DPlatformImage.h43 const uint8_t* pixels() const { return m_pixelData ? &m_pixelData[0] : 0; } function in class:WebCore::PlatformImage
H A DPlatformCanvas.h54 // A 2D buffer of pixels with an associated GraphicsContext.
61 // Scoped lock class to get temporary access to this canvas's pixels.
68 const uint8_t* pixels() const { return m_pixels; } function in class:WebCore::PlatformCanvas::AutoLocker
/external/qemu/android/skin/
H A Dsurface.h55 * the content of 'pixels' is copied into a heap-allocated buffer. otherwise
62 uint32_t* pixels,
65 /* surface pixels information for slow surfaces */
70 uint32_t* pixels; member in struct:__anon11136
/external/skia/tests/
H A DPremulAlphaRoundTripTest.cpp26 uint32_t* pixels = reinterpret_cast<uint32_t*>(bmp.getPixels()); local
30 pixels[a * 256 + r] = SkPackConfig8888(unpremulConfig, a, r, 0, 0);
40 * that causes the readback of pixels from BGRA canvas to an RGBA bitmap to
/external/webkit/Source/WebKit2/UIProcess/win/
H A DChunkedUpdateDrawingAreaProxyWin.cpp50 void* pixels = 0; local
51 m_backingStoreBitmap.set(::CreateDIBSection(0, &bitmapInfo, DIB_RGB_COLORS, &pixels, 0, 0));
92 void* pixels = 0; local
93 OwnPtr<HBITMAP> hBitmap(::CreateDIBSection(0, &bitmapInfo, DIB_RGB_COLORS, &pixels, updateChunkHandle, 0));
/external/icu4c/layout/
H A DAnchorTables.cpp56 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);
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 DMarkToLigaturePosnSubtables.cpp77 LEPoint ligatureAnchor, markAdvance, pixels; local
81 fontInstance->getGlyphAdvance(markGlyph, pixels);
82 fontInstance->pixelsToUnits(pixels, markAdvance);
94 fontInstance->getGlyphAdvance(ligatureGlyph, pixels);
95 fontInstance->pixelsToUnits(pixels, ligatureAdvance);
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);
H A DGlyphPositionAdjustments.cpp92 LEPoint entryAnchor, exitAnchor, pixels; local
120 fontInstance->getGlyphAdvance(glyphID, pixels);
121 fontInstance->pixelsToUnits(pixels, secondAdvance);
127 fontInstance->getGlyphAdvance(lastExitGlyphID, pixels);
128 fontInstance->pixelsToUnits(pixels, firstAdvance);
H A DLEFontInstance.cpp131 void LEFontInstance::pixelsToUnits(LEPoint &pixels, LEPoint &units) const argument
133 units.fX = xPixelsToUnits(pixels.fX);
134 units.fY = yPixelsToUnits(pixels.fY);
137 void LEFontInstance::transformFunits(float xFunits, float yFunits, LEPoint &pixels) const
139 pixels.fX = xUnitsToPoints(xFunits) * getScaleFactorX();
140 pixels.fY = yUnitsToPoints(yFunits) * getScaleFactorY();
H A DValueRecords.cpp47 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...]
/external/skia/gm/
H A Dbigmatrix.cpp65 uint32_t* pixels = reinterpret_cast<uint32_t*>(bmp.getPixels()); local
66 pixels[0] = SkPackARGB32(0xFF, 0xFF, 0x00, 0x00);
67 pixels[1] = SkPackARGB32(0xFF, 0x00, 0xFF, 0x00);
68 pixels[2] = SkPackARGB32(0x80, 0x00, 0x00, 0x00);
69 pixels[3] = SkPackARGB32(0xFF, 0x00, 0x00, 0xFF);
/external/skia/legacy/
H A DSavedPagePlayback.cpp52 int bitmapRowBytes, void* pixels) {
61 bitmap.setPixels(pixels);
49 legacy_skia_draw_picture(void* legacyPicture, void* matrixStorage, void* clipStorage, int bitmapWidth, int bitmapHeight, int bitmapConfig, int bitmapRowBytes, void* pixels) argument
/external/webkit/Source/WebCore/platform/image-encoders/skia/
H A DPNGImageEncoder.cpp50 static void preMultipliedBGRAtoRGBA(const void* pixels, int pixelCount, unsigned char* output) argument
53 const SkPMColor* input = static_cast<const SkPMColor*>(pixels);
102 unsigned char* pixels = inputPixels; local
106 preMultipliedBGRAtoRGBA(pixels, imageSize.width(), row.data());
109 png_write_row(png, pixels);
110 pixels += imageSize.width() * 4;
/external/chromium/chrome/browser/chromeos/
H A Dwm_overview_title.cc34 // The padding between the title and the URL, in pixels.
37 // This is the size (in pixels) of the drop shadow on the title and url text.
44 Font FindFontThisHigh(int pixels, Font base) { argument
47 while (font.GetHeight() < pixels) {
/external/qemu/android/
H A Dframebuffer.h27 * to a rotation that must be performed to the pixels stored in the framebuffer
48 int width; /* width in pixels */
49 int height; /* height in pixels */
55 void* pixels; /* pixel buffer */ member in struct:QFrameBuffer
97 * rectangle of the framebuffer pixels was updated and needs to be
105 * that must be applied before displaying the pixels.
107 * Note that it is assumed that all framebuffer pixels have changed too
120 * no more reference to its pixels should be done.
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/
H A DSDL_ps3yuv.c61 volatile void * pixels __attribute__((aligned(128))); member in struct:private_yuvhwdata
165 hwdata->pixels = (Uint8 *) memalign(16, width * height + ((width * height) >> 1));
166 if (hwdata->pixels == NULL) {
174 overlay->pixels = hwdata->planes;
181 overlay->pixels[0] = (Uint8 *)hwdata->pixels;
182 overlay->pixels[1] = overlay->pixels[0] +
184 overlay->pixels[2] = overlay->pixels[
[all...]
/external/skia/include/core/
H A DSkPixelRef.h21 * subclasses to correctly handle lock/unlock pixels. For performance
57 void* pixels() const { return fPixels; } function in class:SkPixelRef
59 /** Return the current colorTable (if any) if pixels are locked, or null.
74 /** Call to balanace a previous call to lockPixels(). Returns the pixels
82 * Some bitmaps can return a copy of their pixels for lockPixels(), but
84 * not be used as targets for a raster device/canvas (since all pixels
89 /** Returns a non-zero, unique value corresponding to the pixels in this
90 pixelref. Each time the pixels are changed (and notifyPixelsChanged is
95 /** Call this if you have changed the contents of the pixels. This will in-
102 contents of its pixels wil
[all...]
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFELighting.h56 ByteArray* pixels; member in struct:WebCore::FELighting::LightingData
/external/ceres-solver/examples/
H A Ddenoising.cc116 std::vector<double*> pixels; local
122 pixels.push_back(pixel);
129 pixels);
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestdyngl.c103 GLfloat pixels[NB_PIXELS*3]; local
141 pixels[3*i]=rand()%250-125;
142 pixels[3*i+1]=rand()%250-125;
143 pixels[3*i+2]=rand()%250-125;
182 f.glVertex3f(pixels[3*i],pixels[3*i+1],pixels[3*i+2]);
H A Dtestwin.c81 Uint8 *pixels; local
84 pixels = (Uint8 *)screen->pixels;
86 memset(pixels, black,
88 pixels += screen->pitch;

Completed in 1368 milliseconds

12345