HomeSort by relevance Sort by last modified time
    Searched refs:OPN (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
r200_vertprog.c 64 #define OPN(operator, ip) {#operator, OPCODE_##operator, ip}
71 OPN(ABS, 1),
72 OPN(ADD, 2),
73 OPN(ARL, 1|SCALAR_FLAG),
74 OPN(DP3, 2),
75 OPN(DP4, 2),
76 OPN(DPH, 2),
77 OPN(DST, 2),
78 OPN(EX2, 1|SCALAR_FLAG),
79 OPN(EXP, 1|SCALAR_FLAG)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_vertprog.c 64 #define OPN(operator, ip) {#operator, OPCODE_##operator, ip}
71 OPN(ABS, 1),
72 OPN(ADD, 2),
73 OPN(ARL, 1|SCALAR_FLAG),
74 OPN(DP3, 2),
75 OPN(DP4, 2),
76 OPN(DPH, 2),
77 OPN(DST, 2),
78 OPN(EX2, 1|SCALAR_FLAG),
79 OPN(EXP, 1|SCALAR_FLAG)
    [all...]
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 479 const PHINode *OPN = PHIToResolve[phino];
480 unsigned NumPreds = OPN->getNumIncomingValues();
481 const BasicBlock *OldBB = OPN->getParent();
488 OPN = PHIToResolve[phino];
489 PHINode *PN = cast<PHINode>(VMap[OPN]);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 215 PHINode *OPN = cast<PHINode>(I);
216 PHINode *NPN = PHINode::Create(Ty, OPN->getNumIncomingValues());
217 for (unsigned i = 0, e = OPN->getNumIncomingValues(); i != e; ++i) {
218 Value *V =EvaluateInDifferentType(OPN->getIncomingValue(i), Ty, isSigned);
219 NPN->addIncoming(V, OPN->getIncomingBlock(i));
    [all...]

Completed in 202 milliseconds