Home
last modified time | relevance | path

Searched full:depths (Results 1 – 25 of 121) sorted by relevance

12345

/OK3568_Linux_fs/external/xserver/hw/xnest/
H A DScreen.c134 DepthPtr depths; in xnestOpenScreen() local
164 depths = (DepthPtr) malloc(MAXDEPTH * sizeof(DepthRec)); in xnestOpenScreen()
165 depths[0].depth = 1; in xnestOpenScreen()
166 depths[0].numVids = 0; in xnestOpenScreen()
167 depths[0].vids = (VisualID *) malloc(MAXVISUALSPERDEPTH * sizeof(VisualID)); in xnestOpenScreen()
205 if (depths[j].depth == xnestVisuals[i].depth) { in xnestOpenScreen()
212 depths[depthIndex].depth = xnestVisuals[i].depth; in xnestOpenScreen()
213 depths[depthIndex].numVids = 0; in xnestOpenScreen()
214 depths[depthIndex].vids = in xnestOpenScreen()
218 if (depths[depthIndex].numVids >= MAXVISUALSPERDEPTH) { in xnestOpenScreen()
[all …]
/OK3568_Linux_fs/external/xserver/hw/vfb/man/
H A DXvfb.man43 without the need for real hardware that supports the desired depths.
45 including testing clients against unusual depths and screen
60 .B "\-pixdepths \fIlist-of-depths\fP"
61 This option specifies a list of pixmap depths that the server should
62 support in addition to the depths implied by the supported screens.
63 \fIlist-of-depths\fP is a space-separated list of integers that can
115 depths of 3 and 27,
/OK3568_Linux_fs/kernel/drivers/firewire/
H A Dcore-topology.c129 * the hop count is the sum of the two biggest child depths plus 2.
136 int depths[2] = { -1, -1 }; in update_hop_count() local
147 if (node->ports[i]->max_depth > depths[0]) { in update_hop_count()
148 depths[1] = depths[0]; in update_hop_count()
149 depths[0] = node->ports[i]->max_depth; in update_hop_count()
150 } else if (node->ports[i]->max_depth > depths[1]) in update_hop_count()
151 depths[1] = node->ports[i]->max_depth; in update_hop_count()
154 node->max_depth = depths[0] + 1; in update_hop_count()
155 node->max_hops = max(max_child_hops, depths[0] + depths[1] + 2); in update_hop_count()
/OK3568_Linux_fs/external/xserver/fb/
H A Dfbscreen.c44 DepthPtr depths = pScreen->allowedDepths; in fbCloseScreen() local
49 free(depths[d].vids); in fbCloseScreen()
50 free(depths); in fbCloseScreen()
174 DepthPtr depths; in wfbFinishScreenInit() local
199 if (!fbInitVisuals(&visuals, &depths, &nvisuals, &ndepths, &rootdepth, in wfbFinishScreenInit()
204 rootdepth, ndepths, depths, in wfbFinishScreenInit()
H A Dfboverlay.c272 DepthPtr depths; in fbOverlayFinishScreenInit() local
289 if (!fbInitVisuals(&visuals, &depths, &nvisuals, &ndepths, &depth1, in fbOverlayFinishScreenInit()
296 depth1, ndepths, depths, in fbOverlayFinishScreenInit()
H A Dfbcmap_mi.c104 * of visuals and depths for the screen which coorespond to
/OK3568_Linux_fs/external/xserver/hw/xfree86/vbe/
H A DvbeModes.c91 * Find supported mode depths.
98 int depths = 0; in VBEFindSupportedDepths() local
102 depths |= GetDepthFlag(pVbe, vbe->VideoModePtr[i++]); in VBEFindSupportedDepths()
111 depths |= GetDepthFlag(pVbe, i); in VBEFindSupportedDepths()
116 if (depths & V_DEPTH_24_24) in VBEFindSupportedDepths()
118 if (depths & V_DEPTH_24_32) in VBEFindSupportedDepths()
122 return depths; in VBEFindSupportedDepths()
/OK3568_Linux_fs/external/xserver/mi/
H A Dmiscrinit.c242 int numDepths, /* number of depths supported */ in miScreenInit()
243 DepthRec * depths, /* supported depths */ in miScreenInit() argument
266 pScreen->allowedDepths = depths; in miScreenInit()
/OK3568_Linux_fs/kernel/Documentation/fb/
H A Dtridentfb.rst17 The driver supports 8, 16 and 32 bits per pixel depths.
28 switch resolution which the chip does not support at some depths for
H A Dintel810.rst37 - Supports color depths of 8, 16, 24 and 32 bits per pixel
167 Use directcolor visual instead of truecolor for pixel depths greater
/OK3568_Linux_fs/external/xserver/hw/kdrive/ephyr/
H A Dhostx.c1381 xcb_depth_iterator_t depths; in hostx_get_visuals_info() local
1388 depths = xcb_screen_allowed_depths_iterator(screens.data); in hostx_get_visuals_info()
1389 for (; depths.rem; xcb_depth_next(&depths)) { in hostx_get_visuals_info()
1390 xcb_visualtype_t *visuals = xcb_depth_visuals(depths.data); in hostx_get_visuals_info()
1393 nb_items + depths.data->visuals_len, in hostx_get_visuals_info()
1399 for (i = 0; i < depths.data->visuals_len; i++) { in hostx_get_visuals_info()
1402 host_visuals[nb_items + i].depth = depths.data->depth; in hostx_get_visuals_info()
1410 nb_items += depths.data->visuals_len; in hostx_get_visuals_info()
/OK3568_Linux_fs/yocto/poky/meta/recipes-graphics/xorg-driver/
H A Dxf86-video-vesa_2.5.0.bb10 supports depths 8, 15 16 and 24."
H A Dxf86-video-intel_git.bb6 chipsets. The driver supports depths 8, 15, 16 and 24. On some chipsets, \
/OK3568_Linux_fs/external/xserver/hw/xquartz/GL/
H A Dcapabilities.c230 * When this is enabled and visuals are chosen using depths in handleColorAndAccumulation()
427 /* Stencil bit depths */ in handleRendererDescriptions()
435 /* Color modes (RGB/RGBA depths supported */ in handleRendererDescriptions()
/OK3568_Linux_fs/kernel/block/
H A DKconfig.iosched24 synchronous writes, it will self-tune queue depths to achieve that
/OK3568_Linux_fs/kernel/drivers/video/fbdev/core/
H A Dcfbimgblt.c17 * their are cards with hardware that coverts images of various depths to the
26 * Code for depths not multiples of BITS_PER_LONG is still kludgy, which is
/OK3568_Linux_fs/external/xserver/hw/dmx/
H A Ddmxinit.c215 int ndepths = 0, *depths = NULL; in dmxPrintScreenInfo() local
222 if (!(depths = XListDepths(dpy, scr, &ndepths))) in dmxPrintScreenInfo()
272 dmxLogOutput(dmxScreen, "%d depths on screen %d: ", ndepths, scr); in dmxPrintScreenInfo()
274 dmxLogOutputCont(dmxScreen, "%c%d", i ? ',' : ' ', depths[i]); in dmxPrintScreenInfo()
293 XFree(depths); in dmxPrintScreenInfo()
H A Ddmx.h105 int beNumDepths; /**< Number of depths on BE server */
106 int *beDepths; /**< Depths from BE server */
H A Ddmxscrinit.c365 /* Do not free visuals, depths and pixmap formats here. Free them in dmxBECloseScreen()
444 /* Free visuals, depths and pixmap formats here so that they in dmxCloseScreen()
/OK3568_Linux_fs/external/xserver/hw/xfree86/drivers/modesetting/
H A Dmodesetting.man18 TrueColor visuals at framebuffer depths of 15, 16, 24, and 30. RandR
/OK3568_Linux_fs/external/xserver/hw/xnest/man/
H A DXnest.man131 to obtain a list of supported visual depths on the real server before starting
418 Doesn't run well on servers supporting different visual depths.
/OK3568_Linux_fs/external/xserver/hw/xwin/man/
H A DXWin.man344 Create a depth 8 PseudoColor visual when running in depths 15, 16, 24,
345 or 32, collectively known as TrueColor depths.
/OK3568_Linux_fs/kernel/Documentation/sound/cards/
H A Daudiophile-usb.rst49 * Two interfaces can't use different sample depths at the same time.
52 Please exit any audio application running before switching between bit depths
117 rates/depths automatically according to the user's needs. However, those who
/OK3568_Linux_fs/external/xserver/hw/xwayland/
H A Dxwayland.c1324 int depths[] = { 1, 4, 8, 15, 16, 24, 32 }; in InitOutput() local
1328 for (i = 0; i < ARRAY_SIZE(depths); i++) { in InitOutput()
1329 screen_info->formats[i].depth = depths[i]; in InitOutput()
1338 screen_info->numPixmapFormats = ARRAY_SIZE(depths); in InitOutput()
/OK3568_Linux_fs/kernel/drivers/staging/media/atomisp/pci/
H A Dmamoiada_params.h203 /* fifo depths */

12345