Home
last modified time | relevance | path

Searched refs:vbl (Results 1 – 6 of 6) sorted by relevance

/external/libdrm/tests/vbltest/
Dvbltest.c61 drmVBlank vbl; in vblank_handler() local
66 vbl.request.type = DRM_VBLANK_RELATIVE | DRM_VBLANK_EVENT; in vblank_handler()
68 vbl.request.type |= DRM_VBLANK_SECONDARY; in vblank_handler()
69 vbl.request.sequence = 1; in vblank_handler()
70 vbl.request.signal = (unsigned long)data; in vblank_handler()
72 drmWaitVBlank(fd, &vbl); in vblank_handler()
101 drmVBlank vbl; in main() local
128 vbl.request.type = DRM_VBLANK_RELATIVE; in main()
130 vbl.request.type |= DRM_VBLANK_SECONDARY; in main()
131 vbl.request.sequence = 0; in main()
[all …]
/external/clang/test/CodeGen/
Dbuiltins-systemz-zvector.c19 volatile vector bool long long vbl; variable
98 ul = vec_extract(vbl, idx); in test_core()
125 vul = vec_insert(ul, vbl, idx); in test_core()
190 vbl = vec_perm(vbl, vbl, vuc); in test_core()
211 vbl = vec_permi(vbl, vbl, 0); in test_core()
213 vbl = vec_permi(vbl, vbl, 1); in test_core()
215 vbl = vec_permi(vbl, vbl, 2); in test_core()
217 vbl = vec_permi(vbl, vbl, 3); in test_core()
247 vsl = vec_sel(vsl, vsl, vbl); in test_core()
249 vul = vec_sel(vul, vul, vbl); in test_core()
[all …]
Dbuiltins-systemz-zvector-error.c19 volatile vector bool long long vbl; variable
88 vbl = vec_permi(vbl, vbl, idx); // expected-error {{no matching function}} in test_core()
91 vbl = vec_permi(vbl, vbl, -1); // expected-error {{no matching function}} in test_core()
94 vbl = vec_permi(vbl, vbl, 4); // expected-error {{no matching function}} in test_core()
152 vbl = vec_gather_element(vbl, vul, cptrul, idx); // expected-error {{no matching function}} in test_core()
155 vbl = vec_gather_element(vbl, vul, cptrul, -1); // expected-error {{no matching function}} in test_core()
158 vbl = vec_gather_element(vbl, vul, cptrul, 2); // expected-error {{no matching function}} in test_core()
216 vec_scatter_element(vbl, vul, ptrul, idx); // expected-error {{no matching function}} in test_core()
219 vec_scatter_element(vbl, vul, ptrul, -1); // expected-error {{no matching function}} in test_core()
222 vec_scatter_element(vbl, vul, ptrul, 2); // expected-error {{no matching function}} in test_core()
[all …]
/external/syslinux/com32/lib/sys/vesa/
Di915resolution.c592 int hbl, vbl, vfreq; in gtf_timings() local
594 vbl = y + (y+1)/(20000.0/(11*freq) - 1) + 1.5; in gtf_timings()
595 vfreq = vbl * freq; in gtf_timings()
601 *vblank = vbl - 1; in gtf_timings()
/external/libdrm/
Dxf86drm.c2089 int drmWaitVBlank(int fd, drmVBlankPtr vbl) in drmWaitVBlank() argument
2102 ret = ioctl(fd, DRM_IOCTL_WAIT_VBLANK, vbl); in drmWaitVBlank()
2103 vbl->request.type &= ~DRM_VBLANK_RELATIVE; in drmWaitVBlank()
Dxf86drm.h686 extern int drmWaitVBlank(int fd, drmVBlankPtr vbl);