Searched defs:PC (Results 1 - 19 of 19) sorted by relevance

/external/arduino/hardware/arduino/cores/arduino/
H A Dpins_arduino.c70 #define PC 3 macro
163 PC , // PC 7 ** 30 ** D30
164 PC , // PC 6 ** 31 ** D31
165 PC , // PC 5 ** 32 ** D32
166 PC , // PC 4 ** 33 ** D33
167 PC , // P
[all...]
/external/llvm/lib/MC/
H A DMCAsmInfo.cpp138 const MCExpr *PC = MCSymbolRefExpr::Create(PCSym, Context); local
139 return MCBinaryExpr::CreateSub(Res, PC, Context);
/external/kernel-headers/original/asm-mips/
H A Dptrace.h15 #define PC 64 macro
/external/llvm/lib/Target/
H A DTargetLoweringObjectFile.cpp315 const MCExpr *PC = MCSymbolRefExpr::Create(PCSym, getContext()); local
316 return MCBinaryExpr::CreateSub(Res, PC, getContext());
/external/llvm/lib/Target/X86/
H A DX86TargetMachine.cpp143 X86PassConfig *PC = new X86PassConfig(this, PM); local
146 PC->enablePass(&EarlyIfConverterID);
148 return PC;
H A DX86InstrInfo.cpp4663 unsigned PC; local
4665 PC = RegInfo.createVirtualRegister(&X86::GR32RegClass);
4667 PC = GlobalBaseReg;
4671 BuildMI(FirstMBB, MBBI, DL, TII->get(X86::MOVPC32r), PC).addImm(0);
4678 .addReg(PC).addExternalSymbol("_GLOBAL_OFFSET_TABLE_",
/external/dropbear/libtomcrypt/src/headers/
H A Dtomcrypt_mac.h251 unsigned char PC[16][256][16] /* 16 tables of 8x128 */ member in struct:__anon5101
H A Dtomcrypt_cipher.h292 unsigned char PC[16][256][16]; member in struct:__anon5095
/external/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp137 // the PC parameter. If a valid instruction can be disassembled its string is
145 uint64_t BytesSize, uint64_t PC, char *OutString,
148 // Wrap the pointer to the Bytes, BytesSize and PC in a MemoryObject.
149 DisasmMemoryObject MemoryObject(Bytes, BytesSize, PC);
156 S = DisAsm->getInstruction(Inst, Size, MemoryObject, PC,
144 LLVMDisasmInstruction(LLVMDisasmContextRef DCR, uint8_t *Bytes, uint64_t BytesSize, uint64_t PC, char *OutString, size_t OutStringSize) argument
/external/clang/unittests/AST/
H A DCommentParser.cpp437 ParagraphComment *PC; local
440 ::testing::AssertionResult AR = GetChildAt(C, Idx, PC);
446 ::testing::AssertionResult AR = HasChildCount(PC, 1);
452 ::testing::AssertionResult AR = HasTextAt(PC, 0, Text);
621 ParagraphComment *PC; local
622 ASSERT_TRUE(GetChildAt(FC, 0, PC));
624 ASSERT_TRUE(HasChildCount(PC, 2));
625 ASSERT_TRUE(HasTextWithNewlineAt(PC, 0, " Aaa"));
626 ASSERT_TRUE(HasTextAt(PC, 1, " Bbb"));
664 ParagraphComment *PC; local
681 ParagraphComment *PC; local
688 ParagraphComment *PC; local
708 ParagraphComment *PC; local
718 ParagraphComment *PC; local
734 ParagraphComment *PC; local
753 ParagraphComment *PC; local
763 ParagraphComment *PC; local
787 ParagraphComment *PC; local
817 ParagraphComment *PC; local
847 ParagraphComment *PC; local
878 ParagraphComment *PC; local
899 ParagraphComment *PC; local
933 ParagraphComment *PC; local
951 ParagraphComment *PC; local
958 ParagraphComment *PC; local
972 ParagraphComment *PC; local
989 ParagraphComment *PC; local
1007 ParagraphComment *PC; local
1024 ParagraphComment *PC; local
1042 ParagraphComment *PC; local
1065 ParagraphComment *PC; local
1087 ParagraphComment *PC; local
1111 ParagraphComment *PC; local
1133 ParagraphComment *PC; local
1156 ParagraphComment *PC; local
1178 ParagraphComment *PC; local
[all...]
/external/clang/lib/AST/
H A DCommentParser.cpp261 void Parser::parseParamCommandArgs(ParamCommandComment *PC, argument
267 S.actOnParamCommandDirectionArg(PC,
273 S.actOnParamCommandParamNameArg(PC,
310 ParamCommandComment *PC; local
318 PC = S.actOnParamCommandStart(Tok.getLocation(),
340 S.actOnParamCommandFinish(PC, Paragraph);
341 return PC;
357 parseParamCommandArgs(PC, Retokenizer);
371 S.actOnParamCommandFinish(PC, Paragraph);
372 return PC;
[all...]
/external/clang/tools/libclang/
H A DCXComment.cpp108 if (const ParagraphComment *PC = dyn_cast<ParagraphComment>(C))
109 return PC->isWhitespace();
432 const ParagraphComment *PC = cast<ParagraphComment>(Child); local
433 if (PC->isWhitespace())
436 FirstParagraph = PC;
438 MiscBlocks.push_back(PC);
/external/llvm/include/llvm/ADT/
H A DTriple.h74 PC, enumerator in enum:llvm::Triple::VendorType
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h396 PathDiagnosticConsumer &PC,
464 PathDiagnosticConsumer &PC,
395 GeneratePathDiagnostic(PathDiagnostic& pathDiagnostic, PathDiagnosticConsumer &PC, ArrayRef<BugReport *> &bugReports) argument
/external/clang/include/clang/AST/
H A DComment.h672 void setParagraph(ParagraphComment *PC) { argument
673 Paragraph = PC;
674 SourceLocation NewLocEnd = PC->getLocEnd();
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp1915 ImplicitCallPoint *PC = cast<ImplicitCallPoint>(&Loc); local
1919 PC->getDecl()->print(Out, LangOptions());
1920 printLocation(Out, PC->getLocation());
1925 ImplicitCallPoint *PC = cast<ImplicitCallPoint>(&Loc); local
1929 PC->getDecl()->print(Out, LangOptions());
1930 printLocation(Out, PC->getLocation());
H A DBugReporter.cpp1853 PathDiagnosticConsumer &PC,
1879 PathDiagnosticBuilder PDB(*this, R, BackMap.get(), &PC);
1852 GeneratePathDiagnostic(PathDiagnostic& PD, PathDiagnosticConsumer &PC, ArrayRef<BugReport *> &bugReports) argument
/external/qemu/target-mips/
H A Dcpu.h142 target_ulong PC; member in struct:TCState
637 env->active_tc.PC = tb->pc;
645 *pc = env->active_tc.PC;
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp78 LLVMContext &C, ParmContext PC)
80 assert(((PC == Call) || (PC == Prologue)) &&
83 CallOrPrologue = PC;
6893 // PC and if destination register is the SP, so restrict register class
76 ARMCCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF, const TargetMachine &TM, SmallVector<CCValAssign, 16> &locs, LLVMContext &C, ParmContext PC) argument

Completed in 1114 milliseconds