Searched refs:vendrel (Results 1 - 3 of 3) sorted by relevance

/xsrc/external/mit/xfsinfo/dist/
H A Dxfsinfo.c136 int vendrel = FSVendorRelease(svr); local in function:print_server_info
139 printf("%d.%d.%d", vendrel / 10000000,
140 (vendrel / 100000) % 100,
141 (vendrel / 1000) % 100);
142 if (vendrel % 1000)
143 printf(".%d", vendrel % 1000);
/xsrc/external/mit/xdpyinfo/dist/
H A Dxdpyinfo.c243 int vendrel = VendorRelease(dpy); local in function:print_display_info
246 if (vendrel >= 12100000) {
247 vendrel -= 10000000; /* Y2.1K compliant */
249 (vendrel / 100000) % 100,
250 (vendrel / 1000) % 100);
252 printf("%d.%d.%d", vendrel / 10000000,
253 (vendrel / 100000) % 100,
254 (vendrel / 1000) % 100);
256 if (vendrel % 1000)
257 printf(".%d", vendrel
261 int vendrel = VendorRelease(dpy); local in function:print_display_info
302 int vendrel = VendorRelease(dpy); local in function:print_display_info
[all...]
/xsrc/external/mit/xorg-server.old/dist/hw/dmx/
H A Ddmxinit.c562 int vendrel = VENDOR_RELEASE; local in function:InitOutput
567 major = vendrel / 100000000;
568 vendrel -= major * 100000000;
569 minor = vendrel / 1000000;
570 vendrel -= minor * 1000000;
571 year = vendrel / 10000;
572 vendrel -= year * 10000;
573 month = vendrel / 100;
574 vendrel -= month * 100;
575 day = vendrel;
[all...]

Completed in 69 milliseconds