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

1 2 3 4 5

  /external/clang/test/CodeGen/
global-blocks-lines.c 34 int (^CP)(void) = ^{ X = X+1; return X; };
42 CP();
  /external/llvm/tools/yaml2obj/
yaml2coff.cpp 115 // Take a CP and assign addresses and sizes to everything. Returns false if the
117 static bool layoutCOFF(COFFParser &CP) {
123 SectionTableStart = sizeof(COFF::header) + CP.Obj.Header.SizeOfOptionalHeader;
124 SectionTableSize = sizeof(COFF::section) * CP.Obj.Sections.size();
129 for (std::vector<COFFYAML::Section>::iterator i = CP.Obj.Sections.begin(),
130 e = CP.Obj.Sections.end();
153 for (std::vector<COFFYAML::Symbol>::iterator i = CP.Obj.Symbols.begin(),
154 e = CP.Obj.Symbols.end();
166 CP.Obj.Header.NumberOfSections = CP.Obj.Sections.size()
    [all...]
  /external/llvm/lib/CodeGen/
RegisterCoalescer.cpp 142 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);
426 bool RegisterCoalescer::adjustCopiesBackFrom(const CoalescerPair &CP,
428 assert(!CP.isPartial() && "This doesn't work for partial copies.")
    [all...]
LiveRegMatrix.cpp 121 CoalescerPair CP(VirtReg.reg, PhysReg, *TRI);
123 if (VirtReg.overlaps(LIS->getRegUnit(*Units), CP, *LIS->getSlotIndexes()))
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Encodings.properties 51 Cp037 EBCDIC-CP-US,EBCDIC-CP-CA,EBCDIC-CP-WT,EBCDIC-CP-NL,IBM037 0x0019
57 Cp277 EBCDIC-CP-DK,EBCDIC-CP-NO,IBM277,csIBM277 0x0019
59 Cp278 EBCDIC-CP-FI,EBCDIC-CP-SE,IBM278,csIBM278 0x0019
61 Cp280 EBCDIC-CP-IT,IBM280,csIBM280 0x0019
64 Cp284 EBCDIC-CP-ES,IBM284,csIBM284 0x001
    [all...]
  /external/clang/test/Index/Inputs/
t1.c 28 int (^CP)(int) = ^(int x) { return x * global_var; };
  /external/clang/test/Sema/
block-args.c 15 int (^CP)(int) = ^(int x) { return x*x; };
16 take(CP);
  /external/qemu-pc-bios/
Makefile 24 CP := cp
33 $(CP) bochs/bios/BIOS-bochs-latest $@
37 $(CP) vgabios/VGABIOS-lgpl-latest.cirrus.bin $@
  /external/compiler-rt/make/
config.mk 23 CP := cp
  /external/llvm/lib/Target/SystemZ/
SystemZConstantPoolValue.h 43 virtual int getExistingMachineCPValue(MachineConstantPool *CP,
SystemZConstantPoolValue.cpp 40 getExistingMachineCPValue(MachineConstantPool *CP, unsigned Alignment) {
42 const std::vector<MachineConstantPoolEntry> Constants = CP->getConstants();
  /external/opencv/cv/src/
cvkalman.cpp 45 cvCreateKalman( int DP, int MP, int CP )
57 if( CP < 0 )
58 CP = DP;
66 kalman->CP = CP;
93 if( CP > 0 )
95 CV_CALL( kalman->control_matrix = cvCreateMat( DP, CP, CV_32FC1 ));
181 if( control && kalman->CP > 0 )
  /external/llvm/lib/Target/MSP430/
MSP430ISelDAGToDAG.cpp 48 const Constant *CP;
52 unsigned Align; // CP alignment.
55 : BaseType(RegBase), Disp(0), GV(0), CP(0), BlockAddr(0),
60 return GV != 0 || CP != 0 || ES != 0 || JT != -1;
75 } else if (CP) {
76 errs() << " CP ";
77 CP->dump();
151 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
152 AM.CP = CP->getConstVal()
    [all...]
  /external/llvm/bindings/ocaml/llvm/
Makefile 31 $(Verb) $(CP) -f $< $@
  /external/llvm/lib/Target/ARM/
ARMConstantPoolValue.h 87 virtual int getExistingMachineCPValue(MachineConstantPool *CP,
146 virtual int getExistingMachineCPValue(MachineConstantPool *CP,
176 virtual int getExistingMachineCPValue(MachineConstantPool *CP,
208 virtual int getExistingMachineCPValue(MachineConstantPool *CP,
ARMConstantPoolValue.cpp 63 int ARMConstantPoolValue::getExistingMachineCPValue(MachineConstantPool *CP,
164 int ARMConstantPoolConstant::getExistingMachineCPValue(MachineConstantPool *CP,
167 const std::vector<MachineConstantPoolEntry> Constants = CP->getConstants();
217 int ARMConstantPoolSymbol::getExistingMachineCPValue(MachineConstantPool *CP,
220 const std::vector<MachineConstantPoolEntry> Constants = CP->getConstants();
272 int ARMConstantPoolMBB::getExistingMachineCPValue(MachineConstantPool *CP,
275 const std::vector<MachineConstantPoolEntry> Constants = CP->getConstants();
  /external/mdnsresponder/mDNSPosix/
Makefile 61 CP = cp
298 $(CP) $< $@
301 $(CP) $< $@
309 $(CP) $< $@
314 $(CP) $< $@
331 cp $< $@
335 cp $< $@
339 cp $< $@
343 $(CP) $< $
    [all...]
  /external/llvm/lib/IR/
ConstantsContext.h 558 typename MapTy::iterator FindExistingElement(ConstantClass *CP) {
560 typename InverseMapTy::iterator IMI = InverseMap.find(CP);
562 IMI->second->second == CP &&
568 Map.find(MapKey(static_cast<TypeClass*>(CP->getType()),
569 ConstantKeyData<ConstantClass>::getValType(CP)));
570 if (I == Map.end() || I->second != CP) {
573 for (I = Map.begin(); I != Map.end() && I->second != CP; ++I)
613 void remove(ConstantClass *CP) {
614 typename MapTy::iterator I = FindExistingElement(CP);
616 assert(I->second == CP && "Didn't find correct element?")
    [all...]
Makefile 27 $(Verb) $(CMP) -s $@ $< || ( $(CP) $< $@ && \
  /external/llvm/bindings/ocaml/
Makefile.ocaml 138 $(Verb) $(CP) -f $< $@
141 $(Verb) $(CP) -f $< $@
229 $(Verb) $(CP) -f $< $@
275 $(Verb) $(CP) -f $< $@
301 $(Verb) $(CP) -f $< $@
314 $(Verb) $(CP) -f $< $@
315 $(Verb) $(CP) -f $(<:.cmxa=.a) $(@:.cmxa=.a)
355 $(Verb) $(CP) -f $< $@
  /external/llvm/include/llvm/CodeGen/
MachineConstantPool.h 55 virtual int getExistingMachineCPValue(MachineConstantPool *CP,
  /hardware/ti/omap4xxx/domx/make/
start.mk 74 CP := cp
  /external/fdlibm/
makefile.in 61 CP = @CP@
135 $(CP) $(LIB) $(prefix)/lib/$(LIB)
  /external/e2fsprogs/tests/
Makefile.in 27 $(CP) $(srcdir)/mke2fs.conf.in mke2fs.conf
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 124 getFirstStackedCallToHeaderFile(PathDiagnosticCallPiece *CP,
126 SourceLocation CallLoc = CP->callEnter.asLocation();
135 // Check if CP represents a path through a function outside of the main file.
136 if (!SMgr.isFromMainFile(CP->callEnterWithin.asLocation()))
137 return CP;
139 const PathPieces &Path = CP->path;
164 if (PathDiagnosticCallPiece *CP = dyn_cast<PathDiagnosticCallPiece>(LastP)) {
165 CP = getFirstStackedCallToHeaderFile(CP, SMgr);
166 if (CP) {
    [all...]

Completed in 538 milliseconds

1 2 3 4 5