HomeSort by relevance Sort by last modified time
    Searched defs:RT (Results 26 - 50 of 65) sorted by null

12 3

  /external/clang/lib/AST/
RecordLayoutBuilder.cpp 207 const RecordType *RT =
211 if (!RT)
215 const CXXRecordDecl *MemberDecl = RT->getAsCXXRecordDecl();
443 const RecordType *RT = ElemTy->getAs<RecordType>();
444 if (!RT)
447 const CXXRecordDecl *RD = RT->getAsCXXRecordDecl();
540 const RecordType *RT = ElemTy->getAs<RecordType>();
541 if (!RT)
544 const CXXRecordDecl *RD = RT->getAsCXXRecordDecl();
    [all...]
VTableBuilder.cpp 474 const FunctionProtoType *RT =
478 if (LT == RT) return true;
483 if (LT->getTypeQuals() != RT->getTypeQuals())
485 return LT->getParamTypes() == RT->getParamTypes();
    [all...]
  /external/clang/lib/CodeGen/
TargetInfo.cpp 96 static CGCXXABI::RecordArgABI getRecordArgABI(const RecordType *RT,
98 const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl());
106 const RecordType *RT = T->getAs<RecordType>();
107 if (!RT)
109 return getRecordArgABI(RT, CXXABI);
345 // This assumes the user is passing a library name like "rt" instead of a
372 const RecordType *RT = FT->getAs<RecordType>();
373 if (!RT)
380 if (isa<CXXRecordDecl>(RT->getDecl()))
390 const RecordType *RT = T->getAs<RecordType>()
    [all...]
CGStmtOpenMP.cpp     [all...]
CGClass.cpp     [all...]
CGDebugInfo.cpp     [all...]
CGObjCMac.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 492 DIType *RT = cast<DIType>(resolve(Ty->getRef()));
493 if (!RT->isExternalTypeRef())
495 CU.getOrCreateTypeDIE(RT);
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp     [all...]
  /external/pcre/dist/sljit/
sljitNativeARM_64.c 52 #define RT(rt) (reg_map[rt])
842 | (shift << 30) | RT(reg) | RN(arg) | (argw << 12)));
856 FAIL_IF(push_inst(compiler, sljit_mem_reg[flags & 0x3] | (shift << 30) | RT(reg)
867 | RT(reg) | RN(arg) | (argw << (10 - shift))));
878 | RT(reg) | RN(arg) | ((argw & 0x1ff) << 12)));
934 return push_inst(compiler, sljit_mem_imm[flags & 0x3] | (shift << 30) | RT(reg) | RN(other_r));
942 return push_inst(compiler, sljit_mem_imm[flags & 0x3] | (shift << 30) | RT(reg) | RN(other_r));
971 FAIL_IF(push_inst(compiler, sljit_mem_reg[flags & 0x3] | (shift << 30) | RT(reg) | RN(arg) | RM(other_r) | (argw ? (1 << 12) : 0)))
    [all...]
  /frameworks/compile/slang/
slang_rs_reflection.cpp 562 const RSExportType *RT = ER->getResultType();
563 slangAssert(RT != nullptr);
564 if (!exportableReduce(RT))
567 genTypeInstance(RT);
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
onyx_if.c 666 #define RT(x) (x+7)
681 0, GOOD(2), 1500, GOOD(3), 2000, RT(0), 1000, RT(2), 2000, INT_MAX
685 1000, GOOD(2), 1500, GOOD(3), 2000, RT(0), 1000, RT(1), 2000,
686 RT(7), INT_MAX, INT_MAX
690 2000, GOOD(0), 2500, GOOD(2), 5000, GOOD(3), 7500, RT(0), 2500, RT(1), 5000,
691 RT(6), INT_MAX, INT_MAX
695 1000, GOOD(2), 1500, GOOD(3), 2000, RT(0), 0, RT(1), 1000, RT(2), 2000
    [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 505 QualType RT = Getter->getReturnType();
506 if (!isa<TypedefType>(RT)) {
508 QualType CanResultTy = Context.getCanonicalType(RT);
512 RT = Context.getQualifiedType(CanResultTy.getUnqualifiedType(), Qs);
519 std::string TypeString = RT.getAsString(SubPolicy);
532 if (RT->isBlockPointerType() || RT->isFunctionPointerType())
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
onyx_if.c 672 #define RT(x) (x+7)
687 0, GOOD(2), 1500, GOOD(3), 2000, RT(0), 1000, RT(2), 2000, INT_MAX
691 1000, GOOD(2), 1500, GOOD(3), 2000, RT(0), 1000, RT(1), 2000,
692 RT(7), INT_MAX, INT_MAX
696 2000, GOOD(0), 2500, GOOD(2), 5000, GOOD(3), 7500, RT(0), 2500, RT(1), 5000,
697 RT(6), INT_MAX, INT_MAX
701 1000, GOOD(2), 1500, GOOD(3), 2000, RT(0), 0, RT(1), 1000, RT(2), 2000
    [all...]
  /external/clang/lib/Sema/
SemaDeclAttr.cpp 160 const RecordType *RT = PT->getPointeeType()->getAs<RecordType>();
161 if (!RT)
164 const RecordDecl *RD = RT->getDecl();
360 static bool threadSafetyCheckIsSmartPointer(Sema &S, const RecordType* RT) {
361 DeclContextLookupResult Res1 = RT->getDecl()->lookup(
366 DeclContextLookupResult Res2 = RT->getDecl()->lookup(
384 if (const RecordType *RT = QT->getAs<RecordType>()) {
388 if (RT->isIncompleteType())
391 if (threadSafetyCheckIsSmartPointer(S, RT))
403 if (const RecordType *RT = QT->getAs<RecordType>()
    [all...]
SemaExprCXX.cpp     [all...]
SemaInit.cpp     [all...]
SemaType.cpp     [all...]
  /external/clang/tools/c-index-test/
c-index-test.c     [all...]
  /external/clang/lib/Driver/
Tools.cpp     [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
windns.h 666 DNS_MX_DATAW MX,Mx,AFSDB,Afsdb,RT,Rt;
699 DNS_MX_DATAA MX,Mx,AFSDB,Afsdb,RT,Rt;
  /toolchain/binutils/binutils-2.25/opcodes/
ppc-opc.c 475 equal the RT field. */
516 instruction or the RT field in a D, DS, X, XFX or XO form
519 #define RT RS
524 /* The RS and RT fields of the DS form stq and DQ form lq instructions,
    [all...]

Completed in 2939 milliseconds

12 3