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

12 3 4 5

  /external/valgrind/main/none/tests/mips64/
load_store_multiple.c 23 #define TESTINST1(instruction, RTval, offset, RT, RS) \
28 "li $"#RT", "#RTval "\n\t" \
33 : #RT, #RS \
40 "li $"#RT", " #RTval "\n\t" \
45 : #RT, #RS \
53 #define TESTINSTsw(RTval, offset, RT, RS) \
59 "li $"#RT", "#RTval "\n\t" \
65 : #RT, #RS \
branch_and_jump_instructions.c 107 #define TEST3(instruction, RDval, RSval, RTval, RD, RS, RT) \
113 "move $"#RT", %2" "\n\t" \
115 instruction" $"#RS", $"#RT", end"instruction#RDval "\n\t" \
124 : #RD, #RS, #RT \
branches.c 130 #define TESTINST4(instruction, RDval, RSval, RTval, RD, RS, RT) \
136 "move $"#RT", %2" "\n\t" \
138 instruction" $"#RS", $"#RT", end"instruction#RDval "\n\t" \
147 : #RD, #RS, #RT \
201 #define TESTINST4l(instruction, RDval, RSval, RTval, RD, RS, RT) \
207 "move $"#RT", %2" "\n\t" \
209 instruction" $"#RS", $"#RT", end"instruction#RDval "\n\t" \
218 : #RD, #RS, #RT \
    [all...]
  /external/clang/lib/AST/
Type.cpp 366 if (const RecordType *RT = getAs<RecordType>())
367 return RT->getDecl()->isClass();
371 if (const RecordType *RT = getAs<RecordType>())
372 return RT->getDecl()->isStruct();
376 if (const RecordType *RT = getAs<RecordType>())
377 return RT->getDecl()->isInterface();
381 if (const RecordType *RT = getAs<RecordType>())
382 return RT->getDecl()->isStruct() || RT->getDecl()->isClass() ||
383 RT->getDecl()->isInterface()
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
LLVMConventionsChecker.cpp 31 const RecordType *RT = T->getAs<RecordType>();
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();
ArrayBoundCheckerV2.cpp 223 if (const RecordType *RT = Ty->getAs<RecordType>()) {
224 const RecordDecl *D = RT->getDecl();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
hidpi.h 314 #define HidP_GetButtonsEx(RT, LC, BL, UL, PD, R, RL) \
315 HidP_GetUsagesEx(RT, LC, BL, UL, PD, R, RL)
510 #define HidP_SetButtons(RT, UP, LC, UL1, UL2, PD, R, RL) \
511 HidP_SetUsages(RT, UP, LC, UL1, UL2, PD, R, RL)
593 #define HidP_UnsetButtons(RT, UP, LC, UL1, UL2, PD, R, RL) \
594 HidP_UnsetUsages(RT, UP, LC, UL1, UL2, PD, R, RL)
  /frameworks/native/include/ui/
vec3.h 95 template <typename RT>
97 tvec3 __attribute__((pure)) cross(const tvec3& u, const tvec3<RT>& v) {
  /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-
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/config/
_bc.h 10 #pragma defineonoption _STLP_NO_RTTI -RT-
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 66 } else if (const ReferenceType *RT = T->getAs<ReferenceType>()) {
67 PointeeT = RT->getPointeeType();
70 if (RT->isRValueReferenceType()) {
825 else if (const ReferenceType *RT = T->getAs<ReferenceType>())
826 FT = RT->getPointeeType()->getAs<FunctionProtoType>();
    [all...]
  /external/pcre/dist/sljit/
sljitNativeARM_64.c 53 #define RT(rt) (reg_map[rt])
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)))
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
onyx_if.c 689 #define RT(x) (x+7)
704 0, GOOD(2), 1500, GOOD(3), 2000, RT(0), 1000, RT(2), 2000, INT_MAX
708 1000, GOOD(2), 1500, GOOD(3), 2000, RT(0), 1000, RT(1), 2000,
709 RT(7), INT_MAX, INT_MAX
713 2000, GOOD(0), 2500, GOOD(2), 5000, GOOD(3), 7500, RT(0), 2500, RT(1), 5000,
714 RT(6), INT_MAX, INT_MAX
718 1000, GOOD(2), 1500, GOOD(3), 2000, RT(0), 0, RT(1), 1000, RT(2), 2000
    [all...]
  /external/libvpx/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...]
  /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/valgrind/main/none/tests/mips32/
mips32_dspr2.c 39 #define TESTDSPINST_RD_RT_DSPC(instruction, RTval, RD, RT) \
46 "move $" #RT ", %2 \n\t" \
53 : #RT, #RD \
55 printf("%s :: rd 0x%08x rt 0x%08x DSPControl 0x%x\n", instruction, out, \
59 #define TESTDSPINST_RD_RT_NODSPC(instruction, RTval, RD, RT) \
65 "move $" #RT ", %1 \n\t" \
70 : #RT, #RD \
72 printf("%s :: rd 0x%08x rt 0x%08x \n", instruction, out, RTval); \
92 #define TESTDSPINST_RD_RS_RT_DSPC(instruction, RSval, RTval, RD, RS, RT) \
101 "move $" #RT ", %3 \n\t" \
    [all...]
  /external/clang/lib/CodeGen/
CGCXX.cpp 340 const RecordType *RT = T->getAs<RecordType>();
341 assert(RT && "BuildAppleKextVirtualCall - Qual type must be record");
342 const auto *RD = cast<CXXRecordDecl>(RT->getDecl());
TargetInfo.cpp 51 static CGCXXABI::RecordArgABI getRecordArgABI(const RecordType *RT,
53 const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl());
61 const RecordType *RT = T->getAs<RecordType>();
62 if (!RT)
64 return getRecordArgABI(RT, CXXABI);
145 // This assumes the user is passing a library name like "rt" instead of a
172 const RecordType *RT = FT->getAs<RecordType>();
173 if (!RT)
180 if (isa<CXXRecordDecl>(RT->getDecl()))
190 const RecordType *RT = T->getAs<RecordType>()
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
Store.cpp 53 if (const RecordType *RT = Ty->getAs<RecordType>()) {
54 const RecordDecl *D = RT->getDecl();
389 if (const ReferenceType *RT = T->getAs<ReferenceType>())
390 T = Ctx.getPointerType(RT->getPointeeType());
  /frameworks/compile/slang/
slang_rs_export_type.cpp     [all...]

Completed in 1066 milliseconds

12 3 4 5