Searched defs:pixels (Results 1 - 25 of 107) 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.c9 void avg_pixels8_mmx2(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
12 :"+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:__anon10884
/external/skia/tests/
H A DPremulAlphaRoundTripTest.cpp22 uint32_t* pixels = reinterpret_cast<uint32_t*>(bmp.getPixels()); local
26 pixels[a * 256 + r] = SkPackConfig8888(unpremulConfig, a, r, 0, 0);
36 * 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/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/webkit/Source/WebCore/platform/graphics/filters/
H A DFELighting.h56 ByteArray* pixels; member in struct:WebCore::FELighting::LightingData
/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;
H A Dthreadwin.c27 Uint8 *pixels; local
53 SDL_SetColorKey(icon, SDL_SRCCOLORKEY, *((Uint8 *)icon->pixels));
56 pixels = (Uint8 *)icon->pixels;
58 icon->format->palette->colors[*pixels].r,
59 icon->format->palette->colors[*pixels].g,
60 icon->format->palette->colors[*pixels].b);
70 if ( pixels[i] != *pixels )
302 /* Set the surface pixels an
[all...]
/external/quake/quake/src/QW/client/
H A Dgl_rmisc.c241 unsigned pixels[512*256], *out; local
291 // locate the original skin pixels
341 out2 = (byte *)pixels;
342 memset(pixels, 0, sizeof(pixels));
361 GL_Upload8_EXT ((byte *)pixels, scaled_width, scaled_height, false, false);
368 out = pixels;
369 memset(pixels, 0, sizeof(pixels));
390 GL_UNSIGNED_BYTE, pixels);
[all...]
/external/quake/quake/src/WinQuake/
H A Dgl_rmisc.cpp249 unsigned* pixels; local
279 // locate the original skin pixels
330 pixels = (unsigned*) malloc(PIXELS_SIZE);
331 if(!pixels)
339 out2 = (byte *)pixels;
340 memset(pixels, 0, PIXELS_SIZE);
359 GL_Upload8_EXT ((byte *)pixels, scaled_width, scaled_height, false, false);
367 out = pixels;
385 glTexImage2DHelper (GL_TEXTURE_2D, 0, gl_solid_format, scaled_width, scaled_height, 0, GL_RGBA, GL_UNSIGNED_BYTE, pixels);
392 free(pixels);
[all...]
/external/skia/include/core/
H A DSkPixelRef.h60 void* pixels() const { return fPixels; } function in class:SkPixelRef
62 /** Return the current colorTable (if any) if pixels are locked, or null.
75 /** Call to balanace a previous call to lockPixels(). Returns the pixels
83 * Some bitmaps can return a copy of their pixels for lockPixels(), but
85 * not be used as targets for a raster device/canvas (since all pixels
90 /** Returns a non-zero, unique value corresponding to the pixels in this
91 pixelref. Each time the pixels are changed (and notifyPixelsChanged is
96 /** Call this if you have changed the contents of the pixels. This will in-
103 contents of its pixels will not change for the lifetime of the pixelref.
108 pixels wil
[all...]

Completed in 7321 milliseconds

12345