Home | History | Annotate | Download | only in m_syswrap

Lines Matching refs:LdtEnt

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