Searched refs:OPN (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dr200_vertprog.c64 #define OPN(operator, ip) {#operator, OPCODE_##operator, ip} macro
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(EX
101 #undef OPN macro
[all...]
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_vertprog.c64 #define OPN(operator, ip) {#operator, OPCODE_##operator, ip} macro
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(EX
101 #undef OPN macro
[all...]
/external/llvm/lib/Transforms/Utils/
H A DCloneFunction.cpp479 const PHINode *OPN = PHIToResolve[phino]; local
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/
H A DInstCombineCasts.cpp215 PHINode *OPN = cast<PHINode>(I); local
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));

Completed in 848 milliseconds