Searched refs:swa (Results 1 - 15 of 15) sorted by relevance

/external/valgrind/main/include/
H A Dpub_tool_sparsewa.h57 void VG_(deleteSWA) ( SparseWA* swa );
59 // Add the binding key -> val to this swa. Any existing binding is
61 Bool VG_(addToSWA) ( SparseWA* swa, UWord key, UWord val );
63 // Delete key from swa, returning associated key and val if found.
68 Bool VG_(delFromSWA) ( SparseWA* swa,
72 // Indexes swa at 'key' (or, if you like, looks up 'key' in the
76 Bool VG_(lookupSWA) ( SparseWA* swa,
80 // Set up 'swa' for iteration.
81 void VG_(initIterSWA) ( SparseWA* swa );
84 // to segfault) if 'swa' ha
[all...]
/external/valgrind/main/coregrind/
H A Dm_sparsewa.c118 static void swa_PUSH ( SparseWA* swa, UWord partial_key, Int curr_ix, argument
121 Int sp = swa->isUsed;
125 swa->iterStack[sp].partial_key = partial_key;
126 swa->iterStack[sp].curr_ix = curr_ix;
127 swa->iterStack[sp].curr_nd = curr_nd;
128 swa->iterStack[sp].resume_point = resume_point;
129 swa->isUsed = sp+1;
132 static void swa_POP ( SparseWA* swa, argument
136 Int sp = swa->isUsed - 1;
140 *partial_key = swa
149 swa_new_LevelN( SparseWA* swa, Int level ) argument
176 nextIterSWA( SparseWA* swa, UWord* keyP, UWord* valP ) argument
238 SparseWA* swa; local
276 lookupSWA( SparseWA* swa, UWord* keyP, UWord* valP, UWord key ) argument
311 addToSWA( SparseWA* swa, UWord key, UWord val ) argument
368 delFromSWA( SparseWA* swa, UWord* oldK, UWord* oldV, UWord key ) argument
[all...]
/external/chromium_org/mojo/services/native_viewport/
H A Dnative_viewport_x11.cc41 XSetWindowAttributes swa; variable
42 memset(&swa, 0, sizeof(swa));
43 swa.override_redirect = False;
52 CWBackPixmap | CWOverrideRedirect, &swa);
/external/chromium_org/ui/compositor/test/
H A Dtest_compositor_host_x11.cc52 XSetWindowAttributes swa; local
53 swa.event_mask = StructureNotifyMask | ExposureMask;
54 swa.override_redirect = True;
63 CWEventMask | CWOverrideRedirect, &swa);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11app/
H A Dd3d11x11main.cpp25 XSetWindowAttributes swa; local
26 swa.colormap = cmap;
27 swa.border_pixel = 0;
28 swa.event_mask = StructureNotifyMask;
31 Window win = XCreateWindow(dpy, RootWindow(dpy, DefaultScreen(dpy)), 0, 0, width, height, 0, CopyFromParent, InputOutput, visual, CWBorderPixel | CWColormap| CWEventMask, &swa);
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11app/
H A Dd3d11x11main.cpp25 XSetWindowAttributes swa; local
26 swa.colormap = cmap;
27 swa.border_pixel = 0;
28 swa.event_mask = StructureNotifyMask;
31 Window win = XCreateWindow(dpy, RootWindow(dpy, DefaultScreen(dpy)), 0, 0, width, height, 0, CopyFromParent, InputOutput, visual, CWBorderPixel | CWColormap| CWEventMask, &swa);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d10app/
H A Dd3d10x11main.cpp51 XSetWindowAttributes swa; local
52 swa.colormap = cmap;
53 swa.border_pixel = 0;
54 swa.event_mask = StructureNotifyMask;
57 Window win = XCreateWindow(dpy, RootWindow(dpy, DefaultScreen(dpy)), 0, 0, width, height, 0, CopyFromParent, InputOutput, visual, CWBorderPixel | CWColormap| CWEventMask, &swa);
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10app/
H A Dd3d10x11main.cpp51 XSetWindowAttributes swa; local
52 swa.colormap = cmap;
53 swa.border_pixel = 0;
54 swa.event_mask = StructureNotifyMask;
57 Window win = XCreateWindow(dpy, RootWindow(dpy, DefaultScreen(dpy)), 0, 0, width, height, 0, CopyFromParent, InputOutput, visual, CWBorderPixel | CWColormap| CWEventMask, &swa);
/external/chromium_org/ui/views/widget/desktop_aura/
H A Dx11_whole_screen_move_loop.cc196 XSetWindowAttributes swa; local
197 memset(&swa, 0, sizeof(swa));
198 swa.event_mask = ButtonPressMask | ButtonReleaseMask | PointerMotionMask |
200 swa.override_redirect = True;
205 attribute_mask, &swa);
H A Ddesktop_root_window_host_x11.cc925 XSetWindowAttributes swa; local
926 memset(&swa, 0, sizeof(swa));
927 swa.background_pixmap = None;
932 swa.override_redirect = True;
939 swa.override_redirect = True;
943 swa.override_redirect = True;
950 if (swa.override_redirect)
963 &swa);
/external/chromium_org/third_party/skia/src/views/unix/
H A DSkOSWindow_Unix.cpp121 XSetWindowAttributes swa; local
122 swa.colormap = colorMap;
123 swa.event_mask = EVENT_MASK;
133 &swa);
/external/skia/src/views/unix/
H A DSkOSWindow_Unix.cpp121 XSetWindowAttributes swa; local
122 swa.colormap = colorMap;
123 swa.event_mask = EVENT_MASK;
133 &swa);
/external/chromium_org/ui/aura/
H A Droot_window_host_x11.cc324 XSetWindowAttributes swa; local
325 memset(&swa, 0, sizeof(swa));
326 swa.background_pixmap = None;
327 swa.override_redirect = default_override_redirect;
336 &swa);
/external/chromium_org/chromeos/display/
H A Dreal_output_configurator_delegate.cc98 XSetWindowAttributes swa = {0}; local
107 swa.background_pixel = color.pixel;
108 XChangeWindowAttributes(display_, window_, CWBackPixel, &swa);
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11video.c1055 XSetWindowAttributes swa; local
1057 swa.background_pixel = 0;
1058 swa.border_pixel = 0;
1059 swa.colormap = SDL_XColorMap;
1064 | CWColormap, &swa);

Completed in 932 milliseconds