/external/eigen/bench/btl/libs/BLAS/ |
H A D | blas_interface.hh | 51 #define CAT(A,B) CAT2(A,B) macro
|
/external/valgrind/none/tests/amd64/ |
H A D | xacq_xrel.c | 12 #define CAT(_x,_y) CAT2(_x,_y) macro 15 void CAT(do_,_insn) ( void ) \ 52 void CAT(do_,_insn) ( void ) \
|
/external/brotli/enc/ |
H A D | backward_references.c | 48 #define EXPAND_CAT(a, b) CAT(a, b) 49 #define CAT(a, b) a ## b macro 98 #undef CAT macro
|
H A D | hash.h | 241 #define EXPAND_CAT(a, b) CAT(a, b) 242 #define CAT(a, b) a ## b macro 342 #undef CAT macro
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
H A D | brw_eu_validate.c | 45 #define CAT(dest, src) cat(&dest, (struct string){src, strlen(src)}) macro 52 CAT(error_msg, error(msg)); \
|
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
H A D | CheckAPI.java | 90 private static final int CAT = 6, CAT_CLASS = 0, CAT_FIELD = 1, CAT_CONSTRUCTOR = 2, CAT_METHOD = 3; field in class:CheckAPI 194 for (int i = STA; i < CAT; ++i) { // include status 208 int val = getVal(CAT); 322 setType(CAT, CAT_FIELD); 324 setType(CAT, CAT_METHOD); 326 setType(CAT, CAT_CONSTRUCTOR); 328 setType(CAT, CAT_CLASS); 393 result = (lhi.getVal(CAT) == CAT_CLASS ? lhi.name : lhi.cls) 394 .compareTo(rhi.getVal(CAT) == CAT_CLASS ? rhi.name : rhi.cls); 396 result = lhi.getVal(CAT) [all...] |
H A D | APIInfo.java | 37 public static final int CAT = 6, CAT_CLASS = 0, CAT_FIELD = 1, CAT_CONSTRUCTOR = 2, field in class:APIInfo 101 public void setClass() { setType(CAT, CAT_CLASS); } 102 public void setField() { setType(CAT, CAT_FIELD); } 103 public void setConstructor() { setType(CAT, CAT_CONSTRUCTOR); } 104 public void setMethod() { setType(CAT, CAT_METHOD); } 105 public void setEnum() { setType(CAT, CAT_ENUM); } 106 public void setEnumConstant() { setType(CAT, CAT_ENUM_CONSTANT); } 127 public boolean isClass() { return getVal(CAT) == CAT_CLASS; } 128 public boolean isField() { return getVal(CAT) == CAT_FIELD; } 129 public boolean isConstructor() { return getVal(CAT) [all...] |
/external/clang/lib/CodeGen/ |
H A D | CGExprConstant.cpp | 977 const ConstantArrayType *CAT = cast<ConstantArrayType>(T); local 981 Str.resize(CAT->getSize().getZExtValue(), '\0'); 1414 const ArrayType *CAT = Context.getAsArrayType(DestType); 1422 CAT->getElementType(), CGF); 1426 getTypes().ConvertType(CAT->getElementType()); 1441 CAT->getElementType(), CGF); 1607 if (const ConstantArrayType *CAT = Context.getAsConstantArrayType(T)) { 1611 QualType ElementTy = CAT->getElementType(); 1614 unsigned NumElements = CAT->getSize().getZExtValue();
|
H A D | CodeGenModule.cpp | 3389 const ConstantArrayType *CAT = Context.getAsConstantArrayType(E->getType()); local 3390 Str.resize(CAT->getSize().getZExtValue());
|
H A D | CGExpr.cpp | 694 if (const auto *CAT = dyn_cast<ConstantArrayType>(AT)) { 695 if (CAT->getSize().ugt(1)) 733 if (const auto *CAT = dyn_cast<ConstantArrayType>(AT)) 734 return CGF.Builder.getInt(CAT->getSize()); 3114 auto *CAT = C.getAsConstantArrayType(ArrayTy); local 3115 ConstLength = CAT->getSize();
|
/external/clang/lib/AST/ |
H A D | MicrosoftMangle.cpp | 2123 const ConstantArrayType *CAT = local 2125 Dimensions.push_back(CAT->getSize()); 2126 ElementTy = CAT->getElementType();
|
H A D | ASTContext.cpp | 1469 const ConstantArrayType *CAT) { 1471 Context.getTypeInfoInChars(CAT->getElementType()); 1472 uint64_t Size = CAT->getSize().getZExtValue(); 1487 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(T)) 1488 return getConstantArrayInfoInChars(*this, CAT); 1554 const ConstantArrayType *CAT = cast<ConstantArrayType>(T); local 1556 TypeInfo EltInfo = getTypeInfo(CAT->getElementType()); 1557 uint64_t Size = CAT->getSize().getZExtValue(); 4222 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT)) { 4223 return getConstantArrayType(unqualElementType, CAT 1468 getConstantArrayInfoInChars(const ASTContext &Context, const ConstantArrayType *CAT) argument [all...] |
H A D | ExprConstant.cpp | 124 const ConstantArrayType *CAT = local 126 Type = CAT->getElementType(); 127 ArraySize = CAT->getSize().getZExtValue(); 240 void addArrayUnchecked(const ConstantArrayType *CAT) { argument 246 MostDerivedType = CAT->getElementType(); 248 MostDerivedArraySize = CAT->getSize().getZExtValue(); 1137 void addArray(EvalInfo &Info, const Expr *E, const ConstantArrayType *CAT) { argument 1139 Designator.addArrayUnchecked(CAT); 2219 const ConstantArrayType *CAT = local 2221 assert(CAT 2236 const ConstantArrayType *CAT = local 2414 const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(ObjType); local 6029 const ConstantArrayType *CAT = local 6063 const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(E->getType()); local [all...] |
/external/clang/lib/Sema/ |
H A D | SemaExprObjC.cpp | 67 const ConstantArrayType *CAT = Context.getAsConstantArrayType(S->getType()); local 68 assert(CAT && "String literal not of constant array type!"); 70 CAT->getElementType(), llvm::APInt(32, StrBuf.size() + 1), 71 CAT->getSizeModifier(), CAT->getIndexTypeCVRQualifiers());
|
H A D | SemaDeclObjC.cpp | 1658 void Sema::DiagnoseClassExtensionDupMethods(ObjCCategoryDecl *CAT, argument 1669 for (const auto *Method : CAT->methods()) {
|
H A D | SemaInit.cpp | 169 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT); local 185 if (StrLength > CAT->getSize().getZExtValue()) 191 if (StrLength-1 > CAT->getSize().getZExtValue()) 795 if (const ConstantArrayType *CAT = 797 maxElements = static_cast<int>(CAT->getSize().getZExtValue()); 1614 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(arrayType)) { 1615 maxElements = CAT->getSize();
|
H A D | SemaExpr.cpp | 4940 const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT); local 4941 if (!CAT) 4949 if (ArgCAT->getSize().ult(CAT->getSize())) { 4953 << (unsigned) CAT->getSize().getZExtValue();
|