Home
last modified time | relevance | path

Searched refs:NumOpcodes (Results 1 – 6 of 6) sorted by relevance

/external/llvm/include/llvm/MC/
DMCInstrInfo.h28 unsigned NumOpcodes; // Number of entries in the desc array variable
38 NumOpcodes = NO; in InitMCInstrInfo()
41 unsigned getNumOpcodes() const { return NumOpcodes; } in getNumOpcodes()
46 assert(Opcode < NumOpcodes && "Invalid opcode!"); in get()
52 assert(Opcode < NumOpcodes && "Invalid opcode!"); in getName()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCInstrInfo.h27 unsigned NumOpcodes; // Number of entries in the desc array variable
37 NumOpcodes = NO; in InitMCInstrInfo()
40 unsigned getNumOpcodes() const { return NumOpcodes; } in getNumOpcodes()
45 assert(Opcode < NumOpcodes && "Invalid opcode!"); in get()
51 assert(Opcode < NumOpcodes && "Invalid opcode!"); in getName()
/external/llvm-project/llvm/include/llvm/MC/
DMCInstrInfo.h42 unsigned NumOpcodes; // Number of entries in the desc array variable
55 NumOpcodes = NO; in InitMCInstrInfo()
58 unsigned getNumOpcodes() const { return NumOpcodes; } in getNumOpcodes()
63 assert(Opcode < NumOpcodes && "Invalid opcode!"); in get()
69 assert(Opcode < NumOpcodes && "Invalid opcode!"); in getName()
/external/llvm-project/llvm/tools/llvm-exegesis/lib/
DClustering.cpp186 void InstructionBenchmarkClustering::clusterizeNaive(unsigned NumOpcodes) { in clusterizeNaive() argument
189 OpcodeToPoints.resize(NumOpcodes); in clusterizeNaive()
194 assert(Opcode < NumOpcodes && "NumOpcodes is incorrect (too small)"); in clusterizeNaive()
200 assert(OpcodeToPoints.size() == NumOpcodes && "sanity check"); in clusterizeNaive()
201 assert(NumOpcodesSeen <= NumOpcodes && in clusterizeNaive()
239 void InstructionBenchmarkClustering::stabilize(unsigned NumOpcodes) { in stabilize() argument
320 Optional<unsigned> NumOpcodes) { in create() argument
333 if (NumOpcodes.hasValue()) in create()
334 Clustering.stabilize(NumOpcodes.getValue()); in create()
336 if (!NumOpcodes.hasValue()) in create()
[all …]
DClustering.h35 Optional<unsigned> NumOpcodes = None);
129 void clusterizeNaive(unsigned NumOpcodes);
132 void stabilize(unsigned NumOpcodes);
/external/mesa3d/src/mesa/main/
Ddlist.c102 GLuint NumOpcodes; member
1736 if (ctx->ListExt->NumOpcodes < MAX_DLIST_EXT_OPCODES) { in _mesa_dlist_alloc_opcode()
1737 const GLuint i = ctx->ListExt->NumOpcodes++; in _mesa_dlist_alloc_opcode()