Searched refs:CP (Results 1 - 25 of 66) sorted by relevance

123

/external/clang/test/Sema/
H A Dblock-args.c15 int (^CP)(int) = ^(int x) { return x*x; };
16 take(CP);
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DEncodings.properties51 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
[all...]
/external/clang/test/Index/Inputs/
H A Dt1.c28 int (^CP)(int) = ^(int x) { return x * global_var; };
/external/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp124 bool JoinIntervals(CoalescerPair &CP);
130 bool AdjustCopiesBackFrom(const CoalescerPair &CP, MachineInstr *CopyMI);
141 bool RemoveCopyByCommutingDef(const CoalescerPair &CP,MachineInstr *CopyMI);
150 bool shouldJoinPhys(CoalescerPair &CP);
165 void UpdateRegDefsUses(const CoalescerPair &CP);
176 bool eliminateUndefCopy(MachineInstr *CopyMI, const CoalescerPair &CP);
405 bool RegisterCoalescer::AdjustCopiesBackFrom(const CoalescerPair &CP, argument
409 if (!LIS->hasInterval(CP.getDstReg()))
413 LIS->getInterval(CP.isFlipped() ? CP
585 RemoveCopyByCommutingDef(const CoalescerPair &CP, MachineInstr *CopyMI) argument
869 eliminateUndefCopy(MachineInstr *CopyMI, const CoalescerPair &CP) argument
911 UpdateRegDefsUses(const CoalescerPair &CP) argument
1007 shouldJoinPhys(CoalescerPair &CP) argument
1319 RegistersDefinedFromSameValue(LiveIntervals &li, const TargetRegisterInfo &tri, CoalescerPair &CP, VNInfo *VNI, LiveRange *LR, SmallVector<MachineInstr*, 8> &DupCopies) argument
1380 JoinIntervals(CoalescerPair &CP) argument
[all...]
/external/compiler-rt/make/
H A Dconfig.mk23 CP := cp macro
/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/opencv/cv/src/
H A Dcvkalman.cpp45 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/
H A DMSP430ISelDAGToDAG.cpp48 const Constant *CP; member in struct:__anon7609::MSP430ISelAddressMode
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
[all...]
/external/llvm/bindings/ocaml/llvm/
H A DMakefile31 $(Verb) $(CP) -f $< $@
/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/lib/VMCore/
H A DConstantsContext.h551 typename MapTy::iterator FindExistingElement(ConstantClass *CP) { argument
553 typename InverseMapTy::iterator IMI = InverseMap.find(CP);
555 IMI->second->second == CP &&
561 Map.find(MapKey(static_cast<TypeClass*>(CP->getType()),
562 ConstantKeyData<ConstantClass>::getValType(CP)));
563 if (I == Map.end() || I->second != CP) {
566 for (I = Map.begin(); I != Map.end() && I->second != CP; ++I)
606 void remove(ConstantClass *CP) { argument
607 typename MapTy::iterator I = FindExistingElement(CP);
609 assert(I->second == CP
659 getHashValue(const ConstantClass *CP) argument
708 findExistingElement(ConstantClass *CP) argument
748 insert(ConstantClass *CP) argument
753 remove(ConstantClass *CP) argument
[all...]
H A DMakefile28 $(Verb) $(CMP) -s $@ $< || ( $(CP) $< $@ && \
/external/llvm/lib/Target/ARM/
H A DARMConstantPoolValue.cpp63 int ARMConstantPoolValue::getExistingMachineCPValue(MachineConstantPool *CP, argument
164 int ARMConstantPoolConstant::getExistingMachineCPValue(MachineConstantPool *CP, argument
167 const std::vector<MachineConstantPoolEntry> Constants = CP->getConstants();
229 int ARMConstantPoolSymbol::getExistingMachineCPValue(MachineConstantPool *CP, argument
232 const std::vector<MachineConstantPoolEntry> Constants = CP->getConstants();
285 int ARMConstantPoolMBB::getExistingMachineCPValue(MachineConstantPool *CP, argument
288 const std::vector<MachineConstantPoolEntry> Constants = CP->getConstants();
H A DARMConstantPoolValue.h87 virtual int getExistingMachineCPValue(MachineConstantPool *CP,
148 virtual int getExistingMachineCPValue(MachineConstantPool *CP,
181 virtual int getExistingMachineCPValue(MachineConstantPool *CP,
214 virtual int getExistingMachineCPValue(MachineConstantPool *CP,
/external/llvm/bindings/ocaml/
H A DMakefile.ocaml138 $(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/fdlibm/
H A Dmakefile.in61 CP = @CP@
135 $(CP) $(LIB) $(prefix)/lib/$(LIB)
/external/clang/
H A DMakefile83 $(CP) $(PROJ_SRC_DIR)/$${dir}/Makefile $${dir}/Makefile; \
/external/llvm/include/llvm/CodeGen/
H A DMachineConstantPool.h55 virtual int getExistingMachineCPValue(MachineConstantPool *CP,
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp399 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
400 int offset = CP->getOffset();
401 if (CP->isMachineConstantPoolEntry())
402 OS << "<" << *CP->getMachineCPVal() << ">";
404 OS << "<" << *CP->getConstVal() << ">";
409 if (unsigned int TF = CP->getTargetFlags())
H A DInstrEmitter.cpp366 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) {
367 int Offset = CP->getOffset();
368 unsigned Align = CP->getAlignment();
369 Type *Type = CP->getType();
381 if (CP->isMachineConstantPoolEntry())
382 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align);
384 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align);
386 CP->getTargetFlags()));
/external/llvm/docs/
H A DMakefile93 $(Verb) $(CP) $(PROJ_OBJ_DIR)/doxygen.tar.gz $(PROJ_OBJ_DIR)/doxygen/html/
115 $(Verb) $(CP) $(PROJ_OBJ_DIR)/ocamldoc.tar.gz $(PROJ_OBJ_DIR)/ocamldoc/html/
/external/llvm/utils/TableGen/
H A DDAGISelMatcherGen.cpp463 if (const ComplexPattern *CP =
465 const std::vector<Record*> &OpNodes = CP->getRootNodes();
498 const ComplexPattern &CP = local
503 AddMatcher(new CheckComplexPatMatcher(CP, RecNodeEntry,
507 NextRecordedOperandNo += CP.getNumOperands();
508 if (CP.hasProperty(SDNPHasChain)) {
538 if (const ComplexPattern *CP = N->getComplexPatternInfo(CGP)) {
549 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
/external/clang/docs/
H A DMakefile86 $(Verb) $(CP) $(PROJ_OBJ_DIR)/doxygen.tar.gz $(PROJ_OBJ_DIR)/doxygen/html/
/external/opencv/cv/include/
H A Dcvtypes.h275 int CP; /* number of control vector dimensions */ member in struct:CvKalman
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp1089 ObjCCategoryDecl::prop_iterator CP, CE; local
1091 for (CP = CatDecl->prop_begin(), CE = CatDecl->prop_end(); CP!=CE; ++CP)
1092 if ((*CP)->getIdentifier() == Pr->getIdentifier())
1094 if (CP != CE)
1096 DiagnosePropertyMismatch((*CP), Pr, PDecl->getIdentifier());
1103 ObjCInterfaceDecl::prop_iterator CP, CE; local
1105 for (CP = IDecl->prop_begin(), CE = IDecl->prop_end(); CP !
[all...]

Completed in 410 milliseconds

123