HomeSort by relevance Sort by last modified time
    Searched defs:PC (Results 76 - 100 of 104) sorted by null

1 2 34 5

  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/machine/
regnum.h 74 #define PC 37
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/machine/
regnum.h 74 #define PC 37
  /prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/machine/
regnum.h 74 #define PC 37
  /toolchain/binutils/binutils-2.25/include/opcode/
convex.h 51 #if !defined (PC)
52 #define PC 9
77 "pc",
465 {0,0,lr,PC,A,0}, /* mov */
    [all...]
  /external/clang/lib/AST/
CommentParser.cpp 265 void Parser::parseParamCommandArgs(ParamCommandComment *PC,
271 S.actOnParamCommandDirectionArg(PC,
277 S.actOnParamCommandParamNameArg(PC,
314 ParamCommandComment *PC = nullptr;
321 PC = S.actOnParamCommandStart(Tok.getLocation(),
342 if (PC) {
343 S.actOnParamCommandFinish(PC, Paragraph);
344 return PC;
354 if (PC || TPC || Info->NumArgs > 0) {
359 if (PC)
    [all...]
  /external/clang/lib/Index/
CommentToXML.cpp 110 const ParagraphComment *PC = cast<ParagraphComment>(Child);
111 if (PC->isWhitespace())
114 FirstParagraph = PC;
116 MiscBlocks.push_back(PC);
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
m10300-opc.c 90 /* 16 bit pc-relative immediate which may promote to a 16bit
91 pc-relative immediate. */
108 /* 32bit pc-relative offset. */
170 /* 8 bit pc-relative displacement. */
198 /* 16bit pc-relative displacement which may promote to 32bit pc-relative
231 /* PC . */
232 #define PC (MSP+1)
236 #define IMM4 (PC+1)
498 { "mov", 0xf02c, 0xfffc, 0, FMT_D0, AM33, {PC, AN0}}
    [all...]
  /external/llvm/tools/llvm-readobj/
COFFDumper.cpp 532 // Holds a PC to file:line table. Some data to parse this subsection is
640 // Then go the (PC, LineNumber) pairs. The line number is stored in the
642 uint32_t PC = DE.getU32(&Offset),
644 if (PC >= FunctionSize) {
649 format("+0x%X", PC).snprint(Buffer, 32);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
system.h 650 #undef PC /* Likewise. */
    [all...]
  /system/core/libpixelflinger/codeflinger/
ARMAssemblerInterface.h 53 PC = R15
60 LIST(SP), LIST(LR), LIST(PC),
142 virtual void B(int cc, uint32_t* pc) = 0;
143 virtual void BL(int cc, uint32_t* pc) = 0;
  /art/compiler/utils/arm/
assembler_arm32.cc 112 CHECK_NE(rn, PC); // Reserve tst pc instruction for exception handler marker.
118 CHECK_NE(rn, PC); // Reserve teq pc instruction for exception handler marker.
559 EmitType01(AL, 1, TST, kCcSet, PC, R0, ShifterOperand(0));
612 if (!ad.IsImmediate() && ad.GetRegisterOffset() == PC) {
613 // PC relative LDR(literal)
725 CHECK_NE(rd, PC);
726 CHECK_NE(rm, PC);
772 CHECK_NE(rd, PC);
    [all...]
assembler_thumb2.cc 318 size_t final_pc = GetAdjustedPosition(advance.pc);
415 return LdrRtRnImm12Encoding(rt, PC, offset);
591 CHECK_NE(rn, PC); // Reserve tst pc instruction for exception handler marker.
597 CHECK_NE(rn, PC); // Reserve teq pc instruction for exception handler marker.
2548 uint32_t pc = buffer_.Size(); local
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp     [all...]
  /external/llvm/include/llvm/ADT/
Triple.h 120 PC,
  /external/llvm/lib/Target/Hexagon/
HexagonCommonGEP.cpp 615 const NodeSet *PC = node_class(N->Parent, EqRel);
616 if (!PC)
618 ProjMap::iterator F = PM.find(PC);
632 const NodeSet *PC = node_class(N, EqRel);
633 if (!PC)
635 ProjMap::iterator F = PM.find(PC);
    [all...]
  /external/opencv3/modules/calib3d/src/
upnp.cpp 164 const double * pc = &pcs[3 * i]; local
168 pc0[j] += pc[j];
185 double * pc = &pcs[3 * i]; local
189 abt[3 * j ] += (pc[j] - pc0[j]) * (pw[0] - pw0[0]);
190 abt[3 * j + 1] += (pc[j] - pc0[j]) * (pw[1] - pw0[1]);
191 abt[3 * j + 2] += (pc[j] - pc0[j]) * (pw[2] - pw0[2]);
274 Mat PC = Mat(number_of_correspondences, 3, CV_64F, &pws[0]);
278 Mat PC_ = PC.clone().t();
325 double * pc = &pcs[0] + 3 * i; local
328 pc[j] = a[0] * ccs[0][j] + a[1] * ccs[1][j] + a[2] * ccs[2][j] + a[3] * ccs[3][j]
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
m68k-parse.h 82 PC, /* Program counter */
tc-vax.c 100 1. "foo" pc-relative.
436 p[2] = VAX_PC_RELATIVE_MODE; /* ...(PC) */
448 p[5] = VAX_PC_RELATIVE_MODE; /* ...(pc) */
459 p[4] = VAX_PC_RELATIVE_MODE; /* ...(pc) */
467 p[0] = VAX_PC_RELATIVE_MODE; /* ...(PC) */
    [all...]
  /external/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]
  /external/v8/test/cctest/
test-assembler-mips.cc     [all...]
test-assembler-mips64.cc     [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 187 // This is used to search for a data in code table entry for the PC being
188 // disassembled. The j parameter has the PC in j.first. A single data in code
191 // covers the PC being searched for this will return true. If not it will
3528 struct protocol64_t pc; local
3657 struct protocol32_t pc; local
    [all...]
  /prebuilts/tools/common/m2/repository/xhtmlrenderer/xhtmlrenderer/R8rc1/
xhtmlrenderer-R8rc1.jar 
  /external/libgdx/backends/gdx-backends-gwt/libs/
gwt-user.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
findbugs.jar 

Completed in 752 milliseconds

1 2 34 5