Home
last modified time | relevance | path

Searched refs:CP (Results 1 – 25 of 266) sorted by relevance

1234567891011

/external/llvm/tools/yaml2obj/
Dyaml2coff.cpp144 static bool layoutOptionalHeader(COFFParser &CP) { in layoutOptionalHeader() argument
145 if (!CP.isPE()) in layoutOptionalHeader()
147 unsigned PEHeaderSize = CP.is64Bit() ? sizeof(object::pe32plus_header) in layoutOptionalHeader()
149 CP.Obj.Header.SizeOfOptionalHeader = in layoutOptionalHeader()
161 static bool layoutCOFF(COFFParser &CP) { in layoutCOFF() argument
164 CP.SectionTableStart = in layoutCOFF()
165 CP.getHeaderSize() + CP.Obj.Header.SizeOfOptionalHeader; in layoutCOFF()
166 if (CP.isPE()) in layoutCOFF()
167 CP.SectionTableStart += DOSStubSize + sizeof(COFF::PEMagic); in layoutCOFF()
168 CP.SectionTableSize = COFF::SectionSize * CP.Obj.Sections.size(); in layoutCOFF()
[all …]
/external/wpa_supplicant_8/src/pae/
Dieee802_1x_cp.c111 SM_STATE(CP, INIT) in SM_STATE() argument
113 SM_ENTRY(CP, INIT); in SM_STATE()
135 SM_STATE(CP, CHANGE) in SM_STATE() argument
137 SM_ENTRY(CP, CHANGE); in SM_STATE()
150 SM_STATE(CP, ALLOWED) in SM_STATE() argument
152 SM_ENTRY(CP, ALLOWED); in SM_STATE()
168 SM_STATE(CP, AUTHENTICATED) in SM_STATE() argument
170 SM_ENTRY(CP, AUTHENTICATED); in SM_STATE()
186 SM_STATE(CP, SECURED) in SM_STATE() argument
190 SM_ENTRY(CP, SECURED); in SM_STATE()
[all …]
/external/llvm/lib/CodeGen/
DRegisterCoalescer.cpp154 bool joinIntervals(CoalescerPair &CP);
157 bool joinVirtRegs(CoalescerPair &CP);
160 bool joinReservedPhysReg(CoalescerPair &CP);
169 unsigned LaneMask, CoalescerPair &CP);
175 unsigned LaneMask, const CoalescerPair &CP);
181 bool adjustCopiesBackFrom(const CoalescerPair &CP, MachineInstr *CopyMI);
193 bool removeCopyByCommutingDef(const CoalescerPair &CP,MachineInstr *CopyMI);
197 bool reMaterializeTrivialDef(CoalescerPair &CP, MachineInstr *CopyMI,
201 bool canJoinPhys(const CoalescerPair &CP);
451 bool RegisterCoalescer::adjustCopiesBackFrom(const CoalescerPair &CP, in adjustCopiesBackFrom() argument
[all …]
/external/llvm/lib/MC/
DConstantPools.cpp53 ConstantPoolMapTy::iterator CP = ConstantPools.find(Section); in getConstantPool() local
54 if (CP == ConstantPools.end()) in getConstantPool()
57 return &CP->second; in getConstantPool()
66 ConstantPool &CP) { in emitConstantPool() argument
67 if (!CP.empty()) { in emitConstantPool()
69 CP.emitEntries(Streamer); in emitConstantPool()
79 ConstantPool &CP = CPI->second; in emitAll() local
81 emitConstantPool(Streamer, Section, CP); in emitAll()
87 if (ConstantPool *CP = getConstantPool(Section)) { in emitForCurrentSection() local
88 emitConstantPool(Streamer, Section, *CP); in emitForCurrentSection()
/external/apache-xml/src/main/java/org/apache/xml/serializer/
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-ES,IBM284,csIBM284 0x0019
66 Cp285 EBCDIC-CP-GB,IBM284,csIBM285 0x0019
69 Cp297 EBCDIC-CP-FR,IBM297,csIBM297 0x0019
71 Cp420 EBCDIC-CP-AR1,IBM420,csIBM420 0x0019
72 Cp423 EBCDIC-CP-GR,IBM423,csIBM423
74 Cp424 EBCDIC-CP-HE,IBM424,csIBM424 0x0019
[all …]
/external/llvm/lib/IR/
DConstantsContext.h527 static unsigned getHashValue(const ConstantClass *CP) {
529 return getHashValue(LookupKey(CP->getType(), ValType(CP, Storage)));
594 void insert(ConstantClass *CP) { Map[CP] = '\0'; }
597 void remove(ConstantClass *CP) {
598 typename MapTy::iterator I = Map.find(CP);
600 assert(I->first == CP && "Didn't find correct element?");
605 ConstantClass *CP, Value *From,
608 LookupKey Lookup(CP->getType(), ValType(Operands, CP));
615 remove(CP);
617 assert(OperandNo < CP->getNumOperands() && "Invalid index");
[all …]
/external/llvm/test/CodeGen/SystemZ/
Dtls-04.ll4 …< %s -mcpu=z10 -mtriple=s390x-linux-gnu -relocation-model=pic | FileCheck %s -check-prefix=CHECK-CP
11 ; CHECK-CP: .LCP{{.*}}_0:
12 ; CHECK-CP: .quad x@TLSLDM
13 ; CHECK-CP: .LCP{{.*}}_1:
14 ; CHECK-CP: .quad x@DTPOFF
Dtls-03.ll4 …< %s -mcpu=z10 -mtriple=s390x-linux-gnu -relocation-model=pic | FileCheck %s -check-prefix=CHECK-CP
10 ; CHECK-CP: .LCP{{.*}}:
11 ; CHECK-CP: .quad x@TLSGD
Dtls-01.ll4 ; RUN: llc < %s -mcpu=z10 -mtriple=s390x-linux-gnu | FileCheck %s -check-prefix=CHECK-CP
11 ; CHECK-CP: .LCP{{.*}}:
12 ; CHECK-CP: .quad x@NTPOFF
/external/opencv/cv/src/
Dcvkalman.cpp45 cvCreateKalman( int DP, int MP, int CP ) in cvCreateKalman() argument
57 if( CP < 0 ) in cvCreateKalman()
58 CP = DP; in cvCreateKalman()
66 kalman->CP = CP; in cvCreateKalman()
93 if( CP > 0 ) in cvCreateKalman()
95 CV_CALL( kalman->control_matrix = cvCreateMat( DP, CP, CV_32FC1 )); in cvCreateKalman()
181 if( control && kalman->CP > 0 ) in cvKalmanPredict()
/external/clang/test/CodeGenObjC/
Dobjc-gc-aggr-assign.m2 …objc-runtime=macosx-fragile-10.5 -fobjc-gc -emit-llvm -o - %s | FileCheck -check-prefix CHECK-CP %s
59 // CHECK-CP: call i8* @objc_memmove_collectable
60 // CHECK-CP: call i8* @objc_memmove_collectable
61 // CHECK-CP: call i8* @objc_memmove_collectable
62 // CHECK-CP: call i8* @objc_memmove_collectable
/external/llvm/lib/Target/MSP430/
DMSP430ISelDAGToDAG.cpp50 const Constant *CP; member
57 : BaseType(RegBase), Disp(0), GV(nullptr), CP(nullptr), in MSP430ISelAddressMode()
62 return GV != nullptr || CP != nullptr || ES != nullptr || JT != -1; in hasSymbolicDisplacement()
77 } else if (CP) { in dump()
79 CP->dump(); in dump()
147 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) { in MatchWrapper() local
148 AM.CP = CP->getConstVal(); in MatchWrapper()
149 AM.Align = CP->getAlignment(); in MatchWrapper()
150 AM.Disp += CP->getOffset(); in MatchWrapper()
266 else if (AM.CP) in SelectAddr()
[all …]
/external/llvm/lib/Target/ARM/
DARMConstantPoolValue.cpp63 int ARMConstantPoolValue::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue() argument
164 int ARMConstantPoolConstant::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue() argument
166 return getExistingMachineCPValueImpl<ARMConstantPoolConstant>(CP, Alignment); in getExistingMachineCPValue()
203 int ARMConstantPoolSymbol::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue() argument
205 return getExistingMachineCPValueImpl<ARMConstantPoolSymbol>(CP, Alignment); in getExistingMachineCPValue()
243 int ARMConstantPoolMBB::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue() argument
245 return getExistingMachineCPValueImpl<ARMConstantPoolMBB>(CP, Alignment); in getExistingMachineCPValue()
DARMConstantPoolValue.h70 int getExistingMachineCPValueImpl(MachineConstantPool *CP, in getExistingMachineCPValueImpl() argument
73 const std::vector<MachineConstantPoolEntry> &Constants = CP->getConstants(); in getExistingMachineCPValueImpl()
108 int getExistingMachineCPValue(MachineConstantPool *CP,
167 int getExistingMachineCPValue(MachineConstantPool *CP,
201 int getExistingMachineCPValue(MachineConstantPool *CP,
237 int getExistingMachineCPValue(MachineConstantPool *CP,
/external/llvm/test/CodeGen/Generic/
Dllvm-ct-intrinsics.ll12 define void @ctpoptest(i8 %A, i16 %B, i32 %C, i64 %D, i8* %AP, i16* %BP, i32* %CP, i64* %DP) {
19 store i32 %c, i32* %CP
32 define void @ctlztest(i8 %A, i16 %B, i32 %C, i64 %D, i8* %AP, i16* %BP, i32* %CP, i64* %DP) {
39 store i32 %c, i32* %CP
52 define void @cttztest(i8 %A, i16 %B, i32 %C, i64 %D, i8* %AP, i16* %BP, i32* %CP, i64* %DP) {
59 store i32 %c, i32* %CP
/external/icu/icu4c/source/data/brkitr/
Dline.txt72 $CP = [:LineBreak = Close_Parenthesis:];
127 $CPcm = $CP $CM*;
162 $CP $CM+;
203 $AL_FOLLOW_CM = [$CL $CP $EX $HL $IS $SY $WJ $GL $OP $QU $BA $HY $NS $IN $NU $ALPlus];
277 $LB8NonBreaks $CP;
278 $CAN_CM $CM* $CP;
279 $CM+ $CP; # by rule 10, stand-alone CM behaves as AL
420 $CM+ $CP;
518 $CP $CM+ $CAN_CM;
524 $CP [$LB8NonBreaks-$CM];
[all …]
Dline_normal_fi.txt76 $CP = [:LineBreak = Close_Parenthesis:];
132 $CPcm = $CP $CM*;
168 $CP $CM+;
209 $AL_FOLLOW_CM = [$CL $CP $EX $HL $IS $SY $WJ $GL $OP $QU $BA $HH $HY $NS $IN $NU $ALPlus];
283 $LB8NonBreaks $CP;
284 $CAN_CM $CM* $CP;
285 $CM+ $CP; # by rule 10, stand-alone CM behaves as AL
430 $CM+ $CP;
528 $CP $CM+ $CAN_CM;
534 $CP [$LB8NonBreaks-$CM];
[all …]
Dline_fi.txt75 $CP = [:LineBreak = Close_Parenthesis:];
131 $CPcm = $CP $CM*;
167 $CP $CM+;
208 $AL_FOLLOW_CM = [$CL $CP $EX $HL $IS $SY $WJ $GL $OP $QU $BA $HH $HY $NS $IN $NU $ALPlus];
282 $LB8NonBreaks $CP;
283 $CAN_CM $CM* $CP;
284 $CM+ $CP; # by rule 10, stand-alone CM behaves as AL
429 $CM+ $CP;
527 $CP $CM+ $CAN_CM;
533 $CP [$LB8NonBreaks-$CM];
[all …]
Dline_normal.txt75 $CP = [:LineBreak = Close_Parenthesis:];
130 $CPcm = $CP $CM*;
165 $CP $CM+;
206 $AL_FOLLOW_CM = [$CL $CP $EX $HL $IS $SY $WJ $GL $OP $QU $BA $HY $NS $IN $NU $ALPlus];
280 $LB8NonBreaks $CP;
281 $CAN_CM $CM* $CP;
282 $CM+ $CP; # by rule 10, stand-alone CM behaves as AL
423 $CM+ $CP;
521 $CP $CM+ $CAN_CM;
527 $CP [$LB8NonBreaks-$CM];
[all …]
Dline_ja.txt69 $CP = [:LineBreak = Close_Parenthesis:];
124 $CPcm = $CP $CM*;
159 $CP $CM+;
200 $AL_FOLLOW_CM = [$CL $CP $EX $HL $IS $SY $WJ $GL $OP $QU $BA $HY $NS $IN $NU $ALPlus];
274 $LB8NonBreaks $CP;
275 $CAN_CM $CM* $CP;
276 $CM+ $CP; # by rule 10, stand-alone CM behaves as AL
417 $CM+ $CP;
515 $CP $CM+ $CAN_CM;
521 $CP [$LB8NonBreaks-$CM];
[all …]
Dline_loose.txt78 $CP = [:LineBreak = Close_Parenthesis:];
134 $CPcm = $CP $CM*;
170 $CP $CM+;
212 $AL_FOLLOW_CM = [$CL $CP $EX $HL $IS $SY $WJ $GL $OP $QU $BA $HY $NS $NSX $IN $NU $ALPlus];
286 $LB8NonBreaks $CP;
287 $CAN_CM $CM* $CP;
288 $CM+ $CP; # by rule 10, stand-alone CM behaves as AL
432 $CM+ $CP;
531 $CP $CM+ $CAN_CM;
537 $CP [$LB8NonBreaks-$CM];
[all …]
Dline_loose_fi.txt77 $CP = [:LineBreak = Close_Parenthesis:];
134 $CPcm = $CP $CM*;
171 $CP $CM+;
213 $AL_FOLLOW_CM = [$CL $CP $EX $HL $IS $SY $WJ $GL $OP $QU $BA $HH $HY $NS $NSX $IN $NU $ALPlus];
287 $LB8NonBreaks $CP;
288 $CAN_CM $CM* $CP;
289 $CM+ $CP; # by rule 10, stand-alone CM behaves as AL
437 $CM+ $CP;
536 $CP $CM+ $CAN_CM;
542 $CP [$LB8NonBreaks-$CM];
[all …]
Dline_normal_cj.txt77 $CP = [:LineBreak = Close_Parenthesis:];
134 $CPcm = $CP $CM*;
171 $CP $CM+;
213 $AL_FOLLOW_CM = [$CL $CP $EX $HL $IS $SY $WJ $GL $OP $QU $BA $BAX $HY $NS $NSX $IN $NU $ALPlus];
287 $LB8NonBreaks $CP;
288 $CAN_CM $CM* $CP;
289 $CM+ $CP; # by rule 10, stand-alone CM behaves as AL
434 $CM+ $CP;
533 $CP $CM+ $CAN_CM;
539 $CP [$LB8NonBreaks-$CM];
[all …]
/external/clang/test/CodeGen/
Dglobal-blocks-lines.c34 int (^CP)(void) = ^{ X = X+1; return X; };
42 CP(); in main()
/external/clang/test/Sema/
Dblock-args.c15 int (^CP)(int) = ^(int x) { return x*x; }; in test()
16 take(CP); in test()

1234567891011