Searched defs:NewC (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/v8/test/mjsunit/
H A Dprototype.js32 function NewC() { function
44 var c = NewC();
52 var c = NewC();
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp914 if (ConstantExpr *NewC = dyn_cast<ConstantExpr>(C))
915 C = ConstantFoldConstantExpression(NewC, TD, TLI);
973 Constant *NewC = cast<Constant>(*i); local
976 if (ConstantExpr *NewCE = dyn_cast<ConstantExpr>(NewC)) {
978 NewC = ConstantFoldConstantExpressionImpl(NewCE, TD, TLI, FoldedOps);
980 Ops.push_back(NewC);
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp388 Constant *NewC; local
390 NewC = ConstantArray::get(UserCA->getType(), NewOps);
392 NewC = ConstantStruct::get(UserCS->getType(), NewOps);
394 NewC = ConstantVector::get(NewOps);
397 NewC = cast<ConstantExpr>(UserC)->getWithOperands(NewOps);
400 UserC->replaceAllUsesWith(NewC);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp808 auto NewC = local
812 auto Shuffle = Builder->CreateShuffleVector(V1, V2, NewC);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1690 APInt NewC = C1; local
1694 NewC = NewC + 1;
1699 NewC = NewC.lshr(ShiftBits);
1700 if (ShiftBits && isLegalICmpImmediate(NewC.getSExtValue())) {
1706 SDValue CmpRHS = DAG.getConstant(NewC, CmpTy);
H A DDAGCombiner.cpp1769 SDValue NewC = DAG.getConstant(N0C->getAPIntValue() - N1C1->getAPIntValue(), local
1771 return DAG.getNode(ISD::SUB, SDLoc(N), VT, NewC,

Completed in 211 milliseconds