Home
last modified time | relevance | path

Searched refs:bcd2bin (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/boot/i386/libi386/
H A Dtime.c52 hr = bcd2bin((v86.ecx & 0xff00) >> 8); /* hour in %ch */ in bios_seconds()
53 minute = bcd2bin(v86.ecx & 0xff); /* minute in %cl */ in bios_seconds()
54 sec = bcd2bin((v86.edx & 0xff00) >> 8); /* second in %dh */ in bios_seconds()
H A Dbiospci.c245 bcd2bin((version >> 8) & 0xf), bcd2bin(version & 0xf), in biospci_detect()
249 sprintf(buf, "%d", bcd2bin((version >> 8) & 0xf)); in biospci_detect()
251 sprintf(buf, "%d", bcd2bin(version & 0xf)); in biospci_detect()
/illumos-gate/usr/src/boot/libsa/
H A Dstand.h372 #define bcd2bin(bcd) (bcd2bin_data[bcd]) macro