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

/illumos-gate/usr/src/uts/intel/sys/
H A Dsysi86.h122 * If acc1 is zero, the descriptor is cleared.
134 unsigned int acc1; /* access byte 5 */ member in struct:ssd
138 #define SI86SSD_TYPE(ssd) ((ssd)->acc1 & 0x1F)
139 #define SI86SSD_DPL(ssd) (((ssd)->acc1 >> 5) & 0x3)
140 #define SI86SSD_PRES(ssd) (((ssd)->acc1 >> 7) & 1)
/illumos-gate/usr/src/uts/intel/ia32/os/
H A Dsysi86.c256 ssd->acc1 = usd->usd_type;
257 ssd->acc1 |= usd->usd_dpl << 5;
258 ssd->acc1 |= usd->usd_p << (5 + 2);
287 usd->usd_type = ssd->acc1;
288 usd->usd_dpl = ssd->acc1 >> 5;
289 usd->usd_p = ssd->acc1 >> (5 + 2);
329 sgd->sgd_type = ssd->acc1;
330 sgd->sgd_dpl = ssd->acc1 >> 5;
331 sgd->sgd_p = ssd->acc1 >> 7;
633 * If acc1 i
[all...]
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dgcore.c1437 ssd->acc1 = usd->usd_type;
1438 ssd->acc1 |= usd->usd_dpl << 5;
1439 ssd->acc1 |= usd->usd_p << (5 + 2);

Completed in 63 milliseconds