HomeSort by relevance Sort by last modified time
    Searched defs:CAT (Results 1 - 20 of 20) sorted by null

  /external/eigen/bench/btl/libs/BLAS/
blas_interface.hh 51 #define CAT(A,B) CAT2(A,B)
  /development/ndk/sources/android/libportable/arch-mips/
pthread.c 32 #define CAT(x, y) CAT_I(x, y)
48 #define MAYBE_STRIP_PARENS_I(cond, x) CAT(MAYBE_STRIP_PARENS_, cond)(x)
  /bionic/libc/kernel/arch-mips/asm/
asm.h 22 #ifndef CAT
30 #define CAT(str1, str2) __CAT(str1, str2)
  /development/ndk/platforms/android-9/arch-mips/include/asm/
asm.h 22 #ifndef CAT
30 #define CAT(str1, str2) __CAT(str1, str2)
  /external/kernel-headers/original/asm-mips/
asm.h 22 #ifndef CAT
28 #define CAT(str1, str2) __CAT(str1, str2)
  /frameworks/compile/slang/
slang_rs_reflection_cpp.cpp 92 const RSExportConstantArrayType* CAT =
94 std::string ElementTypeName = GetTypeName(CAT->getElementType());
slang_rs_export_type.cpp 119 const clang::ConstantArrayType *CAT,
125 const clang::Type *ElementType = GET_CONSTANT_ARRAY_ELEMENT_TYPE(CAT);
142 if (numElements == 3 && CAT->getSize() != 1) {
153 return CAT;
303 const clang::ConstantArrayType *CAT =
306 return ConstantArrayTypeExportableHelper(CAT, SPS, DiagEngine, VD,
527 const clang::ConstantArrayType *CAT =
529 const clang::Type *ElementType = GET_CONSTANT_ARRAY_ELEMENT_TYPE(CAT);
    [all...]
slang_rs_object_ref_count.cpp 437 const clang::ConstantArrayType *CAT =
439 return static_cast<int>(CAT->getSize().getSExtValue());
    [all...]
slang_rs_reflection.cpp 189 const RSExportConstantArrayType* CAT =
191 std::string ElementTypeName = GetTypeName(CAT->getElementType());
    [all...]
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
asm.h 22 #ifndef CAT
30 #define CAT(str1, str2) __CAT(str1, str2)
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
asm.h 22 #ifndef CAT
30 #define CAT(str1, str2) __CAT(str1, str2)
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/asm/
asm.h 22 #ifndef CAT
30 #define CAT(str1, str2) __CAT(str1, str2)
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/asm/
asm.h 22 #ifndef CAT
30 #define CAT(str1, str2) __CAT(str1, str2)
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm/
asm.h 22 #ifndef CAT
30 #define CAT(str1, str2) __CAT(str1, str2)
  /external/clang/lib/AST/
ExprConstant.cpp 122 const ConstantArrayType *CAT =
124 Type = CAT->getElementType();
125 ArraySize = CAT->getSize().getZExtValue();
223 void addArrayUnchecked(const ConstantArrayType *CAT) {
229 MostDerivedType = CAT->getElementType();
230 MostDerivedArraySize = CAT->getSize().getZExtValue();
853 void addArray(EvalInfo &Info, const Expr *E, const ConstantArrayType *CAT) {
855 Designator.addArrayUnchecked(CAT);
    [all...]
ASTContext.cpp 2449 const ConstantArrayType *cat = cast<ConstantArrayType>(ty); local
    [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 857 const ConstantArrayType *CAT = cast<ConstantArrayType>(E->getType());
861 Str.resize(CAT->getSize().getZExtValue(), '\0');
    [all...]
CodeGenModule.cpp     [all...]
  /external/clang/lib/Sema/
SemaInit.cpp 168 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
184 if (StrLength > CAT->getSize().getZExtValue())
190 if (StrLength-1 > CAT->getSize().getZExtValue())
584 if (const ConstantArrayType *CAT =
586 maxElements = static_cast<int>(CAT->getSize().getZExtValue());
    [all...]
SemaExpr.cpp     [all...]

Completed in 3160 milliseconds