Searched defs:ICS (Results 1 - 15 of 15) sorted by relevance

/external/cblas/testing/
H A Dc_cblat3.f791 INTEGER I, IA, IB, ICS, ICU, IM, IN, LAA, LBB, LCC, local in subroutine:CCHK2
849 DO 80 ICS = 1, 2
850 SIDE = ICHS( ICS: ICS )
1111 INTEGER I, IA, ICD, ICS, ICT, ICU, IM, IN, J, LAA, LBB, local in subroutine:CCHK3
1163 DO 120 ICS = 1, 2
1164 SIDE = ICHS( ICS: ICS )
H A Dc_dblat3.f772 INTEGER I, IA, IB, ICS, ICU, IM, IN, LAA, LBB, LCC, local in subroutine:DCHK2
830 DO 80 ICS = 1, 2
831 SIDE = ICHS( ICS: ICS )
1081 INTEGER I, IA, ICD, ICS, ICT, ICU, IM, IN, J, LAA, LBB, local in subroutine:DCHK3
1133 DO 120 ICS = 1, 2
1134 SIDE = ICHS( ICS: ICS )
H A Dc_sblat3.f776 INTEGER I, IA, IB, ICS, ICU, IM, IN, LAA, LBB, LCC, local in subroutine:SCHK2
834 DO 80 ICS = 1, 2
835 SIDE = ICHS( ICS: ICS )
1085 INTEGER I, IA, ICD, ICS, ICT, ICU, IM, IN, J, LAA, LBB, local in subroutine:SCHK3
1137 DO 120 ICS = 1, 2
1138 SIDE = ICHS( ICS: ICS )
H A Dc_zblat3.f792 INTEGER I, IA, IB, ICS, ICU, IM, IN, LAA, LBB, LCC, local in subroutine:ZCHK2
850 DO 80 ICS = 1, 2
851 SIDE = ICHS( ICS: ICS )
1112 INTEGER I, IA, ICD, ICS, ICT, ICU, IM, IN, J, LAA, LBB, local in subroutine:ZCHK3
1164 DO 120 ICS = 1, 2
1165 SIDE = ICHS( ICS: ICS )
/external/clang/include/clang/Sema/
H A DInitialization.h748 ImplicitConversionSequence *ICS; member in union:clang::InitializationSequence::Step::__anon957
1041 void AddConversionSequenceStep(const ImplicitConversionSequence &ICS,
/external/clang/lib/Sema/
H A DSemaLambda.cpp1474 mapImplicitCaptureStyle(CapturingScopeInfo::ImplicitCaptureStyle ICS) { argument
1475 switch (ICS) {
H A DSemaExprCXX.cpp3237 /// conversion sequence ICS. Returns the converted
3242 const ImplicitConversionSequence &ICS,
3245 switch (ICS.getKind()) {
3247 ExprResult Res = PerformImplicitConversion(From, ToType, ICS.Standard,
3257 FunctionDecl *FD = ICS.UserDefined.ConversionFunction;
3272 if (!ICS.UserDefined.EllipsisConversion) {
3280 if (!ICS.UserDefined.EllipsisConversion) {
3283 ICS.UserDefined.Before, AA_Converting,
3295 ICS.UserDefined.FoundConversionFunction,
3296 ICS
3241 PerformImplicitConversion(Expr *From, QualType ToType, const ImplicitConversionSequence &ICS, AssignmentAction Action, CheckedConversionKind CCK) argument
[all...]
H A DSemaInit.cpp3063 delete ICS;
3210 const ImplicitConversionSequence &ICS, QualType T,
3216 S.ICS = new ImplicitConversionSequence(ICS);
3881 ImplicitConversionSequence ICS; local
3882 ICS.setStandard();
3883 ICS.Standard.setAsIdentityConversion();
3887 ICS.Standard.Second = E->getType()->isFloatingType()
3890 ICS.Standard.setFromType(E->getType());
3891 ICS
3209 AddConversionSequenceStep( const ImplicitConversionSequence &ICS, QualType T, bool TopLevelOfInitList) argument
4097 ImplicitConversionSequence ICS; local
4386 ImplicitConversionSequence ICS local
4707 ImplicitConversionSequence ICS; local
4864 ImplicitConversionSequence ICS; local
5182 ImplicitConversionSequence ICS local
7728 DiagnoseNarrowingInInitList(Sema &S, const ImplicitConversionSequence &ICS, QualType PreNarrowingType, QualType EntityType, const Expr *PostInit) argument
[all...]
H A DSemaOverload.cpp1184 ImplicitConversionSequence ICS; local
1189 ICS.setBad(BadConversionSequence::no_conversion, From, ToType);
1190 return ICS;
1196 switch (IsUserDefinedConversion(S, From, ToType, ICS.UserDefined,
1201 ICS.setUserDefined();
1202 ICS.UserDefined.Before.setAsIdentityConversion();
1211 = dyn_cast<CXXConstructorDecl>(ICS.UserDefined.ConversionFunction)) {
1221 DeclAccessPair Found = ICS.UserDefined.FoundConversionFunction;
1222 ICS.setStandard();
1223 ICS
1288 ImplicitConversionSequence ICS; local
1357 ImplicitConversionSequence ICS; local
1362 PerformImplicitConversion(Expr *From, QualType ToType, AssignmentAction Action, bool AllowExplicit, ImplicitConversionSequence& ICS) argument
3328 ImplicitConversionSequence ICS; local
3383 hasDeprecatedStringLiteralToCharPtrConversion( const ImplicitConversionSequence &ICS) argument
4160 FindConversionForRefInit(Sema &S, ImplicitConversionSequence &ICS, QualType DeclType, SourceLocation DeclLoc, Expr *Init, QualType T2, bool AllowRvalues, bool AllowExplicit) argument
4293 ImplicitConversionSequence ICS; local
4641 ImplicitConversionSequence ICS = local
4850 ImplicitConversionSequence ICS = local
4873 ImplicitConversionSequence ICS; local
4994 ImplicitConversionSequence ICS = TryObjectArgumentInitialization( local
5282 ImplicitConversionSequence ICS local
5318 ImplicitConversionSequence ICS = local
6496 ImplicitConversionSequence ICS = local
[all...]
H A DSemaExpr.cpp7697 ImplicitConversionSequence ICS = local
7704 if (ICS.isFailure())
7707 ICS, AA_Assigning);
/external/eigen/blas/testing/
H A Dcblat3.f725 INTEGER I, IA, IB, ICS, ICU, IM, IN, LAA, LBB, LCC, local in subroutine:CCHK2
783 DO 80 ICS = 1, 2
784 SIDE = ICHS( ICS: ICS )
1003 INTEGER I, IA, ICD, ICS, ICT, ICU, IM, IN, J, LAA, LBB, local in subroutine:CCHK3
1055 DO 120 ICS = 1, 2
1056 SIDE = ICHS( ICS: ICS )
H A Ddblat3.f707 INTEGER I, IA, IB, ICS, ICU, IM, IN, LAA, LBB, LCC, local in subroutine:DCHK2
765 DO 80 ICS = 1, 2
766 SIDE = ICHS( ICS: ICS )
976 INTEGER I, IA, ICD, ICS, ICT, ICU, IM, IN, J, LAA, LBB, local in subroutine:DCHK3
1028 DO 120 ICS = 1, 2
1029 SIDE = ICHS( ICS: ICS )
H A Dsblat3.f707 INTEGER I, IA, IB, ICS, ICU, IM, IN, LAA, LBB, LCC, local in subroutine:SCHK2
765 DO 80 ICS = 1, 2
766 SIDE = ICHS( ICS: ICS )
976 INTEGER I, IA, ICD, ICS, ICT, ICU, IM, IN, J, LAA, LBB, local in subroutine:SCHK3
1028 DO 120 ICS = 1, 2
1029 SIDE = ICHS( ICS: ICS )
H A Dzblat3.f727 INTEGER I, IA, IB, ICS, ICU, IM, IN, LAA, LBB, LCC, local in subroutine:ZCHK2
785 DO 80 ICS = 1, 2
786 SIDE = ICHS( ICS: ICS )
1006 INTEGER I, IA, ICD, ICS, ICT, ICU, IM, IN, J, LAA, LBB, local in subroutine:ZCHK3
1058 DO 120 ICS = 1, 2
1059 SIDE = ICHS( ICS: ICS )
/external/llvm/lib/Analysis/
H A DValueTracking.cpp2295 Intrinsic::ID llvm::getIntrinsicForCallSite(ImmutableCallSite ICS, argument
2297 const Function *F = ICS.getCalledFunction();
2314 if (!ICS.onlyReadsMemory())
2397 if (ICS->hasNoNaNs())

Completed in 4824 milliseconds