Searched defs:IC (Results 1 - 25 of 36) sorted by relevance

12

/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfLineAnnotationDictionary_autogen.cpp71 SkPdfArray* SkPdfLineAnnotationDictionary::IC(SkPdfNativeDoc* doc) { function in class:SkPdfLineAnnotationDictionary
72 SkPdfNativeObject* ret = get("IC", "");
80 return get("IC", "") != NULL;
H A DSkPdfSquareOrCircleAnnotation_autogen.cpp47 SkPdfArray* SkPdfSquareOrCircleAnnotation::IC(SkPdfNativeDoc* doc) { function in class:SkPdfSquareOrCircleAnnotation
48 SkPdfNativeObject* ret = get("IC", "");
56 return get("IC", "") != NULL;
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfLineAnnotationDictionary_autogen.cpp71 SkPdfArray* SkPdfLineAnnotationDictionary::IC(SkPdfNativeDoc* doc) { function in class:SkPdfLineAnnotationDictionary
72 SkPdfNativeObject* ret = get("IC", "");
80 return get("IC", "") != NULL;
H A DSkPdfSquareOrCircleAnnotation_autogen.cpp47 SkPdfArray* SkPdfSquareOrCircleAnnotation::IC(SkPdfNativeDoc* doc) { function in class:SkPdfSquareOrCircleAnnotation
48 SkPdfNativeObject* ret = get("IC", "");
56 return get("IC", "") != NULL;
/external/chromium_org/v8/src/ic/
H A Dic.h27 /* Utilities for IC stubs. */ \
39 // IC is the base class for LoadIC, StoreIC, KeyedLoadIC, and KeyedStoreIC.
41 class IC { class in namespace:v8::internal
54 // Alias the inline cache state type to make the IC code more readable.
57 // The IC code is either invoked with no extra frames on the stack
61 // Construct the IC structure with the given number of extra
63 IC(FrameDepth depth, Isolate* isolate);
64 virtual ~IC() {}
69 // Compute the current IC state based on the target stub, receiver and name.
149 char TransitionMarkFromState(IC
[all...]
H A Dic.cc25 char IC::TransitionMarkFromState(IC::State state) {
90 void IC::TraceIC(const char* type, Handle<Object> name) {
99 void IC::TraceIC(const char* type, Handle<Object> name, State old_state,
141 IC::IC(FrameDepth depth, Isolate* isolate) function in class:v8::internal::IC
143 // To improve the performance of the (much used) IC code, we unfold a few
187 SharedFunctionInfo* IC::GetSharedFunctionInfo() const {
188 // Compute the JavaScript frame for the frame pointer of this IC
201 Code* IC
[all...]
/external/chromium_org/media/cast/net/rtcp/
H A Drtcp_utility.h30 uint8 IC; // Item count / subtype. member in struct:media::cast::RtcpCommonHeader
/external/llvm/lib/Transforms/IPO/
H A DInliner.cpp314 InlineCost IC = getInlineCost(CS); local
316 if (IC.isAlways()) {
324 if (IC.isNever()) {
333 if (!IC) {
334 DEBUG(dbgs() << " NOT Inlining: cost=" << IC.getCost()
335 << ", thres=" << (IC.getCostDelta() + IC.getCost())
339 Twine(IC.getCost()) + ", threshold=" +
340 Twine(IC.getCostDelta() + IC
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp295 static Instruction *InstCombineLoadCast(InstCombiner &IC, LoadInst &LI, argument
328 if (IC.getDataLayout() &&
335 IC.getDataLayout()->getTypeSizeInBits(SrcPTy) ==
336 IC.getDataLayout()->getTypeSizeInBits(DestPTy)) {
342 IC.Builder->CreateLoad(CastOp, LI.isVolatile(), CI->getName());
472 static Instruction *InstCombineStoreToCast(InstCombiner &IC, StoreInst &SI) { argument
527 if (!IC.getDataLayout() ||
528 IC.getDataLayout()->getTypeSizeInBits(SrcPTy) !=
529 IC.getDataLayout()->getTypeSizeInBits(DestPTy))
558 CastOp = IC
[all...]
H A DInstCombineSelect.cpp401 const ICmpInst *IC = dyn_cast<ICmpInst>(SI.getCondition()); local
402 if (!IC || !IC->isEquality() || !SI.getType()->isIntegerTy())
405 Value *CmpLHS = IC->getOperand(0);
406 Value *CmpRHS = IC->getOperand(1);
458 ICmpInst::Predicate Pred = IC->getPredicate();
755 const ICmpInst *IC = dyn_cast<ICmpInst>(SI.getCondition()); local
756 if (!IC || !IC->isEquality() || !SI.getType()->isIntegerTy())
759 if (!match(IC
[all...]
H A DInstCombineShifts.cpp71 InstCombiner &IC) {
114 return CanEvaluateShifted(I->getOperand(0), NumBits, isLeftShift, IC) &&
115 CanEvaluateShifted(I->getOperand(1), NumBits, isLeftShift, IC);
167 return CanEvaluateShifted(SI->getTrueValue(), NumBits, isLeftShift, IC) &&
168 CanEvaluateShifted(SI->getFalseValue(), NumBits, isLeftShift, IC);
176 if (!CanEvaluateShifted(PN->getIncomingValue(i), NumBits, isLeftShift,IC))
186 InstCombiner &IC) {
190 V = IC.Builder->CreateShl(C, NumBits);
192 V = IC.Builder->CreateLShr(C, NumBits);
195 V = ConstantFoldConstantExpression(CE, IC
70 CanEvaluateShifted(Value *V, unsigned NumBits, bool isLeftShift, InstCombiner &IC) argument
185 GetShiftedValue(Value *V, unsigned NumBits, bool isLeftShift, InstCombiner &IC) argument
[all...]
H A DInstCombineMulDivRem.cpp28 static Value *simplifyValueKnownNonZero(Value *V, InstCombiner &IC) { argument
43 A = IC.Builder->CreateSub(A, B);
44 return IC.Builder->CreateShl(PowerOf2, A);
53 if (Value *V2 = simplifyValueKnownNonZero(I->getOperand(0), IC)) {
801 InstCombiner &IC);
827 const BinaryOperator &I, InstCombiner &IC) {
837 const BinaryOperator &I, InstCombiner &IC) {
838 Value *ICI = IC.Builder->CreateICmpULT(Op0, cast<ConstantInt>(Op1));
846 InstCombiner &IC) {
855 N = IC
826 foldUDivPow2Cst(Value *Op0, Value *Op1, const BinaryOperator &I, InstCombiner &IC) argument
836 foldUDivNegCst(Value *Op0, Value *Op1, const BinaryOperator &I, InstCombiner &IC) argument
845 foldUDivShl(Value *Op0, Value *Op1, const BinaryOperator &I, InstCombiner &IC) argument
[all...]
/external/llvm/utils/TableGen/
H A DCodeGenSchedule.h147 bool isKeyEqual(Record *IC, const IdxVec &W, const IdxVec &R) { argument
148 return ItinClassDef == IC && Writes == W && Reads == R;
/external/clang/lib/AST/
H A DCommentParser.cpp414 InlineCommandComment *IC; local
416 IC = S.actOnInlineCommand(CommandTok.getLocation(),
423 IC = S.actOnInlineCommand(CommandTok.getLocation(),
430 return IC;
/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 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
H A Dcblat2.f433 INTEGER I, IA, IB, IC, IKU, IM, IN, INCX, INCXS, INCY, local in subroutine:CCHK1
513 DO 90 IC = 1, 3
514 TRANS = ICH( IC: IC )
778 INTEGER I, IA, IB, IC, IK, IN, INCX, INCXS, INCY, local in subroutine:CCHK2
849 DO 90 IC = 1, 2
850 UPLO = ICH( IC: IC )
1764 INTEGER I, IA, IC, IN, INCX, INCXS, IX, J, JA, JJ, LAA, local in subroutine:CCHK5
1815 DO 90 IC
2048 INTEGER I, IA, IC local in subroutine:CCHK6
3106 INTEGER I, IC local in function:CBEG
[all...]
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 Ddblat2.f423 INTEGER I, IA, IB, IC, IKU, IM, IN, INCX, INCXS, INCY, local in subroutine:DCHK1
503 DO 90 IC = 1, 3
504 TRANS = ICH( IC: IC )
764 INTEGER I, IA, IB, IC, IK, IN, INCX, INCXS, INCY, local in subroutine:DCHK2
835 DO 90 IC = 1, 2
836 UPLO = ICH( IC: IC )
1723 INTEGER I, IA, IC, IN, INCX, INCXS, IX, J, JA, JJ, LAA, local in subroutine:DCHK5
1774 DO 90 IC
2001 INTEGER I, IA, IC local in subroutine:DCHK6
3008 INTEGER I, IC local in function:DBEG
[all...]
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
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtcp_utility.h320 uint8_t IC; // Item count/subtype member in struct:webrtc::RTCPUtility::RTCPCommonHeader
/external/clang/lib/Sema/
H A DSemaAccess.cpp211 DeclContext *IC = S.computeDeclContext(getBaseObjectType()); local
212 InstanceContext = (IC ? cast<CXXRecordDecl>(IC)->getCanonicalDecl()
H A DSemaObjCProperty.cpp819 ObjCImplementationDecl *IC = nullptr; local
821 if ((IC = dyn_cast<ObjCImplementationDecl>(ClassImpDecl))) {
822 IDecl = IC->getClassInterface();
840 Diag(IC->getLocation(), diag::warn_auto_implicit_atomic_property);
1232 if (IC) {
1235 IC->FindPropertyImplIvarDecl(PropertyIvar)) {
1243 = IC->FindPropertyImplDecl(PropertyId)) {
1248 IC->addPropertyImplementation(PIDecl);
1265 declaresSameEntity(IC->getClassInterface(), ClassDeclared)) {
1608 ObjCImplementationDecl *IC
[all...]

Completed in 3938 milliseconds

12