Home
last modified time | relevance | path

Searched refs:display (Results 1 – 25 of 2342) sorted by relevance

12345678910>>...94

/OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/
H A DMakefile73 display/intel_display_debugfs.o \
74 display/intel_pipe_crc.o
191 display/intel_atomic.o \
192 display/intel_atomic_plane.o \
193 display/intel_audio.o \
194 display/intel_bios.o \
195 display/intel_bw.o \
196 display/intel_cdclk.o \
197 display/intel_color.o \
198 display/intel_combo_phy.o \
[all …]
H A Di915_pci.c164 .display.has_overlay = 1, \
165 .display.cursor_needs_physical = 1, \
166 .display.overlay_needs_physical = 1, \
167 .display.has_gmch = 1, \
185 .display.has_overlay = 1, \
186 .display.overlay_needs_physical = 1, \
187 .display.has_gmch = 1, \
214 .display.has_fbc = 1,
220 .display.has_fbc = 1,
227 .display.has_gmch = 1, \
[all …]
/OK3568_Linux_fs/external/xserver/hw/dmx/examples/
H A Ddmxinfo.c49 print_window_id(const char *displayName, Display * display, in print_window_id() argument
54 if (!XFetchName(display, window, &name)) in print_window_id()
62 name ? name : "", (window == DefaultRootWindow(display)) in print_window_id()
69 print_info(Display * display, Window window, int level, int child) in print_info() argument
75 if (!DMXGetWindowAttributes(display, window, &count, 128, winfo)) { in print_info()
81 print_window_id("DMX", display, window, level, child); in print_info()
87 if (!DMXGetScreenAttributes(display, winfo[i].screen, &sinfo)) { in print_info()
119 print_tree(Display * display, Window window, int level, int child) in print_tree() argument
126 print_info(display, window, level, child); in print_tree()
128 if (!XQueryTree(display, window, &root, &parent, &list, &count)) { in print_tree()
[all …]
H A Dxinput.c57 printdmxinfo(Display * display, int id) in printdmxinfo() argument
66 if (!DMXQueryExtension(display, &event_base, &error_base)) in printdmxinfo()
68 if (!DMXQueryVersion(display, &major_version, &minor_version, in printdmxinfo()
73 if (!DMXGetInputAttributes(display, id, &iinf)) in printdmxinfo()
127 Display *display = NULL; in main() local
137 if (!(display = XOpenDisplay(argv[1]))) { in main()
153 if (!display && !(display = XOpenDisplay(NULL))) { in main()
158 ext = XGetExtensionVersion(display, INAME); in main()
165 if (!(devInfo = XListInputDevices(display, &count)) || !count) { in main()
222 printdmxinfo(display, i); in main()
[all …]
H A Dxled.c46 Display *display = NULL; in main() local
55 if (!(display = XOpenDisplay(argv[1]))) { in main()
67 if (!display && !(display = XOpenDisplay(NULL))) { in main()
76 if (XkbGetIndicatorMap(display, XkbAllIndicatorsMask, xkb)) { in main()
80 if (XkbGetNames(display, XkbAllNamesMask, xkb)) { in main()
91 printf("XkbSetIndicatorMap = %d\n", XkbSetIndicatorMap(display, ~0, xkb)); in main()
98 if (XkbGetIndicatorMap(display, XkbAllIndicatorsMask, xkb)) { in main()
107 printf("XGetKeyboardControl = %d\n", XGetKeyboardControl(display, &ks)); in main()
113 XChangeKeyboardControl(display, KBLed | KBLedMode, &kc)); in main()
115 printf("XGetKeyboardControl = %d\n", XGetKeyboardControl(display, &ks)); in main()
[all …]
H A Dres.c42 Display *display = NULL; in main() local
50 if (!(display = XOpenDisplay(argv[1]))) { in main()
60 if (!display && !(display = XOpenDisplay(NULL))) { in main()
65 if (!XResQueryExtension(display, &event, &error)) { in main()
71 if (!XResQueryVersion(display, &major_version, &minor_version)) { in main()
78 XResQueryClients(display, &count, &clients); in main()
85 XResQueryClientResources(display, clients[i].resource_base, &c, &types); in main()
90 char *name = XGetAtomName(display, types[j].resource_type); in main()
99 XCloseDisplay(display); in main()
H A Dxtest.c42 Display *display = NULL; in main() local
48 if (!(display = XOpenDisplay(argv[1]))) { in main()
58 if (!display && !(display = XOpenDisplay(NULL))) { in main()
63 if (!XTestQueryExtension(display, &event_base, &error_base, in main()
72 XTestFakeKeyEvent(display, 30, True, 10); in main()
73 XTestFakeKeyEvent(display, 30, False, 10); in main()
75 XCloseDisplay(display); in main()
H A Ddmxaddinput.c42 Display *display = NULL; in main() local
54 if (!(display = XOpenDisplay(argv[1]))) { in main()
59 if (!DMXQueryExtension(display, &event_base, &error_base)) { in main()
66 if (!DMXQueryVersion(display, in main()
75 status = DMXAddConsoleInput(display, argv[3], atoi(argv[4]), &id); in main()
78 status = DMXAddBackendInput(display, atoi(argv[3]), atoi(argv[4]), &id); in main()
83 XCloseDisplay(display); in main()
H A Devi.c42 Display *display = NULL; in main() local
49 if (!(display = XOpenDisplay(argv[1]))) { in main()
59 if (!display && !(display = XOpenDisplay(NULL))) { in main()
64 if (!XeviQueryVersion(display, &major_version, &minor_version)) { in main()
70 XeviGetVisualInfo(display, NULL, 0, &evi, &count); in main()
85 XCloseDisplay(display); in main()
H A Ddmxrminput.c42 Display *display = NULL; in main() local
53 if (!(display = XOpenDisplay(argv[1]))) { in main()
58 if (!DMXQueryExtension(display, &event_base, &error_base)) { in main()
65 if (!DMXQueryVersion(display, in main()
73 status = DMXRemoveInput(display, atoi(argv[2])); in main()
77 XCloseDisplay(display); in main()
/OK3568_Linux_fs/external/xserver/hw/dmx/input/
H A Ddmxcommon.c75 dmxCommonKbdSetAR(Display * display, unsigned char *old, unsigned char *new) in dmxCommonKbdSetAR() argument
84 XGetKeyboardControl(display, &ks); in dmxCommonKbdSetAR()
88 XDisplayKeycodes(display, &minKeycode, &maxKeycode); in dmxCommonKbdSetAR()
98 XChangeKeyboardControl(display, mask, &kc); in dmxCommonKbdSetAR()
106 dmxCommonKbdSetLeds(Display * display, unsigned long new) in dmxCommonKbdSetLeds() argument
114 XChangeKeyboardControl(display, KBLed | KBLedMode, &kc); in dmxCommonKbdSetLeds()
119 dmxCommonKbdSetCtrl(Display * display, KeybdCtrl * old, KeybdCtrl * new) in dmxCommonKbdSetCtrl() argument
129 XChangeKeyboardControl(display, mask, &kc); in dmxCommonKbdSetCtrl()
132 dmxCommonKbdSetLeds(display, new->leds); in dmxCommonKbdSetCtrl()
133 dmxCommonKbdSetAR(display, old ? old->autoRepeats : NULL, new->autoRepeats); in dmxCommonKbdSetCtrl()
[all …]
H A Ddmxconsole.c167 XDrawLine(priv->display, priv->pixmap, priv->gcCur, in dmxConsoleDrawFineCursor()
171 XDrawLine(priv->display, priv->pixmap, priv->gcCur, in dmxConsoleDrawFineCursor()
176 XDrawLine(priv->display, priv->pixmap, priv->gcCur, in dmxConsoleDrawFineCursor()
181 XDrawLine(priv->display, priv->pixmap, priv->gcCur, in dmxConsoleDrawFineCursor()
199 Display *dpy = priv->display; in dmxConsoleDrawWindows()
263 Display *dpy = priv->display; in dmxConsoleDraw()
291 XCopyArea(priv->display, priv->pixmap, priv->window, priv->gc, in dmxConsoleDraw()
293 XSync(priv->display, False); /* Not a backend display */ in dmxConsoleDraw()
306 XSetClipRectangles(priv->display, priv->gc, 0, 0, rect, 1, Unsorted); in dmxConsoleClearCursor()
307 XSetClipRectangles(priv->display, priv->gcDet, 0, 0, rect, 1, Unsorted); in dmxConsoleClearCursor()
[all …]
/OK3568_Linux_fs/kernel/drivers/video/fbdev/omap2/omapfb/
H A Domapfb-ioctl.c206 struct omap_dss_device *display = fb2display(fbi); in omapfb_setup_mem() local
216 if (display && display->driver->sync) in omapfb_setup_mem()
217 display->driver->sync(display); in omapfb_setup_mem()
281 struct omap_dss_device *display = fb2display(fbi); in omapfb_update_window() local
284 if (!display) in omapfb_update_window()
290 display->driver->get_resolution(display, &dw, &dh); in omapfb_update_window()
295 return display->driver->update(display, x, y, w, h); in omapfb_update_window()
301 struct omap_dss_device *display = fb2display(fbi); in omapfb_set_update_mode() local
307 if (!display) in omapfb_set_update_mode()
315 d = get_display_data(fbdev, display); in omapfb_set_update_mode()
[all …]
/OK3568_Linux_fs/kernel/drivers/staging/fbtft/
H A Dfbtft-core.c536 struct fb_info *fbtft_framebuffer_alloc(struct fbtft_display *display, in fbtft_framebuffer_alloc() argument
549 int txbuflen = display->txbuflen; in fbtft_framebuffer_alloc()
550 unsigned int bpp = display->bpp; in fbtft_framebuffer_alloc()
551 unsigned int fps = display->fps; in fbtft_framebuffer_alloc()
553 const s16 *init_sequence = display->init_sequence; in fbtft_framebuffer_alloc()
554 char *gamma = display->gamma; in fbtft_framebuffer_alloc()
558 if (display->gamma_num * display->gamma_len > in fbtft_framebuffer_alloc()
581 if (pdata->display.init_sequence) in fbtft_framebuffer_alloc()
582 init_sequence = pdata->display.init_sequence; in fbtft_framebuffer_alloc()
585 if (pdata->display.debug) in fbtft_framebuffer_alloc()
[all …]
/OK3568_Linux_fs/external/xserver/hw/dmx/config/
H A Dtest-l.out2 display d0:0 1x2;
3 display d1:0 +3+4;
4 display d2:0 100x200 @1x1;
5 display d3:0 +3+4 @2x2;
6 display d4:0 100x200+3+4 @3x3;
7 display d5:0 / 1x2+3+4;
8 display d6:0 / 1x2;
9 display d7:0 / +3+4;
10 display d8:0 / 1x2+3+4 @4x4;
11 display d9:0 11x22+33+44 / 111x222+333+444 @1000x1100;
H A Dtest-l.in2 display d0:0 1x2;
3 display d1:0 +3+4;
4 display d2:0 100x200 @1x1;
5 display d3:0 +3+4 @2x2;
6 display d4:0 100x200+3+4 @3x3;
7 display d5:0 / 1x2+3+4;
8 display d6:0 / 1x2;
9 display d7:0 / +3+4;
10 display d8:0 / 1x2+3+4 @4x4;
11 display d9:0 11x22+33+44 / 111x222+333+444 @1000x1100;
/OK3568_Linux_fs/u-boot/doc/
H A DREADME.LED_display1 LED display internal API
4 This README describes the LED display API.
6 The API is defined by the include file include/led-display.h
9 Then you need to provide the following functions to access LED display:
13 This function should control the state of the LED display. Argument is
15 DISPLAY_CLEAR -- clear the display
16 DISPLAY_HOME -- set the position to the beginning of display
20 This function should display it's parameter on the LED display in the
24 With this functions defined 'display' command will display it's
25 arguments on the LED display (or clear the display if called without
/OK3568_Linux_fs/kernel/drivers/acpi/acpica/
H A Dutbuffer.c34 void acpi_ut_dump_buffer(u8 *buffer, u32 count, u32 display, u32 base_offset) in acpi_ut_dump_buffer() argument
40 u32 display_data_only = display & DB_DISPLAY_DATA_ONLY; in acpi_ut_dump_buffer()
42 display &= ~DB_DISPLAY_DATA_ONLY; in acpi_ut_dump_buffer()
49 display = DB_BYTE_DISPLAY; in acpi_ut_dump_buffer()
69 acpi_os_printf("%*s", ((display * 2) + 1), " "); in acpi_ut_dump_buffer()
70 j += display; in acpi_ut_dump_buffer()
74 switch (display) { in acpi_ut_dump_buffer()
109 j += display; in acpi_ut_dump_buffer()
170 acpi_ut_debug_dump_buffer(u8 *buffer, u32 count, u32 display, u32 component_id) in acpi_ut_debug_dump_buffer() argument
180 acpi_ut_dump_buffer(buffer, count, display, 0); in acpi_ut_debug_dump_buffer()
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/display/
H A Dcirrus,clps711x-fb.txt8 - display : phandle to a display node as described in
9 Documentation/devicetree/bindings/display/panel/display-timing.txt.
10 Additionally, the display node has to define properties:
25 display = <&display>;
28 display: display {
33 display-timings {
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/qemu/qemu/
H A D0001-hw-display-qxl-Pass-requested-buffer-size-to-qxl_phy.patch5 ../qemu-6.2.0/hw/display/qxl.c: In function 'qxl_phys2virt':
6 ../qemu-6.2.0/hw/display/qxl.c:1477:67: error: 'size' undeclared (first use in this function); did …
10 ../qemu-6.2.0/hw/display/qxl.c:1477:67: note: each undeclared identifier is reported only once for …
17 Subject: [PATCH] hw/display/qxl: Pass requested buffer size to qxl_phys2virt()
39 hw/display/qxl-logger.c | 11 ++++++++---
40 hw/display/qxl-render.c | 20 ++++++++++++++++----
41 hw/display/qxl.c | 14 +++++++++-----
42 hw/display/qxl.h | 3 ++-
45 diff --git a/hw/display/qxl-logger.c b/hw/display/qxl-logger.c
47 --- a/hw/display/qxl-logger.c
[all …]
/OK3568_Linux_fs/buildroot/package/gpm/
H A D0001-Added-musl-support-to-libgpm-and-the-daemon.patch12 src/prog/display-buttons.c | 1 +
13 src/prog/display-coords.c | 1 +
29 diff --git a/src/prog/display-buttons.c b/src/prog/display-buttons.c
31 --- a/src/prog/display-buttons.c
32 +++ b/src/prog/display-buttons.c
40 /* display resulting data */
41 diff --git a/src/prog/display-coords.c b/src/prog/display-coords.c
43 --- a/src/prog/display-coords.c
44 +++ b/src/prog/display-coords.c
52 /* display resulting data */
/OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/nvkm/engine/gr/
H A Dnv50.c282 nv50_gr_mp_trap(struct nv50_gr *gr, int tpid, int display) in nv50_gr_mp_trap() argument
302 if (display) { in nv50_gr_mp_trap()
319 if (!mps && display) in nv50_gr_mp_trap()
326 u32 ustatus_new, int display, const char *name) in nv50_gr_tp_trap() argument
348 if (display) { in nv50_gr_tp_trap()
365 nv50_gr_mp_trap(gr, i, display); in nv50_gr_tp_trap()
368 if (ustatus && display) { in nv50_gr_tp_trap()
377 if (display) in nv50_gr_tp_trap()
384 if (display) in nv50_gr_tp_trap()
390 if (!tps && display) in nv50_gr_tp_trap()
[all …]
/OK3568_Linux_fs/buildroot/package/janus-gateway/
H A D0003-Fix-potential-Cross-site-Scripting-XSS-exploits-in-demos.patch29 - var display = list[f]["display"];
30 + var display = escapeXmlTags(list[f]["display"]);
38 - var display = list[f]["display"];
39 + var display = escapeXmlTags(list[f]["display"]);
47 - var display = list[f]["display"];
48 + var display = escapeXmlTags(list[f]["display"]);
55 var register = { request: "join", room: myroom, display: username };
118 @@ -514,3 +514,12 @@ function newRemoteFeed(id, display) {
198 var display = json["display"];
199 - participants[username] = display ? display : username;
[all …]
/OK3568_Linux_fs/kernel/Documentation/userspace-api/media/v4l/
H A Dext-ctrls-colorimetry.rst49 The mastering display defines the color volume (the color primaries,
50 white point and luminance range) of a display considered to be the
51 mastering display for the current video content.
65 primary component c of the mastering display in increments of 0.00002.
66 For describing the mastering display that uses Red, Green and Blue
73 primary component c of the mastering display in increments of 0.00002.
74 For describing the mastering display that uses Red, Green and Blue
81 point of the mastering display in increments of 0.00002.
85 point of the mastering display in increments of 0.00002.
88 - Specifies the nominal maximum display luminance of the mastering
[all …]
/OK3568_Linux_fs/kernel/Documentation/gpu/
H A Damdgpu-dc.rst2 drm/amd/display - Display Core (DC)
29 .. kernel-doc:: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
32 .. kernel-doc:: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h
38 .. kernel-doc:: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
41 .. kernel-doc:: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
47 .. kernel-doc:: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_irq.c
50 .. kernel-doc:: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_irq.c
53 .. kernel-doc:: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
59 .. kernel-doc:: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
62 .. kernel-doc:: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c

12345678910>>...94