Searched defs:CAT (Results 1 - 9 of 9) sorted by relevance

/external/eigen/bench/btl/libs/BLAS/
H A Dblas_interface.hh51 #define CAT(A,B) CAT2(A,B) macro
/external/kernel-headers/original/asm-mips/
H A Dasm.h22 #ifndef CAT
28 #define CAT(str1, str2) __CAT(str1, str2) macro
/external/clang/lib/CodeGen/
H A DCGExprConstant.cpp857 const ConstantArrayType *CAT = cast<ConstantArrayType>(E->getType()); local
861 Str.resize(CAT->getSize().getZExtValue(), '\0');
1182 const ArrayType *CAT = Context.getAsArrayType(DestType); local
1193 CAT->getElementType(), CGF);
1201 CAT->getElementType(), CGF);
1275 if (const ConstantArrayType *CAT =
1277 QualType ElementTy = CAT->getElementType();
1280 for (uint64_t I = 0, E = CAT->getSize().getZExtValue(); I != E; ++I) {
1468 if (const ConstantArrayType *CAT = Context.getAsConstantArrayType(T)) {
1472 QualType ElementTy = CAT
[all...]
H A DCodeGenModule.cpp2505 const ConstantArrayType *CAT = Context.getAsConstantArrayType(E->getType()); local
2506 Str.resize(CAT->getSize().getZExtValue());
2545 const ConstantArrayType *CAT = Context.getAsConstantArrayType(S->getType()); local
2546 Str.resize(CAT->getSize().getZExtValue());
/external/clang/lib/AST/
H A DExprConstant.cpp122 const ConstantArrayType *CAT = local
124 Type = CAT->getElementType();
125 ArraySize = CAT->getSize().getZExtValue();
223 void addArrayUnchecked(const ConstantArrayType *CAT) { argument
229 MostDerivedType = CAT->getElementType();
230 MostDerivedArraySize = CAT->getSize().getZExtValue();
853 void addArray(EvalInfo &Info, const Expr *E, const ConstantArrayType *CAT) { argument
855 Designator.addArrayUnchecked(CAT);
1876 const ConstantArrayType *CAT = local
1878 assert(CAT
1893 const ConstantArrayType *CAT = local
[all...]
H A DASTContext.cpp1365 const ConstantArrayType *CAT) {
1367 Context.getTypeInfoInChars(CAT->getElementType());
1368 uint64_t Size = CAT->getSize().getZExtValue();
1381 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(T))
1382 return getConstantArrayInfoInChars(*this, CAT);
1439 const ConstantArrayType *CAT = cast<ConstantArrayType>(T); local
1441 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(CAT->getElementType());
1442 uint64_t Size = CAT->getSize().getZExtValue();
3838 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT)) {
3839 return getConstantArrayType(unqualElementType, CAT
1364 getConstantArrayInfoInChars(const ASTContext &Context, const ConstantArrayType *CAT) argument
[all...]
/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp784 void Sema::DiagnoseClassExtensionDupMethods(ObjCCategoryDecl *CAT, argument
798 for (ObjCCategoryDecl::method_iterator i = CAT->meth_begin(),
799 e = CAT->meth_end(); i != e; ++i) {
H A DSemaInit.cpp168 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT); local
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());
1267 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(arrayType)) {
1268 maxElements = CAT->getSize();
H A DSemaExpr.cpp4234 const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT); local
4235 if (!CAT)
4243 if (ArgCAT->getSize().ult(CAT->getSize())) {
4247 << (unsigned) CAT->getSize().getZExtValue();

Completed in 279 milliseconds