Home
last modified time | relevance | path

Searched refs:vis (Results 1 – 25 of 42) sorted by relevance

12

/OK3568_Linux_fs/external/xserver/hw/dmx/examples/
H A Ddmxinfo.c103 if (!winfo[i].vis.width in print_info()
104 && !winfo[i].vis.height && !winfo[i].vis.x && !winfo[i].vis.y) in print_info()
106 else if (winfo[i].vis.width == winfo[i].pos.width in print_info()
107 && winfo[i].vis.height == winfo[i].pos.height) { in print_info()
108 printf(" %+d%+d\n", winfo[i].vis.x, winfo[i].vis.y); in print_info()
112 winfo[i].vis.width, winfo[i].vis.height, in print_info()
113 winfo[i].vis.x, winfo[i].vis.y); in print_info()
H A Ddmxwininfo.c86 winInfo[i].vis.width, winInfo[i].vis.height, in EventLoop()
87 winInfo[i].vis.x, winInfo[i].vis.y); in EventLoop()
109 Visual *vis; in main() local
132 vis = DefaultVisual(dpy, scr); in main()
135 vinfoTemp.visualid = vis->visualid; in main()
/OK3568_Linux_fs/external/xserver/hw/dmx/
H A Ddmx_glxvisuals.c214 XVisualInfo *vis, template; in GetGLXVisualConfigs() local
219 vis = XGetVisualInfo(dpy, VisualScreenMask | VisualIDMask, in GetGLXVisualConfigs()
222 if (vis != NULL) { in GetGLXVisualConfigs()
223 config->redMask = vis->red_mask; in GetGLXVisualConfigs()
224 config->greenMask = vis->green_mask; in GetGLXVisualConfigs()
225 config->blueMask = vis->blue_mask; in GetGLXVisualConfigs()
227 free(vis); in GetGLXVisualConfigs()
481 XVisualInfo *vis, template; in GetGLXFBConfigs() local
486 vis = XGetVisualInfo(dpy, VisualScreenMask | VisualIDMask, in GetGLXFBConfigs()
489 if (vis != NULL) { in GetGLXFBConfigs()
[all …]
H A Ddmx.c550 xRectangle *pos, xRectangle *vis) in dmxPopulatePanoramiX() argument
571 vis[count] = attr.vis; in dmxPopulatePanoramiX()
581 CARD32 *windows, xRectangle *pos, xRectangle *vis) in dmxPopulate() argument
588 return dmxPopulatePanoramiX(client, window, screens, windows, pos, vis); in dmxPopulate()
598 *vis = attr.vis; in dmxPopulate()
620 xRectangle *pos, *vis; in ProcDMXGetWindowAttributes() local
636 if (!(vis = xallocarray(count, sizeof(*vis)))) { in ProcDMXGetWindowAttributes()
644 pos, vis)) < 0) { in ProcDMXGetWindowAttributes()
645 free(vis); in ProcDMXGetWindowAttributes()
671 swaps(&vis[i].x); in ProcDMXGetWindowAttributes()
[all …]
H A Ddmxextension.c124 attr->vis.x = 0; in dmxGetWindowAttributes()
125 attr->vis.y = 0; in dmxGetWindowAttributes()
126 attr->vis.height = 0; in dmxGetWindowAttributes()
127 attr->vis.width = 0; in dmxGetWindowAttributes()
132 attr->vis.x = pWindow->drawable.x; in dmxGetWindowAttributes()
133 attr->vis.y = pWindow->drawable.y; in dmxGetWindowAttributes()
134 attr->vis.width = pWindow->drawable.width; in dmxGetWindowAttributes()
135 attr->vis.height = pWindow->drawable.height; in dmxGetWindowAttributes()
138 attr->vis.x -= attr->pos.x; in dmxGetWindowAttributes()
139 attr->vis.width = attr->pos.x + attr->pos.width - attr->vis.x; in dmxGetWindowAttributes()
[all …]
H A Ddmxextension.h67 xRectangle vis; member
/OK3568_Linux_fs/kernel/tools/memory-model/
H A Dlinux-kernel.cat170 let vis = cumul-fence* ; rfe? ; [Marked] ;
182 let ww-vis = fence | (strong-fence ; xbstar ; w-pre-bounded) |
183 (w-post-bounded ; vis ; w-pre-bounded)
184 let wr-vis = fence | (strong-fence ; xbstar ; r-pre-bounded) |
185 (w-post-bounded ; vis ; r-pre-bounded)
193 let rw-incoh = pre-race & fr & wr-vis^-1
194 let ww-incoh = pre-race & co & ww-vis^-1
198 let ww-nonrace = ww-vis & ((Marked * W) | rw-xbstar) & ((W * Marked) | wr-vis)
200 let wr-race = (pre-race & (co? ; rf)) \ wr-vis \ rw-xbstar^-1
/OK3568_Linux_fs/buildroot/package/libedit/
H A D0001-check-bsd-functions-in-libbsd.patch17 +# Search for libbsd for *vis functions
18 +AC_CHECK_LIB([bsd], [vis])
20 …up strerror strrchr strstr strtol issetugid wcsdup strlcpy strlcat getline vis strvis strunvis __s…
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/variant/detail/
H A Dapply_visitor_unary.hpp103 static Visitor& vis() BOOST_NOEXCEPT { in vis() function
112 return vis()( boost::declval< value_t& >() ); in deduce_impl()
123 return vis()( boost::declval< value_t& >() ); in deduce_impl()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/detail/rtree/utilities/
H A Dview.hpp33 void apply_visitor(Visitor & vis) const in apply_visitor()
35 m_rtree.apply_visitor(vis); in apply_visitor()
/OK3568_Linux_fs/u-boot/tools/buildman/
H A Dkconfiglib.py1906 vis = _get_visibility(self)
1915 if vis != "n":
1935 if vis != "n":
1938 new_val = self.config._eval_min(self.user_val, vis)
1981 if vis != "n":
2033 if vis != "n":
2073 vis = _get_visibility(self)
2074 if TRI_TO_INT[vis] > TRI_TO_INT[rev_dep]:
2075 return vis
3175 vis = "n"
[all …]
/OK3568_Linux_fs/external/xserver/dix/
H A Dcolormap.c175 #define NUMRED(vis) ((vis->redMask >> vis->offsetRed) + 1) argument
176 #define NUMGREEN(vis) ((vis->greenMask >> vis->offsetGreen) + 1) argument
177 #define NUMBLUE(vis) ((vis->blueMask >> vis->offsetBlue) + 1) argument
179 #define ALPHAMASK(vis) ((vis)->nplanes < 32 ? 0 : \ argument
180 (CARD32) ~((vis)->redMask|(vis)->greenMask|(vis)->blueMask))
182 #define ALPHAMASK(vis) 0 argument
185 #define RGBMASK(vis) (vis->redMask | vis->greenMask | vis->blueMask | ALPHAMASK(vis)) argument
/OK3568_Linux_fs/external/xserver/composite/
H A Dcompext.c538 VisualPtr vis; in CompositeExtensionInit() local
543 for (vis = pScreen->visuals; vis->vid != pScreen->rootVisual; vis++); in CompositeExtensionInit()
544 if ((vis->class | DynamicClass) == PseudoColor) in CompositeExtensionInit()
/OK3568_Linux_fs/buildroot/board/engicam/icorem6/
H A Dreadme.txt9 https://www.engicam.com/vis-prod/101120
11 https://www.engicam.com/vis-prod/101133
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/overlay/
H A Dtraversal_switch_detector.hpp186 std::set<signed_size_type> vis = visited; in get_isolation() local
187 vis.insert(parent_region_id); in get_isolation()
192 isolation_type const iso = get_isolation(prop, properties.region_id, vis); in get_isolation()
/OK3568_Linux_fs/buildroot/board/engicam/geam6ul/
H A Dreadme.txt9 https://www.engicam.com/vis-prod/101115
/OK3568_Linux_fs/buildroot/board/engicam/isiot/
H A Dreadme.txt9 https://www.engicam.com/vis-prod/101122
/OK3568_Linux_fs/buildroot/board/engicam/icorem6_rqs/
H A Dreadme.txt9 https://www.engicam.com/vis-prod/101124
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/iio/
H A Dmount-matrix.txt94 geomagnetic field. The system orientation vis-a-vis the world is defined with
/OK3568_Linux_fs/yocto/poky/meta/files/common-licenses/
H A DCC-BY-NC-SA-2.0-FR67vis-à-vis d'un tiers en raison de la violation des garanties prévues par l'article 5 du présent co…
H A DLiLiQ-P-1.163 …nts cause ou toute personne qu'il désigne, peuvent diffuser des versions révisées ou modifiées de …
H A DLiLiQ-R-1.187 …nts cause ou toute personne qu'il désigne, peuvent diffuser des versions révisées ou modifiées de …
H A DLiLiQ-Rplus-1.181 …nts cause ou toute personne qu'il désigne, peuvent diffuser des versions révisées ou modifiées de …
/OK3568_Linux_fs/external/xserver/hw/dmx/doc/
H A DDMXSpec-v1.txt137 vis: LISTofRECTANGLE
375 n*8 LISTofRECTANGLE vis
/OK3568_Linux_fs/kernel/tools/memory-model/Documentation/
H A Dexplanation.txt2040 relation (vis), where X ->vis Y is defined to hold if there is an
2101 Y). Therefore we have X ->vis Y: X must propagate to Y's CPU before Y
2108 cumul-fence, pb, and so on -- including vis) apply only to marked
2193 executed, i.e., X ->vis Y. (And if there is no rfe link then
2378 w-post-bounded ; vis ; w-pre-bounded
2386 w-post-bounded ; vis ; r-pre-bounded
2395 w-post-bounded ; vis ; r-pre-bounded
2397 sequence. For the cases involving a vis link, the LKMM also accepts
2427 R by one of the vis sequences listed above, then R ->fre W is
2432 to W' by one of the vis sequences listed above, then W' ->co W

12