Home | History | Annotate | Download | only in priv

Lines Matching refs:ent

2560 UInt get_segdescr_base ( VexGuestX86SegDescr* ent )
2562 UInt lo = 0xFFFF & (UInt)ent->LdtEnt.Bits.BaseLow;
2563 UInt mid = 0xFF & (UInt)ent->LdtEnt.Bits.BaseMid;
2564 UInt hi = 0xFF & (UInt)ent->LdtEnt.Bits.BaseHi;
2569 UInt get_segdescr_limit ( VexGuestX86SegDescr* ent )
2571 UInt lo = 0xFFFF & (UInt)ent->LdtEnt.Bits.LimitLow;
2572 UInt hi = 0xF & (UInt)ent->LdtEnt.Bits.LimitHi;
2574 if (ent->LdtEnt.Bits.Granularity)