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

/external/eigen/bench/btl/libs/BLAS/
H A Dblas_interface.hh51 #define CAT(A,B) CAT2(A,B) macro
/external/valgrind/none/tests/amd64/
H A Dxacq_xrel.c12 #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 Dbackward_references.c48 #define EXPAND_CAT(a, b) CAT(a, b)
49 #define CAT(a, b) a ## b macro
98 #undef CAT macro
H A Dhash.h241 #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 Dbrw_eu_validate.c45 #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 DCheckAPI.java90 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 DAPIInfo.java37 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 DCGExprConstant.cpp977 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 DCodeGenModule.cpp3389 const ConstantArrayType *CAT = Context.getAsConstantArrayType(E->getType()); local
3390 Str.resize(CAT->getSize().getZExtValue());
H A DCGExpr.cpp694 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 DMicrosoftMangle.cpp2123 const ConstantArrayType *CAT = local
2125 Dimensions.push_back(CAT->getSize());
2126 ElementTy = CAT->getElementType();
H A DASTContext.cpp1469 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 DExprConstant.cpp124 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 DSemaExprObjC.cpp67 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 DSemaDeclObjC.cpp1658 void Sema::DiagnoseClassExtensionDupMethods(ObjCCategoryDecl *CAT, argument
1669 for (const auto *Method : CAT->methods()) {
H A DSemaInit.cpp169 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 DSemaExpr.cpp4940 const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT); local
4941 if (!CAT)
4949 if (ArgCAT->getSize().ult(CAT->getSize())) {
4953 << (unsigned) CAT->getSize().getZExtValue();

Completed in 500 milliseconds