HomeSort by relevance Sort by last modified time
    Searched refs:RT (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /external/qemu/
ppc-dis.c 704 equal the RT field. */
735 instruction or the RT field in a D, DS, X, XFX or XO form
738 #define RT RS
742 /* The RS and RT fields of the DS form stq instruction, which have
    [all...]
  /external/emma/core/java12/com/vladium/emma/rt/
RT.java 7 * $Id: RT.java,v 1.2.2.3 2004/07/16 23:32:03 vlad_r Exp $
9 package com.vladium.emma.rt;
27 abstract class RT implements 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 ())
    [all...]
RTExitHook.java 9 package com.vladium.emma.rt;
105 RTExitHook (final Class RT, final ICoverageData cdata, final File outFile, final boolean merge)
107 m_RT = RT;
120 private Class m_RT; // keep our RT class pinned in memory
  /external/openssh/regress/
bsd.regress.mk 54 .for RT in ${REGRESSTARGETS}
55 . if ${REGRESSSKIPTARGETS:M${RT}}
61 @if cd ${.CURDIR} && ${MAKE} ${RT}; then \
68 @if cd ${.CURDIR} && (ulimit -t ${REGRESSMAXTIME} ; ${MAKE} ${RT}); then \
76 @echo ${REGRESSNAME}/${RT:S/^run-regress-//} >> ${REGRESSLOG}
  /external/valgrind/main/memcheck/tests/ppc32/
power_ISA2_05.c 176 int RT;
187 __asm__ volatile ("lwarx %0, 20, 21, 1":"=r" (RT));
188 printf("lwarx => %x\n", RT);
193 __asm__ volatile ("ldarx %0, 20, 21, 1":"=r" (RT));
194 printf("ldarx => %x\n", RT);
383 int RT;
394 __asm__ volatile ("lwarx %0, 20, 21, 1":"=r" (RT));
395 printf("lwarx => %x\n", RT);
400 __asm__ volatile ("ldarx %0, 20, 21, 1":"=r" (RT));
401 printf("ldarx => %x\n", RT);
    [all...]
  /external/valgrind/main/memcheck/tests/ppc64/
power_ISA2_05.c 176 int RT;
187 __asm__ volatile ("lwarx %0, 20, 21, 1":"=r" (RT));
188 printf("lwarx => %x\n", RT);
193 __asm__ volatile ("ldarx %0, 20, 21, 1":"=r" (RT));
194 printf("ldarx => %x\n", RT);
383 int RT;
394 __asm__ volatile ("lwarx %0, 20, 21, 1":"=r" (RT));
395 printf("lwarx => %x\n", RT);
400 __asm__ volatile ("ldarx %0, 20, 21, 1":"=r" (RT));
401 printf("ldarx => %x\n", RT);
    [all...]
  /libcore/luni/src/main/java/java/util/
MapEntry.java 28 interface Type<RT, KT, VT> {
29 RT get(MapEntry<KT, VT> entry);
  /external/qemu/tcg/ppc/
tcg-target.c 395 #define RT(r) ((r)<<21)
407 #define TAB(t,a,b) (RT(t) | RA(a) | RB(b))
449 tcg_out32 (s, ADDI | RT (ret) | RA (0) | (arg & 0xffff));
451 tcg_out32 (s, ADDIS | RT (ret) | RA (0) | ((arg >> 16) & 0xffff));
461 tcg_out32 (s, op1 | RT (ret) | RA (addr) | (offset & 0xffff));
464 tcg_out32 (s, op2 | RT (ret) | RA (addr) | RB (0));
493 tcg_out32 (s, LWZ | RT (0) | RA (reg));
495 tcg_out32 (s, LWZ | RT (2) | RA (reg) | 4);
564 tcg_out32 (s, ADD | RT (r0) | RA (r0) | RB (TCG_AREG0));
566 | RT (r1
    [all...]
  /external/clang/lib/AST/
Type.cpp 351 if (const RecordType *RT = getAs<RecordType>())
352 return RT->getDecl()->isClass();
356 if (const RecordType *RT = getAs<RecordType>())
357 return RT->getDecl()->isStruct();
361 if (const RecordType *RT = getAs<RecordType>())
362 return RT->getDecl()->isInterface();
366 if (const RecordType *RT = getAs<RecordType>())
367 return RT->getDecl()->isStruct() || RT->getDecl()->isClass() ||
368 RT->getDecl()->isInterface()
    [all...]
RecordLayoutBuilder.cpp 166 const RecordType *RT =
170 if (!RT)
174 const CXXRecordDecl *MemberDecl = cast<CXXRecordDecl>(RT->getDecl());
402 if (const RecordType *RT = T->getAs<RecordType>()) {
403 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
410 const RecordType *RT = ElemTy->getAs<RecordType>();
411 if (!RT)
414 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
503 if (const RecordType *RT = T->getAs<RecordType>()) {
504 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl())
    [all...]
  /external/qemu/tcg/ppc64/
tcg-target.c 392 #define RT(r) ((r)<<21)
405 #define TAB(t,a,b) (RT(t) | RA(a) | RB(b))
453 tcg_out32 (s, ADDI | RT (ret) | RA (0) | (arg & 0xffff));
455 tcg_out32 (s, ADDIS | RT (ret) | RA (0) | ((arg >> 16) & 0xffff));
521 tcg_out32 (s, LD | RT (0) | RA (reg));
523 tcg_out32 (s, LD | RT (11) | RA (reg) | 16);
524 tcg_out32 (s, LD | RT (2) | RA (reg) | 8);
533 tcg_out32 (s, op1 | RT (ret) | RA (addr) | (offset & 0xffff));
536 tcg_out32 (s, op2 | RT (ret) | RA (addr) | RB (0));
544 tcg_out32 (s, op1 | RT (ret) | RA (addr) | (offset & 0xffff))
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
LLVMConventionsChecker.cpp 30 const RecordType *RT = T->getAs<RecordType>();
31 if (!RT)
34 return StringRef(QualType(RT, 0).getAsString()) ==
246 if (const RecordType *RT = T->getAs<RecordType>()) {
247 const RecordDecl *RD = RT->getDecl()->getDefinition();
ArrayBoundCheckerV2.cpp 224 if (const RecordType *RT = Ty->getAs<RecordType>()) {
225 const RecordDecl *D = RT->getDecl();
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 163 if (const RecordType *RT = dyn_cast<RecordType>(T))
164 return isSafeToConvert(RT->getDecl(), CGT, AlreadyChecked);
204 const RecordType *RT = dyn_cast<RecordType>(TT);
205 if (RT == 0) return true;
214 return isSafeToConvert(RT->getDecl(), *this);
288 if (const RecordType *RT = dyn_cast<RecordType>(Ty))
289 return ConvertRecordDeclType(RT->getDecl());
661 if (const RecordType *RT = T->getAs<RecordType>()) {
662 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
TargetInfo.cpp 130 const RecordType *RT = FT->getAs<RecordType>();
131 if (!RT)
138 if (isa<CXXRecordDecl>(RT->getDecl()))
148 const RecordType *RT = T->getAs<RecordType>();
149 if (!RT)
151 const RecordDecl *RD = RT->getDecl();
171 static bool hasNonTrivialDestructorOrCopyConstructor(const RecordType *RT) {
172 const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl());
183 const RecordType *RT = T->getAs<RecordType>();
184 if (!RT)
    [all...]
CGCXX.cpp 325 const RecordType *RT = T->getAs<RecordType>();
326 assert(RT && "BuildAppleKextVirtualCall - Qual type must be record");
327 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
  /external/clang/lib/StaticAnalyzer/Core/
Store.cpp 52 if (const RecordType *RT = Ty->getAs<RecordType>()) {
53 const RecordDecl *D = RT->getDecl();
251 if (const ReferenceType *RT = T->getAs<ReferenceType>())
252 T = Ctx.getPointerType(RT->getPointeeType());
  /external/stlport/stlport/stl/config/
_bc.h 10 #pragma defineonoption _STLP_NO_RTTI -RT-
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_bc.h 10 #pragma defineonoption _STLP_NO_RTTI -RT-
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/config/
_bc.h 10 #pragma defineonoption _STLP_NO_RTTI -RT-
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/config/
_bc.h 10 #pragma defineonoption _STLP_NO_RTTI -RT-
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/config/
_bc.h 10 #pragma defineonoption _STLP_NO_RTTI -RT-
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/
_bc.h 10 #pragma defineonoption _STLP_NO_RTTI -RT-
  /external/llvm/lib/Target/ARM/
ARMJITInfo.cpp 240 ARM::RelocationType RT = (ARM::RelocationType)MR->getRelocationType();
241 switch (RT) {
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 798 else if (const ReferenceType *RT = T->getAs<ReferenceType>())
799 FT = RT->getPointeeType()->getAs<FunctionProtoType>();
836 const RecordType *RT = Op->getType()->getAs<RecordType>();
837 if (!RT
    [all...]

Completed in 737 milliseconds

1 2 3 4