HomeSort by relevance Sort by last modified time
    Searched full:numops (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/llvm/include/llvm/IR/
User.h 68 User(Type *ty, unsigned vty, Use *, unsigned NumOps)
70 assert(NumOps < (1u << NumUserOperandsBits) && "Too many operands");
71 NumUserOperands = NumOps;
168 void setGlobalVariableNumOperands(unsigned NumOps) {
169 assert(NumOps <= 1 && "GlobalVariable can only have 0 or 1 operands");
170 NumUserOperands = NumOps;
176 void setNumHungOffUseOperands(unsigned NumOps) {
178 assert(NumOps < (1u << NumUserOperandsBits) && "Too many operands");
179 NumUserOperands = NumOps;
GlobalObject.h 30 GlobalObject(Type *Ty, ValueTy VTy, Use *Ops, unsigned NumOps,
33 : GlobalValue(Ty, VTy, Ops, NumOps, Linkage, Name, AddressSpace),
Constant.h 47 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps)
48 : User(ty, vty, Ops, NumOps) {}
InlineAsm.h 268 static unsigned getFlagWord(unsigned Kind, unsigned NumOps) {
269 assert(((NumOps << 3) & ~0xffff) == 0 && "Too many inline asm operands!");
271 return Kind | (NumOps << 3);
  /external/skia/tools/lua/
bbh_filter.lua 25 numOps = 0
68 currentInfo.numOps = currentInfo.numOps + 1
141 function(a, b) return a.numOps > b.numOps; end,
  /toolchain/binutils/binutils-2.25/opcodes/
i960-dis.c 111 short numops;
117 short numops;
212 if (ctrl_tab[i].numops == 1)
296 if (cobr_tab[i].numops > 1)
331 /* NOTE: In this table, the meaning of 'numops' is:
375 mem_tab[j].numops = mem_init[i].numops;
405 switch (mem_tab[i].numops)
477 /* NOTE: In this table, the meaning of 'numops' is:
696 reg_tab[j].numops = reg_init[i].numops
110 short numops; member in struct:tabent
116 short numops; member in struct:sparse_tabent
    [all...]
  /external/deqp/modules/gles3/stress/
es3sLongShaderTests.cpp 201 std::string makeExpression (const std::vector<std::string>& varNames, const int numOps);
242 const int numOps = isLast ? (m_spec.opsTotal - currentOpsTotal) : m_spec.opsPerExpression;
243 const size_t numVars = numOps + 1;
252 std::string expr = makeExpression(inNames, numOps);
260 currentOpsTotal += numOps;
277 std::string LongShaderGenerator::makeExpression (const std::vector<std::string>& varNames, const int numOps)
282 DE_ASSERT(varNames.size() > (size_t)numOps);
286 for (int ndx = 1; ndx <= numOps; ndx++)