Searched defs:pixels (Results 1 - 25 of 107) sorted by path

12345

/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/chromium/chrome/browser/
H A Dicon_loader_linux.cc19 int pixels = 48; local
21 pixels = 32;
23 pixels = 16;
25 return pixels;
/external/chromium/chrome/browser/ui/gtk/
H A Dnine_box.cc181 guchar* pixels = gdk_pixbuf_get_pixels(pixbuf); local
193 guchar* pixel = &pixels[i * rowstride + j * 4];
/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dpdebuild.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/build/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
H A Dperformanceui.jarMETA-INF/MANIFEST.MF .project about.html plugin.xml build.properties images/FAIL ...
/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 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 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 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/opencv/
H A Dcvjni.cpp170 int *pixels = env->GetIntArrayElements(array_data, 0); local
171 if (pixels == 0) {
172 LOGE("Error getting int array of pixels.");
176 IplImage *image = loadPixels(pixels, width, height);
177 env->ReleaseIntArrayElements(array_data, pixels, 0);
677 int* pixels;
706 pixels = env->GetIntArrayElements(photo_data1, 0);
707 frameImage = loadPixels(pixels, width, height);
717 pixels = env->GetIntArrayElements(photo_data2, 0);
718 frameImage = loadPixels(pixels, widt
[all...]
H A Dcvjni.h146 IplImage* loadPixels(int* pixels, int width, int height) { argument
154 IMAGE( img, x, y, 0 ) = pixels[x+y*width] & 0xFF;
156 IMAGE( img, x, y, 1 ) = pixels[x+y*width] >> 8 & 0xFF;
158 IMAGE( img, x, y, 2 ) = pixels[x+y*width] >> 16 & 0xFF;
/external/opencv/otherlibs/highgui/
H A Dcvcap_socket.cpp186 // Helper to load pixels from a byte stream received over a socket.
187 static IplImage* loadPixels(char* pixels, int width, int height) { argument
196 IMAGE( img, x, y, 0 ) = pixels[pos + 3] & 0xFF;
198 IMAGE( img, x, y, 1 ) = pixels[pos + 2] & 0xFF;
200 IMAGE( img, x, y, 2 ) = pixels[pos + 1] & 0xFF;
261 // If we read all of the data we expected, we will load the frame from the pixels.
268 LOGV("full read of pixels failed");
/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.
H A Dmain.c933 int64_t pixels = hw->hw_lcd_width * hw->hw_lcd_height; local
944 if (pixels <= 250000)
946 else if (pixels <= 500000)
H A Dmultitouch-screen.c355 unsigned char* pixels)
371 mts_state->current_fb = pixels;
352 multitouch_opengles_fb_update(void* context, int w, int h, int ydir, int format, int type, unsigned char* pixels) argument

Completed in 489 milliseconds

12345