Searched defs:RT (Results 1 - 25 of 49) sorted by relevance

12

/external/valgrind/memcheck/tests/ppc32/
H A Dpower_ISA2_07.c14 unsigned RT; local
28 __asm__ volatile ("lbarx %0, 20, 21, 1":"=r" (RT));
29 printf("lbarx => 0x%x\n", RT);
35 __asm__ volatile ("lharx %0, 20, 21, 1":"=r" (RT));
36 printf("lharx => 0x%x\n", RT);
H A Dpower_ISA2_05.c171 int RT; local
181 __asm__ volatile ("lwarx %0, 20, 21, 1":"=r" (RT));
182 printf("lwarx => %x\n", RT);
187 __asm__ volatile ("ldarx %0, 20, 21, 1":"=r" (RT));
188 printf("ldarx => %x\n", RT);
/external/valgrind/memcheck/tests/ppc64/
H A Dpower_ISA2_07.c14 unsigned long RT; local
28 __asm__ volatile ("lbarx %0, 20, 21, 1":"=r" (RT));
29 printf("lbarx => 0x%lx\n", RT);
35 __asm__ volatile ("lharx %0, 20, 21, 1":"=r" (RT));
36 printf("lharx => 0x%lx\n", RT);
H A Dpower_ISA2_05.c176 unsigned long long RT; local
187 __asm__ volatile ("lwarx %0, 20, 21, 1":"=r" (RT));
188 printf("lwarx => 0x%llx\n", RT);
195 __asm__ volatile ("ldarx %0, 20, 21, 1":"=r" (RT));
196 printf("ldarx => 0x%llx\n", RT);
/external/emma/core/java12/com/vladium/emma/rt/
H A DRTExitHook.java105 RTExitHook (final Class RT, final ICoverageData cdata, final File outFile, final boolean merge) argument
107 m_RT = RT;
120 private Class m_RT; // keep our RT class pinned in memory
H A DRT.java7 * $Id: RT.java,v 1.2.2.3 2004/07/16 23:32:03 vlad_r Exp $
27 abstract class RT implements IAppConstants class in inherits:IAppConstants
39 ClassLoader loader = RT.class.getClassLoader ();
84 final Runnable exitHook = new RTExitHook (RT.class, cdata, getCoverageOutFile (), getCoverageOutMerge ());
89 // the RT classloader is some component loader (e.g, in a J2EE container)
123 // issues of class name collisions and class reloading) or RT.class
124 // (to prevent RT reloading)]
150 if (DEBUG) System.out.println ("RT::dumpCoverageData() DUMPING " + RT.class.getClassLoader ());
176 private RT () {} // preven method in class:RT
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DReturnUndefChecker.cpp47 QualType RT = CallEvent::getDeclaredResultType(SFC->getDecl()); local
58 if (!RT.isNull() && RT->isVoidType())
64 if (RT.isNull() && isa<BlockDecl>(SFC->getDecl()) &&
72 if (RT.isNull())
75 if (RT->isReferenceType()) {
H A DCastSizeChecker.cpp51 const RecordType *RT = ToPointeeTy->getAs<RecordType>(); local
52 if (!RT)
55 const RecordDecl *RD = RT->getDecl();
H A DLLVMConventionsChecker.cpp31 const RecordType *RT = T->getAs<RecordType>(); local
32 if (!RT)
35 return StringRef(QualType(RT, 0).getAsString()) ==
252 if (const RecordType *RT = T->getAs<RecordType>()) {
253 const RecordDecl *RD = RT->getDecl()->getDefinition();
/external/clang/lib/AST/
H A DItaniumCXXABI.cpp43 const RecordType *RT = VD.getType()->getAs<RecordType>(); local
44 assert(RT && "type of VarDecl is expected to be RecordType.");
45 assert(RT->getDecl()->isUnion() && "RecordType is expected to be a union.");
46 if (const FieldDecl *FD = RT->getDecl()->findFirstNamedDataMember()) {
H A DASTDiagnostic.cpp856 const RecordType *RT = Ty->getAs<RecordType>(); local
858 if (!RT)
862 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
H A DDeclCXX.cpp1116 const RecordType *RT = I.getType()->getAs<RecordType>(); local
1117 if (!RT) continue;
1123 CXXRecordDecl *Base = cast<CXXRecordDecl>(RT->getDecl());
1158 const RecordType *RT = I.getType()->getAs<RecordType>(); local
1159 if (!RT) continue;
1161 CollectVisibleConversions(Context, cast<CXXRecordDecl>(RT->getDecl()),
1432 const RecordType *RT = I.getType()->getAs<RecordType>(); local
1433 if (!RT)
1435 const CXXRecordDecl *Base = cast<CXXRecordDecl>(RT->getDecl());
H A DRecordLayoutBuilder.cpp208 const RecordType *RT = local
212 if (!RT)
216 const CXXRecordDecl *MemberDecl = RT->getAsCXXRecordDecl();
444 const RecordType *RT = ElemTy->getAs<RecordType>(); local
445 if (!RT)
448 const CXXRecordDecl *RD = RT->getAsCXXRecordDecl();
541 const RecordType *RT = ElemTy->getAs<RecordType>(); local
542 if (!RT)
545 const CXXRecordDecl *RD = RT->getAsCXXRecordDecl();
1702 } else if (const ReferenceType *RT
[all...]
/external/llvm/tools/lli/ChildTarget/
H A DChildTarget.cpp19 RemoteTarget *RT; member in class:LLIChildTarget
49 ThisChild.RT = new RemoteTarget();
57 delete ThisChild.RT;
89 RT->stop();
116 RT->allocateSpace(AllocSize, Alignment, Addr);
135 if (!RT->isAllocatedMemory(Addr, BufferSize))
166 RT->executeCode(Addr, Result);
/external/clang/lib/CodeGen/
H A DCGCXX.cpp287 const RecordType *RT = T->getAs<RecordType>(); local
288 assert(RT && "BuildAppleKextVirtualCall - Qual type must be record");
289 const auto *RD = cast<CXXRecordDecl>(RT->getDecl());
H A DCodeGenTypes.cpp160 if (const RecordType *RT = dyn_cast<RecordType>(T))
161 return isSafeToConvert(RT->getDecl(), CGT, AlreadyChecked);
205 const RecordType *RT = dyn_cast<RecordType>(TT); local
206 if (!RT) return true;
215 return isSafeToConvert(RT->getDecl(), *this);
303 if (const RecordType *RT = dyn_cast<RecordType>(Ty))
304 return ConvertRecordDeclType(RT->getDecl());
487 if (const RecordType *RT = FT->getReturnType()->getAs<RecordType>())
488 ConvertRecordDeclType(RT->getDecl());
491 if (const RecordType *RT
[all...]
H A DCGExprConstant.cpp828 const RecordType *RT = local
830 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
1419 if (const RecordType *RT = T->getAs<RecordType>()) {
1420 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
H A DCGStmtOpenMP.cpp835 auto &RT = CGM.getOpenMPRuntime(); local
838 const bool Dynamic = RT.isDynamic(ScheduleKind);
840 assert(!RT.isStaticNonchunked(ScheduleKind, /* Chunked */ Chunk != nullptr) &&
895 RT.emitForInit(
916 BoolCondVal = RT.emitForNext(*this, S.getLocStart(), IVSize, IVSigned,
966 RT.emitForFinish(*this, S.getLocStart(), ScheduleKind);
992 auto &RT = CGM.getOpenMPRuntime(); local
1041 if (RT.isStaticNonchunked(ScheduleKind,
1048 RT.emitForInit(*this, S.getLocStart(), ScheduleKind, IVSize, IVSigned,
1063 RT
[all...]
H A DTargetInfo.cpp53 static CGCXXABI::RecordArgABI getRecordArgABI(const RecordType *RT, argument
55 const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl());
63 const RecordType *RT = T->getAs<RecordType>(); local
64 if (!RT)
66 return getRecordArgABI(RT, CXXABI);
196 const RecordType *RT = FT->getAs<RecordType>(); local
197 if (!RT)
204 if (isa<CXXRecordDecl>(RT->getDecl()))
214 const RecordType *RT = T->getAs<RecordType>(); local
215 if (!RT)
242 const RecordType *RT = T->getAs<RecordType>(); local
335 const RecordType *RT = Ty->getAs<RecordType>(); local
788 const RecordType *RT = Ty->getAs<RecordType>(); local
901 const RecordType *RT = Ty->getAs<RecordType>(); local
1031 const RecordType *RT = Ty->getAs<RecordType>(); local
6670 appendRecordType(SmallStringEnc &Enc, const RecordType *RT, const CodeGen::CodeGenModule &CGM, TypeStringCache &TSC, const IdentifierInfo *ID) argument
[all...]
/external/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp77 raw_ostream &operator<<(raw_ostream &OS, const ARM::WinEH::ReturnType &RT) { argument
78 switch (RT) {
/external/clang/lib/Sema/
H A DSemaExceptionSpec.cpp93 } else if (const ReferenceType *RT = T->getAs<ReferenceType>()) {
94 PointeeT = RT->getPointeeType();
97 if (RT->isRValueReferenceType()) {
866 else if (const ReferenceType *RT = T->getAs<ReferenceType>())
867 FT = RT->getPointeeType()->getAs<FunctionProtoType>();
904 const RecordType *RT = Op->getType()->getAs<RecordType>(); local
905 if (!RT)
908 if (!cast<CXXRecordDecl>(RT->getDecl())->isPolymorphic())
1000 if (const RecordType *RT = DTy->getAs<RecordType>()) {
1001 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT
[all...]
H A DSemaStmtAsm.cpp571 const RecordType *RT = nullptr; local
574 RT = VD->getType()->getAs<RecordType>();
577 RT = TD->getUnderlyingType()->getAs<RecordType>();
579 RT = TD->getTypeForDecl()->getAs<RecordType>();
580 if (!RT)
583 if (RequireCompleteType(AsmLoc, QualType(RT, 0), 0))
589 if (!LookupQualifiedName(FieldResult, RT->getDecl()))
597 const ASTRecordLayout &RL = Context.getASTRecordLayout(RT->getDecl());
H A DSemaAccess.cpp296 if (const RecordType *RT = T->getAs<RecordType>()) {
297 RD = cast<CXXRecordDecl>(RT->getDecl());
426 if (const RecordType *RT = Friend->getAs<RecordType>())
427 return MatchesFriend(S, EC, cast<CXXRecordDecl>(RT->getDecl()));
655 if (const RecordType *RT = T->getAs<RecordType>()) {
656 RD = cast<CXXRecordDecl>(RT->getDecl());
1728 const RecordType *RT = ObjectExpr->getType()->castAs<RecordType>(); local
1729 CXXRecordDecl *NamingClass = cast<CXXRecordDecl>(RT->getDecl());
/external/llvm/include/llvm/TableGen/
H A DRecord.h147 static bool classof(const RecTy *RT) { argument
148 return RT->getRecTyKind() == BitRecTyKind;
184 static bool classof(const RecTy *RT) { argument
185 return RT->getRecTyKind() == BitsRecTyKind;
223 static bool classof(const RecTy *RT) { argument
224 return RT->getRecTyKind() == IntRecTyKind;
261 static bool classof(const RecTy *RT) { argument
262 return RT->getRecTyKind() == StringRecTyKind;
300 static bool classof(const RecTy *RT) { argument
301 return RT
339 classof(const RecTy *RT) argument
377 classof(const RecTy *RT) argument
[all...]
/external/pcre/dist/sljit/
H A DsljitNativeARM_64.c53 #define RT(rt) (reg_map[rt]) macro
843 | (shift << 30) | RT(reg) | RN(arg) | (argw << 12)));
857 FAIL_IF(push_inst(compiler, sljit_mem_reg[flags & 0x3] | (shift << 30) | RT(reg)
868 | RT(reg) | RN(arg) | (argw << (10 - shift))));
879 | RT(reg) | RN(arg) | ((argw & 0x1ff) << 12)));
935 return push_inst(compiler, sljit_mem_imm[flags & 0x3] | (shift << 30) | RT(reg) | RN(other_r));
943 return push_inst(compiler, sljit_mem_imm[flags & 0x3] | (shift << 30) | RT(reg) | RN(other_r));
972 FAIL_IF(push_inst(compiler, sljit_mem_reg[flags & 0x3] | (shift << 30) | RT(reg) | RN(arg) | RM(other_r) | (argw ? (1 << 12) : 0)));
977 return push_inst(compiler, sljit_mem_imm[flags & 0x3] | (shift << 30) | RT(reg) | RN(arg));
980 FAIL_IF(push_inst(compiler, sljit_mem_imm[flags & 0x3] | (shift << 30) | RT(re
[all...]

Completed in 901 milliseconds

12