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

12

/external/qemu/distrib/sdl-1.2.15/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.15/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.15/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/qemu/distrib/sdl-1.2.15/src/video/ps3/
H A DSDL_ps3yuv.c103 SDL_Overlay* overlay; local
106 /* Create the overlay structure */
107 overlay = (SDL_Overlay *) SDL_calloc(1, sizeof(SDL_Overlay));
108 if (overlay == NULL) {
112 SDL_memset(overlay, 0, (sizeof *overlay));
115 overlay->format = format;
116 overlay->w = width;
117 overlay->h = height;
118 overlay
198 PS3_LockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
208 PS3_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
218 PS3_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst) argument
314 PS3_FreeYUVOverlay(_THIS, SDL_Overlay *overlay) argument
[all...]
/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...]
/external/qemu/distrib/sdl-1.2.15/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.15/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/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.15/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/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11yuv.c47 /* Workaround intel i810 video overlay waiting with failing until the
107 static void X11_ClearYUVOverlay(SDL_Overlay *overlay) argument
111 switch (overlay->format)
115 for (y = 0; y < overlay->h; y++)
116 memset(overlay->pixels[0] + y * overlay->pitches[0],
117 0, overlay->w);
119 for (y = 0; y < (overlay->h / 2); y++)
121 memset(overlay->pixels[1] + y * overlay
162 SDL_Overlay *overlay; local
472 X11_LockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
477 X11_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay) argument
482 X11_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst) argument
507 X11_FreeYUVOverlay(_THIS, SDL_Overlay *overlay) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestoverlay.c18 SDL_Overlay *overlay; variable
274 rect.w=overlay->w;
275 rect.h=overlay->h;
280 SDL_DisplayYUVOverlay(overlay,&rect);
285 rect.w=overlay->w/2;
286 rect.h=overlay->h/2;
296 SDL_DisplayYUVOverlay(overlay,&rect);
318 fprintf(stderr, " -fullscreen (test overlay in fullscreen mode)\n");
480 SDL_WM_SetCaption("SDL test overlay", "testoverlay");
531 /* Create the overlay */
[all...]
H A Dtestoverlay2.c3 * Test of the overlay used for moved pictures, test more closed to real life. *
272 fprintf(stderr, " -scale <scale factor> (initial scale of the overlay)\n");
285 SDL_Overlay* overlay; local
423 SDL_WM_SetCaption("SDL test overlay: running moose", "testoverlay2");
478 overlay=SDL_CreateYUVOverlay(MOOSEPIC_W, MOOSEPIC_H, overlay_format, screen);
479 if (!overlay)
481 fprintf(stderr, "Couldn't create overlay: %s\n", SDL_GetError());
485 printf("Created %dx%dx%d %s %s overlay\n",overlay->w,overlay
[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/src/
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/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
H A Ddsa_old.cpp770 const TOverlay overlay = {&aOverlay, aPriority}; local
771 return iOverlays.Insert(overlay, i);
H A Ddsa.cpp788 const TOverlay overlay = {&aOverlay, aPriority}; local
789 return iOverlays.Insert(overlay, i);
H A Ddsa_new.cpp514 const TOverlay overlay = {&aOverlay, aPriority}; local
515 return iOverlays.Insert(overlay, i);
/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])

Completed in 372 milliseconds

12