HomeSort by relevance Sort by last modified time
    Searched refs:CastTy (Results 1 - 25 of 26) sorted by null

1 2

  /external/swiftshader/third_party/subzero/crosstest/
test_vector_ops.h 27 #define CASTTY(TYNAME) FIELD(TYNAME, CastTy)
30 static Ty (*insertelement)(Ty, CastTy, int32_t); \
32 static CastTy (*extractelement)(Ty, int32_t); \
33 static Ty (*Subzero_insertelement)(Ty, CastTy, int32_t); \
35 static CastTy (*Subzero_extractelement)(Ty, int32_t); \
39 TY(NAME) insertelement_##NAME(TY(NAME), CASTTY(NAME), int32_t); \
40 TY(NAME) Subzero_insertelement_##NAME(TY(NAME), CASTTY(NAME), int32_t); \
41 CASTTY(NAME) extractelement_##NAME(TY(NAME), int32_t); \
42 CASTTY(NAME) Subzero_extractelement_##NAME(TY(NAME), int32_t);
    [all...]
vectors.h 34 #define X(ty, eltty, castty) typedef eltty ty __attribute__((vector_size(16)));
55 // * Vectors<T>::CastTy is a type that is safe to cast elements to and from
60 #define DECLARE_VECTOR_TYPE(LABEL, TY, ELTTY, CASTTY, NUM_ELEMENTS) \
64 typedef CASTTY CastTy; \
71 #define X(ty, eltty, castty) \
72 DECLARE_VECTOR_TYPE(ty, ty, eltty, castty, (sizeof(ty) / sizeof(eltty)))
90 OS << (typename Vectors<T>::CastTy)Vect[i];
test_vector_ops_main.cpp 91 << ", Element=" << (typename VectorOps<T>::CastTy)Elt
107 typedef typename VectorOps<T>::CastTy CastTy;
115 CastTy ResultLlc = VectorOps<T>::extractelement(Vect, I);
116 CastTy ResultSz = VectorOps<T>::Subzero_extractelement(Vect, I);
test_vector_ops.cpp     [all...]
  /external/clang/lib/Parse/
ParseExpr.cpp 720 ParsedType CastTy;
723 isTypeCast == IsTypeCast, CastTy, RParenLoc);
    [all...]
ParseExprCXX.cpp     [all...]
ParseDecl.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 24 SVal dispatchCast(SVal val, QualType castTy) override;
25 SVal evalCastFromNonLoc(NonLoc val, QualType castTy) override;
26 SVal evalCastFromLoc(Loc val, QualType castTy) override;
62 SVal SimpleSValBuilder::dispatchCast(SVal Val, QualType CastTy) {
64 return Val.getAs<Loc>() ? evalCastFromLoc(Val.castAs<Loc>(), CastTy)
65 : evalCastFromNonLoc(Val.castAs<NonLoc>(), CastTy);
68 SVal SimpleSValBuilder::evalCastFromNonLoc(NonLoc val, QualType castTy) {
70 bool isLocType = Loc::isLocType(castTy);
77 unsigned castSize = Context.getTypeSize(castTy);
87 // HACK: If both castTy and T are integers, ignore the cast. This i
    [all...]
  /external/clang/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Parse/
Parser.h     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp     [all...]

Completed in 766 milliseconds

1 2