HomeSort by relevance Sort by last modified time
    Searched refs:swa (Results 1 - 15 of 15) sorted by null

  /external/valgrind/main/include/
pub_tool_sparsewa.h 57 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' has been modified since initIterSWA wa
    [all...]
  /external/valgrind/main/coregrind/
m_sparsewa.c 43 //////// SWA data structures
90 //////// SWA helper functions (bitarray)
116 //////// SWA helper functions (iteration)
118 static void swa_PUSH ( SparseWA* swa, UWord partial_key, Int curr_ix,
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
238 SparseWA* swa; local
    [all...]
  /external/chromium_org/ui/views/widget/desktop_aura/
x11_whole_screen_move_loop.cc 75 XSetWindowAttributes swa; local
76 memset(&swa, 0, sizeof(swa));
77 swa.event_mask = ButtonPressMask | ButtonReleaseMask | PointerMotionMask |
79 swa.override_redirect = True;
85 attribute_mask, &swa);
desktop_root_window_host_x11.cc 788 XSetWindowAttributes swa; local
789 memset(&swa, 0, sizeof(swa));
790 swa.background_pixmap = None;
795 swa.override_redirect = True;
816 &swa);
    [all...]
  /external/chromium_org/ui/compositor/test/
test_compositor_host_x11.cc 59 XSetWindowAttributes swa; local
60 swa.event_mask = StructureNotifyMask | ExposureMask;
61 swa.override_redirect = True;
70 CWEventMask | CWOverrideRedirect, &swa);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11app/
d3d11x11main.cpp 25 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/
d3d11x11main.cpp 25 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);
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
app-linux.c 140 XSetWindowAttributes swa; local
150 swa.colormap = XCreateColormap(sDisplay,
156 swa.border_pixel = 0;
157 swa.event_mask = ExposureMask | StructureNotifyMask |
163 &swa);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d10app/
d3d10x11main.cpp 51 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/
d3d10x11main.cpp 51 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/third_party/skia/src/views/unix/
SkOSWindow_Unix.cpp 121 XSetWindowAttributes swa; local
122 swa.colormap = colorMap;
123 swa.event_mask = EVENT_MASK;
133 &swa);
  /external/skia/src/views/unix/
SkOSWindow_Unix.cpp 121 XSetWindowAttributes swa; local
122 swa.colormap = colorMap;
123 swa.event_mask = EVENT_MASK;
133 &swa);
  /external/chromium_org/ui/aura/
root_window_host_x11.cc 381 XSetWindowAttributes swa; local
382 memset(&swa, 0, sizeof(swa));
383 swa.background_pixmap = None;
384 swa.override_redirect = default_override_redirect;
393 &swa);
    [all...]
  /external/chromium_org/chromeos/display/
real_output_configurator_delegate.cc 88 XSetWindowAttributes swa = {0}; local
97 swa.background_pixel = color.pixel;
98 XChangeWindowAttributes(display_, window_, CWBackPixel, &swa);
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11video.c 1055 XSetWindowAttributes swa; local
1057 swa.background_pixel = 0;
1058 swa.border_pixel = 0;
1059 swa.colormap = SDL_XColorMap;
1064 | CWColormap, &swa);
    [all...]

Completed in 466 milliseconds