Searched defs:CP (Results 1 - 25 of 31) sorted by relevance

12

/external/qemu-pc-bios/
H A DMakefile24 CP := cp macro
33 $(CP) bochs/bios/BIOS-bochs-latest $@
37 $(CP) vgabios/VGABIOS-lgpl-latest.cirrus.bin $@
/external/llvm/lib/MC/
H A DConstantPools.cpp52 ConstantPoolMapTy::iterator CP = ConstantPools.find(Section); local
53 if (CP == ConstantPools.end())
56 return &CP->second;
65 ConstantPool &CP) {
66 if (!CP.empty()) {
68 CP.emitEntries(Streamer);
78 ConstantPool &CP = CPI->second; local
80 emitConstantPool(Streamer, Section, CP);
86 if (ConstantPool *CP = getConstantPool(Section)) {
87 emitConstantPool(Streamer, Section, *CP);
64 emitConstantPool(MCStreamer &Streamer, const MCSection *Section, ConstantPool &CP) argument
[all...]
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfSoundObjectDictionary_autogen.cpp83 SkPdfNativeObject* SkPdfSoundObjectDictionary::CP(SkPdfNativeDoc* doc) { function in class:SkPdfSoundObjectDictionary
84 SkPdfNativeObject* ret = get("CP", "");
92 return get("CP", "") != NULL;
/external/compiler-rt/make/
H A Dconfig.mk23 CP := cp macro
/external/llvm/lib/Target/SystemZ/
H A DSystemZConstantPoolValue.cpp40 getExistingMachineCPValue(MachineConstantPool *CP, unsigned Alignment) { argument
42 const std::vector<MachineConstantPoolEntry> &Constants = CP->getConstants();
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfSoundObjectDictionary_autogen.cpp83 SkPdfNativeObject* SkPdfSoundObjectDictionary::CP(SkPdfNativeDoc* doc) { function in class:SkPdfSoundObjectDictionary
84 SkPdfNativeObject* ret = get("CP", "");
92 return get("CP", "") != NULL;
/external/llvm/lib/CodeGen/
H A DLiveInterval.cpp139 bool LiveRange::overlaps(const LiveRange &Other, const CoalescerPair &CP, argument
164 !CP.isCoalescable(Indexes.getInstructionFromIndex(Def)))
H A DRegisterCoalescer.cpp142 bool joinIntervals(CoalescerPair &CP);
145 bool joinVirtRegs(CoalescerPair &CP);
148 bool joinReservedPhysReg(CoalescerPair &CP);
154 bool adjustCopiesBackFrom(const CoalescerPair &CP, MachineInstr *CopyMI);
165 bool removeCopyByCommutingDef(const CoalescerPair &CP,MachineInstr *CopyMI);
169 bool reMaterializeTrivialDef(CoalescerPair &CP, MachineInstr *CopyMI,
173 bool canJoinPhys(const CoalescerPair &CP);
183 bool eliminateUndefCopy(MachineInstr *CopyMI, const CoalescerPair &CP);
425 bool RegisterCoalescer::adjustCopiesBackFrom(const CoalescerPair &CP, argument
427 assert(!CP
568 removeCopyByCommutingDef(const CoalescerPair &CP, MachineInstr *CopyMI) argument
730 reMaterializeTrivialDef(CoalescerPair &CP, MachineInstr *CopyMI, bool &IsDefCopy) argument
914 eliminateUndefCopy(MachineInstr *CopyMI, const CoalescerPair &CP) argument
1007 canJoinPhys(const CoalescerPair &CP) argument
1187 joinReservedPhysReg(CoalescerPair &CP) argument
1303 const CoalescerPair &CP; member in class:__anon25795::JoinVals
1980 joinVirtRegs(CoalescerPair &CP) argument
2040 joinIntervals(CoalescerPair &CP) argument
[all...]
/external/llvm/lib/Target/ARM/
H A DARMConstantPoolValue.cpp63 int ARMConstantPoolValue::getExistingMachineCPValue(MachineConstantPool *CP, argument
164 int ARMConstantPoolConstant::getExistingMachineCPValue(MachineConstantPool *CP, argument
166 return getExistingMachineCPValueImpl<ARMConstantPoolConstant>(CP, Alignment);
203 int ARMConstantPoolSymbol::getExistingMachineCPValue(MachineConstantPool *CP, argument
205 return getExistingMachineCPValueImpl<ARMConstantPoolSymbol>(CP, Alignment);
243 int ARMConstantPoolMBB::getExistingMachineCPValue(MachineConstantPool *CP, argument
245 return getExistingMachineCPValueImpl<ARMConstantPoolMBB>(CP, Alignment);
H A DARMConstantPoolValue.h70 int getExistingMachineCPValueImpl(MachineConstantPool *CP, argument
73 const std::vector<MachineConstantPoolEntry> &Constants = CP->getConstants();
108 int getExistingMachineCPValue(MachineConstantPool *CP,
167 int getExistingMachineCPValue(MachineConstantPool *CP,
201 int getExistingMachineCPValue(MachineConstantPool *CP,
237 int getExistingMachineCPValue(MachineConstantPool *CP,
/external/chromium_org/native_client_sdk/src/tools/
H A Dcommon.mk187 CP := $(OSHELPERS) cp macro
192 CP := @$(OSHELPERS) cp macro
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelDAGToDAG.cpp50 const Constant *CP; member in struct:__anon26028::MSP430ISelAddressMode
54 unsigned Align; // CP alignment.
57 : BaseType(RegBase), Disp(0), GV(nullptr), CP(nullptr),
62 return GV != nullptr || CP != nullptr || ES != nullptr || JT != -1;
77 } else if (CP) {
78 errs() << " CP ";
79 CP->dump();
152 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
153 AM.CP = CP
[all...]
/external/llvm/tools/yaml2obj/
H A Dyaml2coff.cpp116 // Take a CP and assign addresses and sizes to everything. Returns false if the
118 static bool layoutCOFF(COFFParser &CP) { argument
124 SectionTableStart = sizeof(COFF::header) + CP.Obj.Header.SizeOfOptionalHeader;
125 SectionTableSize = sizeof(COFF::section) * CP.Obj.Sections.size();
130 for (std::vector<COFFYAML::Section>::iterator i = CP.Obj.Sections.begin(),
131 e = CP.Obj.Sections.end();
154 for (std::vector<COFFYAML::Symbol>::iterator i = CP.Obj.Symbols.begin(),
155 e = CP.Obj.Symbols.end();
176 CP.Obj.Header.NumberOfSections = CP
225 writeCOFF(COFFParser &CP, raw_ostream &OS) argument
[all...]
/external/mdnsresponder/mDNSPosix/
H A DMakefile61 CP = cp macro
298 $(CP) $< $@
301 $(CP) $< $@
309 $(CP) $< $@
314 $(CP) $< $@
343 $(CP) $< $@
350 $(CP) $< $@
354 $(CP) $< $@
377 $(CP) $< $@
393 $(CP)
[all...]
/external/llvm/utils/TableGen/
H A DDAGISelMatcherGen.cpp507 if (const ComplexPattern *CP =
509 const std::vector<Record*> &OpNodes = CP->getRootNodes();
547 const ComplexPattern &CP = *N->getComplexPatternInfo(CGP); local
551 AddMatcher(new CheckComplexPatMatcher(CP, RecNodeEntry,
555 NextRecordedOperandNo += CP.getNumOperands();
556 if (CP.hasProperty(SDNPHasChain)) {
H A DCodeGenDAGPatterns.cpp1476 if (const ComplexPattern *CP = getComplexPatternInfo(CGP))
1477 return CP->getNumOperands();
1497 if (const ComplexPattern *CP = getComplexPatternInfo(CGP))
1498 return CP->hasProperty(Property);
2608 const ComplexPattern &CP = CDP.getComplexPattern(LeafRec); local
2609 if (CP.hasProperty(SDNPMayStore)) mayStore = true;
2610 if (CP.hasProperty(SDNPMayLoad)) mayLoad = true;
2611 if (CP.hasProperty(SDNPSideEffect)) hasSideEffects = true;
3039 if (const ComplexPattern *CP =
3041 if (CP
[all...]
/external/llvm/lib/IR/
H A DConstantsContext.h550 typename MapTy::iterator FindExistingElement(ConstantClass *CP) { argument
552 typename InverseMapTy::iterator IMI = InverseMap.find(CP);
554 IMI->second->second == CP &&
560 Map.find(MapKey(static_cast<TypeClass*>(CP->getType()),
561 ConstantKeyData<ConstantClass>::getValType(CP)));
562 if (I == Map.end() || I->second != CP) {
565 for (I = Map.begin(); I != Map.end() && I->second != CP; ++I)
605 void remove(ConstantClass *CP) { argument
606 typename MapTy::iterator I = FindExistingElement(CP);
608 assert(I->second == CP
658 getHashValue(const ConstantClass *CP) argument
707 findExistingElement(ConstantClass *CP) argument
747 insert(ConstantClass *CP) argument
752 remove(ConstantClass *CP) argument
[all...]
/external/clang/lib/Lex/
H A DLexer.cpp1097 static char DecodeTrigraphChar(const char *CP, Lexer *L) { argument
1098 char Res = GetTrigraphCharForLetter(*CP);
1103 L->Diag(CP-2, diag::trigraph_ignored);
1108 L->Diag(CP-2, diag::trigraph_converted) << StringRef(&Res, 1);
2960 case 26: // DOS & CP/M EOF: "^Z".
/external/clang/lib/StaticAnalyzer/Core/
H A DPathDiagnostic.cpp126 getFirstStackedCallToHeaderFile(PathDiagnosticCallPiece *CP, argument
128 SourceLocation CallLoc = CP->callEnter.asLocation();
137 // Check if CP represents a path through a function outside of the main file.
138 if (!SMgr.isInMainFile(CP->callEnterWithin.asLocation()))
139 return CP;
141 const PathPieces &Path = CP->path;
166 if (PathDiagnosticCallPiece *CP = dyn_cast<PathDiagnosticCallPiece>(LastP)) {
167 CP = getFirstStackedCallToHeaderFile(CP, SMgr);
168 if (CP) {
[all...]
H A DBugReporter.cpp544 PathDiagnosticCallPiece *CP = I->first; local
551 if (!CP->hasCallStackMessage())
552 CP->setCallStackMessage(stackMsg);
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp954 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op); local
956 if (CP->isMachineConstantPoolEntry())
957 Res = DAG.getTargetConstantPool(CP->getMachineCPVal(), ValTy,
958 CP->getAlignment());
960 Res = DAG.getTargetConstantPool(CP->getConstVal(), ValTy,
961 CP->getAlignment());
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp310 SDValue CP = DAG.getConstantPool(GAI, MVT::i32); local
311 return DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), CP,
330 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op); local
332 SDLoc dl(CP);
335 if (CP->isMachineConstantPoolEntry()) {
336 Res = DAG.getTargetConstantPool(CP->getMachineCPVal(), PtrVT,
337 CP->getAlignment(), CP->getOffset());
339 Res = DAG.getTargetConstantPool(CP->getConstVal(), PtrVT,
340 CP
[all...]
/external/opencv/cv/include/
H A Dcvtypes.h275 int CP; /* number of control vector dimensions */ member in struct:CvKalman
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1055 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants(); local
1056 if (CP.empty()) return;
1061 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
1062 const MachineConstantPoolEntry &CPE = CP[i];
1111 MachineConstantPoolEntry CPE = CP[CPI];
/external/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp65 const Constant *CP; member in struct:__anon26191::X86ISelAddressMode
69 unsigned Align; // CP alignment.
74 Segment(), GV(nullptr), CP(nullptr), BlockAddr(nullptr), ES(nullptr),
79 return GV != nullptr || CP != nullptr || ES != nullptr ||
124 dbgs() << " CP ";
125 if (CP)
126 CP->dump();
252 else if (AM.CP)
253 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
668 } else if (ConstantPoolSDNode *CP
[all...]

Completed in 557 milliseconds

12