HomeSort by relevance Sort by last modified time
    Searched refs:DIAG (Results 26 - 42 of 42) sorted by null

12

  /external/clang/include/clang/Basic/
DiagnosticIDs.h 28 namespace diag { namespace in namespace:clang
50 #define DIAG(ENUM,FLAGS,DEFAULT_MAPPING,DESC,GROUP,\
54 #undef DIAG
80 static DiagnosticMappingInfo Make(diag::Mapping Mapping, bool IsUser,
92 diag::Mapping getMapping() const { return diag::Mapping(Mapping); }
93 void setMapping(diag::Mapping Value) { Mapping = Value; }
119 diag::CustomDiagInfo *CustomDiagInfo;
230 SmallVectorImpl<diag::kind> &Diags) const;
233 void getAllDiagnostics(SmallVectorImpl<diag::kind> &Diags) const
    [all...]
  /external/eigen/blas/
level2_impl.h 73 int EIGEN_BLAS_FUNC(trsv)(char *uplo, char *opa, char *diag, int *n, RealScalar *pa, int *lda, RealScalar *pb, int *incb)
109 else if(DIAG(*diag)==INVALID) info = 3;
118 int code = OP(*opa) | (UPLO(*uplo) << 2) | (DIAG(*diag) << 3);
128 int EIGEN_BLAS_FUNC(trmv)(char *uplo, char *opa, char *diag, int *n, RealScalar *pa, int *lda, RealScalar *pb, int *incb)
164 else if(DIAG(*diag)==INVALID) info = 3;
178 int code = OP(*opa) | (UPLO(*uplo) << 2) | (DIAG(*diag) << 3)
    [all...]
common.h 51 #define DIAG(X) ( ((X)=='N' || (X)=='N') ? NUNIT \
level3_impl.h 66 int EIGEN_BLAS_FUNC(trsm)(char *side, char *uplo, char *opa, char *diag, int *m, int *n, RealScalar *palpha, RealScalar *pa, int *lda, RealScalar *pb, int *ldb)
68 // std::cerr << "in trsm " << *side << " " << *uplo << " " << *opa << " " << *diag << " " << *m << "," << *n << " " << *palpha << " " << *lda << " " << *ldb<< "\n";
122 else if(DIAG(*diag)==INVALID) info = 4;
130 int code = OP(*opa) | (SIDE(*side) << 2) | (UPLO(*uplo) << 3) | (DIAG(*diag) << 4);
152 int EIGEN_BLAS_FUNC(trmm)(char *side, char *uplo, char *opa, char *diag, int *m, int *n, RealScalar *palpha, RealScalar *pa, int *lda, RealScalar *pb, int *ldb)
154 // std::cerr << "in trmm " << *side << " " << *uplo << " " << *opa << " " << *diag << " " << *m << " " << *n << " " << *lda << " " << *ldb << " " << *palpha << "\n";
206 else if(DIAG(*diag)==INVALID) info = 4
    [all...]
  /external/iproute2/lib/
ll_proto.c 57 __PF(DIAG,diag)
  /external/eigen/blas/testing/
cblat2.f     [all...]
dblat2.f     [all...]
sblat2.f     [all...]
zblat2.f     [all...]
dblat3.f     [all...]
sblat3.f     [all...]
cblat3.f     [all...]
zblat3.f     [all...]
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 68 #define DIAG(ENUM,CLASS,DEFAULT_MAPPING,DESC,GROUP, \
71 { diag::ENUM, DEFAULT_MAPPING, CLASS, SFINAE, ACCESS, \
84 #undef DIAG
100 "Diag ID conflict, the enums at the start of clang::diag (in "
104 "Improperly sorted diag info");
110 // Out of bounds diag. Can't be in the table.
111 using namespace diag;
150 // If the diag id doesn't match we found a different diag, abort. This ca
273 namespace diag { namespace in namespace:clang
    [all...]
  /external/clang/lib/Sema/
SemaDeclObjC.cpp 106 Diag(loc, diag::err_arc_init_method_unrelated_result_type);
140 Diag(NewMethod->getLocation(),
141 diag::warn_related_result_type_compatibility_class)
146 Diag(NewMethod->getLocation(),
147 diag::warn_related_result_type_compatibility_protocol)
153 Diag(Overridden->getLocation(),
154 diag::note_related_result_type_overridden_family)
157 Diag(Overridden->getLocation(),
158 diag::note_related_result_type_overridden)
    [all...]
SemaStmt.cpp 136 S.Diag(Loc, diag::warn_unused_comparison)
143 S.Diag(Loc, diag::note_inequality_comparison_to_or_assign)
146 S.Diag(Loc, diag::note_equality_comparison_to_assign)
186 unsigned DiagID = diag::warn_unused_expr;
206 Diag(Loc, diag::warn_unused_result) << R1 << R2;
212 Diag(Loc, diag::warn_unused_call) << R1 << R2 << "pure"
    [all...]
  /external/dropbear/libtommath/mtest/
mpi.c 20 #define DIAG(T,V) {fprintf(stderr,T);mp_print(V,stderr);fputc('\n',stderr);}
22 #define DIAG(T,V)
    [all...]

Completed in 409 milliseconds

12