Searched defs:overlay (Results 1 - 23 of 23) sorted by relevance

/external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
H A DSDL_lowvideo.h48 SDL_Overlay *overlay; member in struct:SDL_PrivateVideoData
56 #define current_overlay (_this->hidden->overlay)
H A DSDL_sysyuv.cc130 SDL_Overlay* overlay; local
156 /* Create the overlay structure */
157 overlay = (SDL_Overlay*)SDL_calloc(1, sizeof(SDL_Overlay));
159 if (overlay == NULL)
166 overlay->format = format;
167 overlay->w = width;
168 overlay->h = height;
169 overlay->hwdata = NULL;
172 overlay->hwfuncs = &be_yuvfuncs;
180 SDL_FreeYUVOverlay(overlay);
245 BE_LockYUVOverlay(_THIS, SDL_Overlay* overlay) argument
256 BE_UnlockYUVOverlay(_THIS, SDL_Overlay* overlay) argument
266 BE_DisplayYUVOverlay(_THIS, SDL_Overlay* overlay, SDL_Rect* src, SDL_Rect *dst) argument
295 BE_FreeYUVOverlay(_THIS, SDL_Overlay *overlay) argument
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/
H A DSDL_yuv.c38 SDL_Overlay *overlay; local
53 overlay = NULL;
57 overlay = video->CreateYUVOverlay(this, w, h, format, display);
59 /* If hardware YUV overlay failed ... */
60 if ( overlay == NULL ) {
61 overlay = SDL_CreateYUV_SW(this, w, h, format, display);
63 return overlay;
66 int SDL_LockYUVOverlay(SDL_Overlay *overlay) argument
68 if ( overlay == NULL ) {
69 SDL_SetError("Passed NULL overlay");
75 SDL_UnlockYUVOverlay(SDL_Overlay *overlay) argument
83 SDL_DisplayYUVOverlay(SDL_Overlay *overlay, SDL_Rect *dstrect) argument
141 SDL_FreeYUVOverlay(SDL_Overlay *overlay) argument
[all...]
H A DSDL_yuv_sw.c24 /* This is the software implementation of the YUV video overlay support */
928 SDL_Overlay *overlay; local
962 /* Create the overlay structure */
963 overlay = (SDL_Overlay *)SDL_malloc(sizeof *overlay);
964 if ( overlay == NULL ) {
968 SDL_memset(overlay, 0, (sizeof *overlay));
971 overlay->format = format;
972 overlay
1157 SDL_LockYUV_SW(_THIS, SDL_Overlay *overlay) argument
1162 SDL_UnlockYUV_SW(_THIS, SDL_Overlay *overlay) argument
1167 SDL_DisplayYUV_SW(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst) argument
1278 SDL_FreeYUV_SW(_THIS, SDL_Overlay *overlay) argument
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/photon/
H A DSDL_phyuv.c73 SDL_Overlay* overlay; local
81 /* Create the overlay structure */
82 overlay = SDL_calloc(1, sizeof(SDL_Overlay));
84 if (overlay == NULL)
91 overlay->format = format;
92 overlay->w = width;
93 overlay->h = height;
94 overlay->hwdata = NULL;
97 overlay->hwfuncs = &ph_yuvfuncs;
105 SDL_FreeYUVOverlay(overlay);
281 ph_LockYUVOverlay(_THIS, SDL_Overlay* overlay) argument
327 ph_UnlockYUVOverlay(_THIS, SDL_Overlay* overlay) argument
337 ph_DisplayYUVOverlay(_THIS, SDL_Overlay* overlay, SDL_Rect* src, SDL_Rect* dst) argument
459 ph_FreeYUVOverlay(_THIS, SDL_Overlay *overlay) argument
[all...]
H A DSDL_ph_video.h125 SDL_Overlay* overlay; member in struct:SDL_PrivateVideoData
144 #define current_overlay (this->hidden->overlay)
/external/netperf/
H A Dnetcpu_pstat.c66 } *overlay; local
76 overlay = (union overlay_u *)&(res[i]);
77 overlay->word[0] = psp[i].psp_idlecycles.psc_hi;
78 overlay->word[1] = psp[i].psp_idlecycles.psc_lo;
146 } *overlay; local
147 overlay = (union overlay_u *)&(firstcnt[j]);
148 overlay->word[0] = psp[j].psp_idlecycles.psc_hi;
149 overlay->word[1] = psp[j].psp_idlecycles.psc_lo;
182 } *overlay; local
183 overlay
[all...]
H A Dnetlib.c2474 } *overlay;
2476 overlay = (union overlay_u *)big_int;
2481 return(overlay->words[0]);
2484 return(overlay->words[1]);
2495 } *overlay;
2497 overlay = (union overlay_u *)big_int;
2502 return(overlay->words[1]);
2505 return(overlay->words[0]);
2454 } *overlay; local
2475 } *overlay; local
/external/qemu/distrib/sdl-1.2.12/src/video/directfb/
H A DSDL_DirectFB_yuv.c153 SDL_Overlay *overlay; local
156 /* Create the overlay structure */
157 overlay = SDL_calloc (1, sizeof(SDL_Overlay));
158 if (!overlay)
165 overlay->format = format;
166 overlay->w = width;
167 overlay->h = height;
170 overlay->hwfuncs = &directfb_yuvfuncs;
174 overlay->hwdata = hwdata;
178 SDL_FreeYUVOverlay (overlay);
208 DirectFB_LockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
244 DirectFB_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
253 DirectFB_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst) argument
274 DirectFB_FreeYUVOverlay(_THIS, SDL_Overlay *overlay) argument
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/windx5/
H A DSDL_dx5yuv.c124 SDL_Overlay *overlay; local
148 /* Create the overlay structure */
149 overlay = (SDL_Overlay *)SDL_malloc(sizeof *overlay);
150 if ( overlay == NULL ) {
154 SDL_memset(overlay, 0, (sizeof *overlay));
157 overlay->format = format;
158 overlay->w = width;
159 overlay
196 DX5_LockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
242 DX5_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
250 DX5_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst) argument
283 DX5_FreeYUVOverlay(_THIS, SDL_Overlay *overlay) argument
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/x11/
H A DSDL_x11yuv.c95 SDL_Overlay *overlay; local
197 /* Enable auto-painting of the overlay colorkey */
221 /* Create the overlay structure */
222 overlay = (SDL_Overlay *)SDL_malloc(sizeof *overlay);
223 if ( overlay == NULL ) {
228 SDL_memset(overlay, 0, (sizeof *overlay));
231 overlay->format = format;
232 overlay
347 X11_LockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
352 X11_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
357 X11_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst) argument
382 X11_FreeYUVOverlay(_THIS, SDL_Overlay *overlay) argument
[all...]
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DPageClientQt.h112 // the overlay is here for one reason only: to have the scroll-bars and other
158 , overlay(0)
162 // the overlay and stays alive for the lifetime of
230 // the overlay gets instantiated when the root layer is attached, and get deleted when it's detached
231 QGraphicsItemOverlay* overlay; member in class:WebCore::PageClientQGraphicsWidget
233 // we need to put the root graphics layer behind the overlay (which contains the scrollbar)
/external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/
H A DSDL_gsyuv.c77 SDL_Overlay *overlay; local
114 /* Create the overlay structure */
115 overlay = (SDL_Overlay *)SDL_malloc(sizeof *overlay);
116 if ( overlay == NULL ) {
120 SDL_memset(overlay, 0, (sizeof *overlay));
123 overlay->format = format;
124 overlay->w = width;
125 overlay
308 GS_LockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
313 GS_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
318 GS_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst) argument
441 GS_FreeYUVOverlay(_THIS, SDL_Overlay *overlay) argument
[all...]
/external/aac/libAACdec/src/
H A Dchannelinfo.h259 } overlay; member in struct:__anon40
270 * - pComData->overlay memory pointed to can be overwritten after each CChannelElement_Decode() call..
/external/qemu/distrib/zlib-1.2.3/
H A Ddeflate.c231 ushf *overlay; local
232 /* We overlay pending_buf and d_buf+l_buf. This works since the average
293 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
294 s->pending_buf = (uchf *) overlay;
304 s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
903 ushf *overlay;
923 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
924 ds->pending_buf = (uchf *) overlay;
938 ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush);
/external/webkit/Source/WebKit/qt/Api/
H A Dqgraphicswebview.cpp80 QGraphicsItemOverlay* overlay() const function in class:QGraphicsWebViewPrivate
84 return pageClient()->overlay;
298 page()->mainFrame()->render(painter, d->overlay() ? QWebFrame::ContentsLayer : QWebFrame::AllLayers, option->exposedRect.toAlignedRect());
509 if (d->overlay())
510 d->overlay()->prepareGraphicsItemGeometryChange();
622 if (d->overlay())
623 d->overlay()->prepareGraphicsItemGeometryChange();
640 if (d->overlay())
641 d->overlay()->prepareGraphicsItemGeometryChange();
/external/zlib/
H A Ddeflate.c228 ushf *overlay; local
229 /* We overlay pending_buf and d_buf+l_buf. This works since the average
301 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
302 s->pending_buf = (uchf *) overlay;
312 s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
1021 ushf *overlay;
1041 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
1042 ds->pending_buf = (uchf *) overlay;
1056 ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush);
/external/chromium/chrome/browser/renderer_host/
H A Drender_widget_host_view_gtk.cc1025 SkColor overlay = SkColorSetA( local
1029 float r = SkColorGetR(overlay) / 255.;
1030 float g = SkColorGetG(overlay) / 255.;
1031 float b = SkColorGetB(overlay) / 255.;
1032 float a = SkColorGetA(overlay) / 255.;
/external/chromium/chrome/browser/themes/
H A Dbrowser_theme_pack.cc922 // If there is no theme overlay, don't tint the default frame,
982 // If they've provided a custom image, overlay it.
985 SkBitmap* overlay = overlay_it->second; local
987 for (int x = 0; x < bg_tab->width(); x += overlay->width())
988 canvas.drawBitmap(*overlay, static_cast<SkScalar>(x), 0, NULL);
/external/v8/test/cctest/
H A Dtest-regexp.cc1590 Vector<const uc16> overlay = CharacterRange::GetWordBounds(); local
1593 CharacterRange::Split(base, overlay, &included, &excluded);
1598 for (int j = 0; !in_overlay && j < overlay.length(); j += 2) {
1599 if (overlay[j] <= i && i <= overlay[j+1])
/external/v8/src/
H A Djsregexp.cc4172 Vector<const uc16> overlay,
4180 for (int i = 0; i < overlay.length(); i += 2) {
4181 table.AddRange(CharacterRange(overlay[i], overlay[i+1]),
4171 Split(ZoneList<CharacterRange>* base, Vector<const uc16> overlay, ZoneList<CharacterRange>** included, ZoneList<CharacterRange>** excluded) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-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 ...

Completed in 870 milliseconds