Lines Matching defs:access
516 * The 'access' field has the format specified in Table 21-2 of the Intel
519 * XXX The contents of the 'access' field are architecturally defined except
525 uint32_t access;
527 #define SEG_DESC_TYPE(access) ((access) & 0x001f)
528 #define SEG_DESC_DPL(access) (((access) >> 5) & 0x3)
529 #define SEG_DESC_PRESENT(access) (((access) & 0x0080) ? 1 : 0)
530 #define SEG_DESC_DEF32(access) (((access) & 0x4000) ? 1 : 0)
531 #define SEG_DESC_GRANULARITY(access) (((access) & 0x8000) ? 1 : 0)
532 #define SEG_DESC_UNUSABLE(access) (((access) & 0x10000) ? 1 : 0)