Home
last modified time | relevance | path

Searched refs:UsedSQEntries (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/HardwareUnits/
DLSUnit.h185 unsigned UsedSQEntries; variable
211 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()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/HardwareUnits/
DLSUnit.cpp26 : LQSize(LQ), SQSize(SQ), UsedLQEntries(0), UsedSQEntries(0), in LSUnitBase()