Searched refs:IC (Results 51 - 75 of 94) sorted by relevance

1234

/external/cblas/testing/
H A Dc_dblat3.f2426 INTEGER I, IC, MI local in function:DBEG
2428 SAVE I, IC, MI
2434 IC = 0
2442 * IC is used to break up the period by skipping 1 value of I in 6.
2444 IC = IC + 1
2447 IF( IC.GE.5 )THEN
2448 IC = 0
H A Dc_sblat3.f2430 INTEGER I, IC, MI local in function:SBEG
2432 SAVE I, IC, MI
2438 IC = 0
2446 * IC is used to break up the period by skipping 1 value of I in 6.
2448 IC = IC + 1
2451 IF( IC.GE.5 )THEN
2452 IC = 0
H A Dc_zblat3.f2734 INTEGER I, IC, J, MI, MJ local in function:ZBEG
2736 SAVE I, IC, J, MI, MJ
2746 IC = 0
2754 * IC is used to break up the period by skipping 1 value of I or J
2757 IC = IC + 1
2762 IF( IC.GE.5 )THEN
2763 IC = 0
H A Dc_cblat1.f13 INTEGER IC variable in program:CCBLAT1
22 DO 20 IC = 1, 10
23 ICASE = IC
H A Dc_zblat1.f13 INTEGER IC variable in program:ZCBLAT1
22 DO 20 IC = 1, 10
23 ICASE = IC
/external/llvm/lib/IR/
H A DVerifier.cpp356 void visitICmpInst(ICmpInst &IC);
2394 void Verifier::visitICmpInst(ICmpInst &IC) { argument
2396 Type *Op0Ty = IC.getOperand(0)->getType();
2397 Type *Op1Ty = IC.getOperand(1)->getType();
2399 "Both operands to ICmp instruction are not of the same type!", &IC);
2402 "Invalid operand types for ICmp instruction", &IC);
2404 Assert(IC.getPredicate() >= CmpInst::FIRST_ICMP_PREDICATE &&
2405 IC.getPredicate() <= CmpInst::LAST_ICMP_PREDICATE,
2406 "Invalid predicate in ICmp instruction!", &IC);
2408 visitInstruction(IC);
[all...]
H A DInstructions.cpp3070 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
3071 IC->swapOperands();
3077 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
3078 return IC->isCommutative();
3083 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
3084 return IC->isEquality();
/external/clang/include/clang/AST/
H A DDecl.h1206 void setConstexpr(bool IC) { VarDeclBits.IsConstexpr = IC; }
1210 void setInitCapture(bool IC) { VarDeclBits.IsInitCapture = IC; }
1795 void setConstexpr(bool IC) { IsConstexpr = IC; }
/external/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp71 if (ICmpInst *IC = dyn_cast<ICmpInst>(U))
72 if (IC->isEquality())
73 if (Constant *C = dyn_cast<Constant>(IC->getOperand(1)))
86 if (ICmpInst *IC = dyn_cast<ICmpInst>(U))
87 if (IC->isEquality() && IC->getOperand(1) == With)
/external/eigen/blas/testing/
H A Dcblat1.f13 INTEGER IC variable in program:CBLAT1
22 DO 20 IC = 1, 10
23 ICASE = IC
H A Dzblat1.f13 INTEGER IC variable in program:ZBLAT1
22 DO 20 IC = 1, 10
23 ICASE = IC
H A Dcblat3.f3297 INTEGER I, IC, J, MI, MJ local in function:CBEG
3299 SAVE I, IC, J, MI, MJ
3309 IC = 0
3317 * IC is used to break up the period by skipping 1 value of I or J
3320 IC = IC + 1
3325 IF( IC.GE.5 )THEN
3326 IC = 0
H A Ddblat3.f2688 INTEGER I, IC, MI local in function:DBEG
2690 SAVE I, IC, MI
2696 IC = 0
2704 * IC is used to break up the period by skipping 1 value of I in 6.
2706 IC = IC + 1
2709 IF( IC.GE.5 )THEN
2710 IC = 0
H A Dsblat3.f2688 INTEGER I, IC, MI local in function:SBEG
2690 SAVE I, IC, MI
2696 IC = 0
2704 * IC is used to break up the period by skipping 1 value of I in 6.
2706 IC = IC + 1
2709 IF( IC.GE.5 )THEN
2710 IC = 0
H A Dzblat3.f3303 INTEGER I, IC, J, MI, MJ local in function:ZBEG
3305 SAVE I, IC, J, MI, MJ
3315 IC = 0
3323 * IC is used to break up the period by skipping 1 value of I or J
3326 IC = IC + 1
3331 IF( IC.GE.5 )THEN
3332 IC = 0
H A Ddblat1.f55 INTEGER IC variable in program:DBLAT1
64 DO 20 IC = 1, 13
65 ICASE = IC
H A Dsblat1.f55 INTEGER IC variable in program:SBLAT1
64 DO 20 IC = 1, 13
65 ICASE = IC
/external/llvm/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoderCommon.h78 ENUM_ENTRY(IC, 0, "says nothing about the instruction") \
/external/v8/src/
H A Dglobals.h318 class IC;
443 // State for inline cache call sites. Aliased as IC::State.
462 // of IC state only determined by a look at the IC and the typevector
/external/selinux/policycoreutils/mcstrans/share/examples/nato/setrans.d/
H A Deyes-only.conf312 ~c308=IC # Iceland
H A Drel.conf318 ~c200,~c308=IC # Iceland
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp654 InstCombiner *IC) {
656 return IC->Builder->CreateCast(CI->getOpcode(), SO, I.getType());
674 Value *RI = IC->Builder->CreateBinOp(BO->getOpcode(), Op0, Op1,
682 return IC->Builder->CreateICmp(CI->getPredicate(), Op0, Op1,
685 return IC->Builder->CreateICmp(CI->getPredicate(), Op0, Op1,
2652 DEBUG(dbgs() << "IC: DCE: " << *I << '\n');
2662 DEBUG(dbgs() << "IC: ConstFold to: " << *C << " from: " << *I << '\n');
2720 DEBUG(dbgs() << "IC: Visiting: " << OrigI << '\n');
2726 DEBUG(dbgs() << "IC: Old = " << *I << '\n'
2755 DEBUG(dbgs() << "IC
653 FoldOperationIntoSelectOperand(Instruction &I, Value *SO, InstCombiner *IC) argument
[all...]
/external/clang/lib/Sema/
H A DSemaAccess.cpp211 DeclContext *IC = S.computeDeclContext(getBaseObjectType()); local
212 InstanceContext = (IC ? cast<CXXRecordDecl>(IC)->getCanonicalDecl()
/external/llvm/utils/TableGen/
H A DX86DisassemblerTables.cpp83 case IC:
767 o << "IC";
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfLineAnnotationDictionary_autogen.h531 SkPdfArray* IC(SkPdfNativeDoc* doc);

Completed in 570 milliseconds

1234