Home | History | Annotate | Download | only in m_syswrap

Lines Matching refs:LdtEnt

433    out->LdtEnt.Words.word1 = entry_1;
434 out->LdtEnt.Words.word2 = entry_2;
649 if (gdt[idx].LdtEnt.Words.word1 == 0
650 && gdt[idx].LdtEnt.Words.word2 == 0)
698 info->base_addr = ( gdt[idx].LdtEnt.Bits.BaseHi << 24 ) |
699 ( gdt[idx].LdtEnt.Bits.BaseMid << 16 ) |
700 gdt[idx].LdtEnt.Bits.BaseLow;
701 info->limit = ( gdt[idx].LdtEnt.Bits.LimitHi << 16 ) |
702 gdt[idx].LdtEnt.Bits.LimitLow;
703 info->seg_32bit = gdt[idx].LdtEnt.Bits.Default_Big;
704 info->contents = ( gdt[idx].LdtEnt.Bits.Type >> 2 ) & 0x3;
705 info->read_exec_only = ( gdt[idx].LdtEnt.Bits.Type & 0x1 ) ^ 0x1;
706 info->limit_in_pages = gdt[idx].LdtEnt.Bits.Granularity;
707 info->seg_not_present = gdt[idx].LdtEnt.Bits.Pres ^ 0x1;
708 info->useable = gdt[idx].LdtEnt.Bits.Sys;