Home | History | Annotate | Download | only in m_syswrap

Lines Matching refs:LdtEnt

456    out->LdtEnt.Words.word1 = entry_1;
457 out->LdtEnt.Words.word2 = entry_2;
672 if (gdt[idx].LdtEnt.Words.word1 == 0
673 && gdt[idx].LdtEnt.Words.word2 == 0)
721 info->base_addr = ( gdt[idx].LdtEnt.Bits.BaseHi << 24 ) |
722 ( gdt[idx].LdtEnt.Bits.BaseMid << 16 ) |
723 gdt[idx].LdtEnt.Bits.BaseLow;
724 info->limit = ( gdt[idx].LdtEnt.Bits.LimitHi << 16 ) |
725 gdt[idx].LdtEnt.Bits.LimitLow;
726 info->seg_32bit = gdt[idx].LdtEnt.Bits.Default_Big;
727 info->contents = ( gdt[idx].LdtEnt.Bits.Type >> 2 ) & 0x3;
728 info->read_exec_only = ( gdt[idx].LdtEnt.Bits.Type & 0x1 ) ^ 0x1;
729 info->limit_in_pages = gdt[idx].LdtEnt.Bits.Granularity;
730 info->seg_not_present = gdt[idx].LdtEnt.Bits.Pres ^ 0x1;
731 info->useable = gdt[idx].LdtEnt.Bits.Sys;