Searched defs:overlay (Results 1 - 25 of 65) sorted by last modified time

123

/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);
1023 ushf *overlay;
1043 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
1044 ds->pending_buf = (uchf *) overlay;
1058 ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush);
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/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/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/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/photon/
H A DSDL_ph_video.h125 SDL_Overlay* overlay; member in struct:SDL_PrivateVideoData
144 #define current_overlay (this->hidden->overlay)
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...]
/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/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/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
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);
H A Ddsa_old.cpp770 const TOverlay overlay = {&aOverlay, aPriority}; local
771 return iOverlays.Insert(overlay, i);
/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/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/qemu/distrib/zlib-1.2.8/
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);
1023 ushf *overlay;
1043 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
1044 ds->pending_buf = (uchf *) overlay;
1058 ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush);
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_deflate.c227 ushf *overlay; local
228 /* We overlay pending_buf and d_buf+l_buf. This works since the average
300 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
301 s->pending_buf = (uchf *) overlay;
311 s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
1022 ushf *overlay;
1042 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
1043 ds->pending_buf = (uchf *) overlay;
1057 ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush);
/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/mesa3d/src/gallium/drivers/svga/include/
H A Dsvga_overlay.h29 * Definitions for video-overlay support.
86 * Struct definitions for the video overlay commands built on
92 uint32 overlay; member in struct:__anon27496
/external/mesa3d/src/gallium/state_trackers/glx/xlib/
H A Dglx_api.c970 _mesa_warning(NULL, "overlay not supported");
2619 glXGetTransparentIndexSUN(Display *dpy, Window overlay, Window underlay, argument
2623 (void) overlay;

Completed in 309 milliseconds

123