Searched refs:UsedSQEntries (Results 1 – 2 of 2) sorted by relevance
185 unsigned UsedSQEntries; variable211 unsigned getUsedSQEntries() const { return UsedSQEntries; } in getUsedSQEntries()213 void acquireSQSlot() { ++UsedSQEntries; } in acquireSQSlot()215 void releaseSQSlot() { --UsedSQEntries; } in releaseSQSlot()240 bool isSQEmpty() const { return !UsedSQEntries; } in isSQEmpty()242 bool isSQFull() const { return SQSize && SQSize == UsedSQEntries; } in isSQFull()
26 : LQSize(LQ), SQSize(SQ), UsedLQEntries(0), UsedSQEntries(0), in LSUnitBase()