Home
last modified time | relevance | path

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

12345678910>>...20

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DCOFFEmitter.cpp168 static bool layoutOptionalHeader(COFFParser &CP) { in layoutOptionalHeader() argument
169 if (!CP.isPE()) in layoutOptionalHeader()
171 unsigned PEHeaderSize = CP.is64Bit() ? sizeof(object::pe32plus_header) in layoutOptionalHeader()
173 CP.Obj.Header.SizeOfOptionalHeader = in layoutOptionalHeader()
207 static bool layoutCOFF(COFFParser &CP) { in layoutCOFF() argument
210 CP.SectionTableStart = in layoutCOFF()
211 CP.getHeaderSize() + CP.Obj.Header.SizeOfOptionalHeader; in layoutCOFF()
212 if (CP.isPE()) in layoutCOFF()
213 CP.SectionTableStart += DOSStubSize + sizeof(COFF::PEMagic); in layoutCOFF()
214 CP.SectionTableSize = COFF::SectionSize * CP.Obj.Sections.size(); in layoutCOFF()
[all …]
/third_party/ltp/testcases/kernel/syscalls/setns/
Dsetns02.c30 #define CP "(child) " macro
47 tst_res(TFAIL|TERRNO, CP"uname"); in do_child_newuts()
48 tst_res(TINFO, CP"hostname (inherited from parent): %s", in do_child_newuts()
52 tst_res(TFAIL|TERRNO, CP"sethostname"); in do_child_newuts()
54 tst_res(TFAIL|TERRNO, CP"uname"); in do_child_newuts()
56 tst_res(TINFO, CP"hostname changed to: %s", uts.nodename); in do_child_newuts()
58 tst_res(TFAIL, CP"expected hostname to be different"); in do_child_newuts()
61 tst_res(TPASS, CP"hostname is different in parent/child"); in do_child_newuts()
64 tst_res(TINFO, CP"attempting to switch ns back to parent ns"); in do_child_newuts()
66 tst_res(TFAIL|TERRNO, CP"setns"); in do_child_newuts()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/pae/
Dieee802_1x_cp.c108 SM_STATE(CP, INIT) in SM_STATE() argument
110 SM_ENTRY(CP, INIT); in SM_STATE()
132 SM_STATE(CP, CHANGE) in SM_STATE() argument
134 SM_ENTRY(CP, CHANGE); in SM_STATE()
165 SM_STATE(CP, ALLOWED) in SM_STATE() argument
167 SM_ENTRY(CP, ALLOWED); in SM_STATE()
184 SM_STATE(CP, AUTHENTICATED) in SM_STATE() argument
186 SM_ENTRY(CP, AUTHENTICATED); in SM_STATE()
203 SM_STATE(CP, SECURED) in SM_STATE() argument
205 SM_ENTRY(CP, SECURED); in SM_STATE()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/pae/
Dieee802_1x_cp.c108 SM_STATE(CP, INIT) in SM_STATE() argument
110 SM_ENTRY(CP, INIT); in SM_STATE()
132 SM_STATE(CP, CHANGE) in SM_STATE() argument
134 SM_ENTRY(CP, CHANGE); in SM_STATE()
147 SM_STATE(CP, ALLOWED) in SM_STATE() argument
149 SM_ENTRY(CP, ALLOWED); in SM_STATE()
166 SM_STATE(CP, AUTHENTICATED) in SM_STATE() argument
168 SM_ENTRY(CP, AUTHENTICATED); in SM_STATE()
185 SM_STATE(CP, SECURED) in SM_STATE() argument
187 SM_ENTRY(CP, SECURED); in SM_STATE()
[all …]
/third_party/typescript/tests/baselines/reference/
DquickIntersectionCheckCorrectlyCachesErrors.types15 export function wu<CP extends { o: object }>(CC: F<CP>) {
16 >wu : <CP extends { o: object; }>(CC: F<CP>) => void
18 >CC : F<CP>
29 >CC : F<CP>
31 return <CC {...(null as unknown as CP)} />;
32 ><CC {...(null as unknown as CP)} /> : any
33 >CC : F<CP>
34 >(null as unknown as CP) : CP
35 >null as unknown as CP : CP
DquickIntersectionCheckCorrectlyCachesErrors.symbols24 export function wu<CP extends { o: object }>(CC: F<CP>) {
26 >CP : Symbol(CP, Decl(quickIntersectionCheckCorrectlyCachesErrors.tsx, 5, 19))
30 >CP : Symbol(CP, Decl(quickIntersectionCheckCorrectlyCachesErrors.tsx, 5, 19))
42 return <CC {...(null as unknown as CP)} />;
44 >CP : Symbol(CP, Decl(quickIntersectionCheckCorrectlyCachesErrors.tsx, 5, 19))
DquickIntersectionCheckCorrectlyCachesErrors.errors.txt10 export function wu<CP extends { o: object }>(CC: F<CP>) {
14 return <CC {...(null as unknown as CP)} />;
DquickIntersectionCheckCorrectlyCachesErrors.js7 export function wu<CP extends { o: object }>(CC: F<CP>) {
11 return <CC {...(null as unknown as CP)} />;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DRegisterCoalescer.cpp224 bool joinIntervals(CoalescerPair &CP);
227 bool joinVirtRegs(CoalescerPair &CP);
235 bool joinReservedPhysReg(CoalescerPair &CP);
243 LaneBitmask LaneMask, CoalescerPair &CP,
249 LaneBitmask LaneMask, const CoalescerPair &CP);
255 bool adjustCopiesBackFrom(const CoalescerPair &CP, MachineInstr *CopyMI);
270 std::pair<bool,bool> removeCopyByCommutingDef(const CoalescerPair &CP,
274 bool removePartialRedundancy(const CoalescerPair &CP, MachineInstr &CopyMI);
278 bool reMaterializeTrivialDef(const CoalescerPair &CP, MachineInstr *CopyMI,
282 bool canJoinPhys(const CoalescerPair &CP);
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DConstantPools.cpp67 ConstantPoolMapTy::iterator CP = ConstantPools.find(Section); in getConstantPool() local
68 if (CP == ConstantPools.end()) in getConstantPool()
71 return &CP->second; in getConstantPool()
80 ConstantPool &CP) { in emitConstantPool() argument
81 if (!CP.empty()) { in emitConstantPool()
83 CP.emitEntries(Streamer); in emitConstantPool()
91 ConstantPool &CP = CPI.second; in emitAll() local
93 emitConstantPool(Streamer, Section, CP); in emitAll()
99 if (ConstantPool *CP = getConstantPool(Section)) in emitForCurrentSection() local
100 emitConstantPool(Streamer, Section, *CP); in emitForCurrentSection()
[all …]
/third_party/vk-gl-cts/external/vulkan-docs/src/xml/
DMakefile12 CP = cp macro
79 $(CP) $? $@
83 $(CP) $? $@
87 $(CP) $? $@
91 $(CP) $? $@
95 $(CP) $? $@
99 $(CP) $? $@
103 $(CP) $? $@
107 $(CP) $? $@
111 $(CP) $? $@
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstantsContext.h591 static unsigned getHashValue(const ConstantClass *CP) {
593 return getHashValue(LookupKey(CP->getType(), ValType(CP, Storage)));
666 void remove(ConstantClass *CP) {
667 typename MapTy::iterator I = Map.find(CP);
669 assert(*I == CP && "Didn't find correct element?");
674 ConstantClass *CP, Value *From,
677 LookupKey Key(CP->getType(), ValType(Operands, CP));
687 remove(CP);
689 assert(OperandNo < CP->getNumOperands() && "Invalid index");
690 assert(CP->getOperand(OperandNo) != To && "I didn't contain From!");
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/
DMSP430ISelDAGToDAG.cpp49 const Constant *CP = nullptr; member
58 return GV != nullptr || CP != nullptr || ES != nullptr || JT != -1; in hasSymbolicDisplacement()
74 } else if (CP) { in dump()
76 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()
265 else if (AM.CP) in SelectAddr()
266 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i16, in SelectAddr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMConstantPoolValue.cpp75 int ARMConstantPoolValue::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue() argument
191 int ARMConstantPoolConstant::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue() argument
194 getExistingMachineCPValueImpl<ARMConstantPoolConstant>(CP, Alignment); in getExistingMachineCPValue()
197 CP->getConstants()[index].Val.MachineCPVal); in getExistingMachineCPValue()
239 int ARMConstantPoolSymbol::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue() argument
241 return getExistingMachineCPValueImpl<ARMConstantPoolSymbol>(CP, Alignment); in getExistingMachineCPValue()
279 int ARMConstantPoolMBB::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue() argument
281 return getExistingMachineCPValueImpl<ARMConstantPoolMBB>(CP, Alignment); in getExistingMachineCPValue()
DARMConstantPoolValue.h79 int getExistingMachineCPValueImpl(MachineConstantPool *CP, in getExistingMachineCPValueImpl() argument
82 const std::vector<MachineConstantPoolEntry> &Constants = CP->getConstants(); in getExistingMachineCPValueImpl()
116 int getExistingMachineCPValue(MachineConstantPool *CP,
189 int getExistingMachineCPValue(MachineConstantPool *CP,
225 int getExistingMachineCPValue(MachineConstantPool *CP,
261 int getExistingMachineCPValue(MachineConstantPool *CP,
/third_party/typescript/tests/cases/compiler/
DquickIntersectionCheckCorrectlyCachesErrors.ts8 export function wu<CP extends { o: object }>(CC: F<CP>) {
12 return <CC {...(null as unknown as CP)} />;
/third_party/mesa3d/src/freedreno/decode/
Dcffdec.c2641 #define CP(x, fxn, ...) { "CP_" #x, fxn, ##__VA_ARGS__ } macro
2649 CP(NOP, cp_nop),
2650 CP(INDIRECT_BUFFER, cp_indirect),
2651 CP(INDIRECT_BUFFER_PFD, cp_indirect),
2652 CP(WAIT_FOR_IDLE, cp_wfi),
2653 CP(REG_RMW, cp_rmw),
2654 CP(REG_TO_MEM, cp_reg_mem),
2655 CP(MEM_TO_REG, cp_reg_mem), /* same layout as CP_REG_TO_MEM */
2656 CP(MEM_WRITE, cp_mem_write),
2657 CP(EVENT_WRITE, cp_event_write),
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/break_rules/
Dline_cj.txt30 CP = [:LineBreak = Close_Parenthesis:];
64 # OP30 and CP30 are variants of OP and CP that appear in rule LB30 from UAX 14.
69 CP30 = [CP - [\p{ea=F}\p{ea=W}\p{ea=H}]];
71 # OP30 and CP30 are variants of OP and CP that appear in rule LB30 from UAX 14.
76 CP30 = [CP - [\p{ea=F}\p{ea=W}\p{ea=H}]];
106 LB25: ((PR | PO)CM*)? ((OP | HY)CM*)? (IS CM*)? NU (CM*(NU | SY | IS))* (CM*(CL | CP))? (CM*…
122 LB16: (CL | CP)CM* SP* NS;
153 LB13.1: [^SP] CM* [CL CP EX SY];
154 LB13.2: SP [CL CP EX SY];
215 LB30a.1: RI CM* RI ÷ [^BK CR LF NL SP ZW WJ CL CP EX IS SY GL QU BA HY NS IN CM];
[all …]
/third_party/icu/icu4c/source/test/testdata/break_rules/
Dline_cj.txt30 CP = [:LineBreak = Close_Parenthesis:];
64 # OP30 and CP30 are variants of OP and CP that appear in rule LB30 from UAX 14.
69 CP30 = [CP - [\p{ea=F}\p{ea=W}\p{ea=H}]];
71 # OP30 and CP30 are variants of OP and CP that appear in rule LB30 from UAX 14.
76 CP30 = [CP - [\p{ea=F}\p{ea=W}\p{ea=H}]];
106 LB25: ((PR | PO)CM*)? ((OP | HY)CM*)? (IS CM*)? NU (CM*(NU | SY | IS))* (CM*(CL | CP))? (CM*…
122 LB16: (CL | CP)CM* SP* NS;
153 LB13.1: [^SP] CM* [CL CP EX SY];
154 LB13.2: SP [CL CP EX SY];
215 LB30a.1: RI CM* RI ÷ [^BK CR LF NL SP ZW WJ CL CP EX IS SY GL QU BA HY NS IN CM];
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/resources/ohos/global/icu/dev/test/rbbi/break_rules/
Dline_cj.txt30 CP = [:LineBreak = Close_Parenthesis:];
64 # OP30 and CP30 are variants of OP and CP that appear in rule LB30 from UAX 14.
69 CP30 = [CP - [\p{ea=F}\p{ea=W}\p{ea=H}]];
71 # OP30 and CP30 are variants of OP and CP that appear in rule LB30 from UAX 14.
76 CP30 = [CP - [\p{ea=F}\p{ea=W}\p{ea=H}]];
103 LB25: ((PR | PO)CM*)? ((OP | HY)CM*)? (IS CM*)? NU (CM*(NU | SY | IS))* (CM*(CL | CP))? (CM*…
119 LB16: (CL | CP)CM* SP* NS;
150 LB13.1: [^SP] CM* [CL CP EX SY];
151 LB13.2: SP [CL CP EX SY];
213 LB30a.1: RI CM* RI ÷ [^BK CR LF NL SP ZW WJ CL CP EX IS SY GL QU BA HY NS IN CM];
[all …]
Dline.txt30 CP = [:LineBreak = Close_Parenthesis:];
64 # OP30 and CP30 are variants of OP and CP that appear in rule LB30 from UAX 14.
69 CP30 = [CP - [\p{ea=F}\p{ea=W}\p{ea=H}]];
96 LB25: ((PR | PO)CM*)? ((OP | HY)CM*)? (IS CM*)? NU (CM*(NU | SY | IS))* (CM*(CL | CP))? (CM*…
112 LB16: (CL | CP)CM* SP* NS;
143 LB13.1: [^SP] CM* [CL CP EX SY];
144 LB13.2: SP [CL CP EX SY];
206 LB30a.1: RI CM* RI ÷ [^BK CR LF NL SP ZW WJ CL CP EX IS SY GL QU BA HY NS IN CM];
207 LB30a.2: RI CM* RI CM* CMS ÷ [^BK CR LF NL SP ZW WJ CL CP EX IS SY GL QU BA HY NS IN CM];
208 LB30a.3: RI CM* RI CM* [BK CR LF NL SP ZW WJ GL CL CP EX IS SY QU BA HY NS IN ZWJ]?;
/third_party/icu/icu4c/source/data/brkitr/rules/
Dline.txt37 $CP = [:LineBreak = Close_Parenthesis:];
72 # OP30 and CP30 are variants of OP and CP that appear in-line in rule LB30 from UAX 14,
77 $CP30 = [$CP - [\p{ea=F}\p{ea=W}\p{ea=H}]];
120 $AL_FOLLOW = [$BK $CR $LF $NL $ZW $SP $CL $CP $EX $HL $IS $SY $WJ $GL $OP30 $QU $BA $HY $NS $I…
193 $LB8NonBreaks $CP;
194 $CAN_CM $CM* $CP;
195 ^$CM+ $CP; # by rule 10, stand-alone CM behaves as AL
223 $CanFollowIS = [$BK $CR $LF $NL $SP $ZW $WJ $GL $CL $CP $EX $IS $SY $QU $BA $HY $NS $ALPlus $HL $IN…
242 ($CL | $CP) $CM* $SP* $NS;
323 ($CM* ($CL | $CP))? ($CM* ($PR | $PO))?;
[all …]
Dline_cj.txt38 $CP = [:LineBreak = Close_Parenthesis:];
73 # OP30 and CP30 are variants of OP and CP that appear in-line in rule LB30 from UAX 14,
78 $CP30 = [$CP - [\p{ea=F}\p{ea=W}\p{ea=H}]];
121 $AL_FOLLOW = [$BK $CR $LF $NL $ZW $SP $CL $CP $EX $HL $IS $SY $WJ $GL $OP30 $QU $BA $HY $NS $I…
194 $LB8NonBreaks $CP;
195 $CAN_CM $CM* $CP;
196 ^$CM+ $CP; # by rule 10, stand-alone CM behaves as AL
224 $CanFollowIS = [$BK $CR $LF $NL $SP $ZW $WJ $GL $CL $CP $EX $IS $SY $QU $BA $HY $NS $ALPlus $HL $IN…
243 ($CL | $CP) $CM* $SP* $NS;
324 ($CM* ($CL | $CP))? ($CM* ($PR | $PO))?;
[all …]
/third_party/skia/third_party/externals/icu/source/data/brkitr/rules/
Dline_cj.txt38 $CP = [:LineBreak = Close_Parenthesis:];
73 # OP30 and CP30 are variants of OP and CP that appear in-line in rule LB30 from UAX 14,
78 $CP30 = [$CP - [\p{ea=F}\p{ea=W}\p{ea=H}]];
119 $AL_FOLLOW = [$BK $CR $LF $NL $ZW $SP $CL $CP $EX $HL $IS $SY $WJ $GL $OP30 $QU $BA $HY $NS $I…
192 $LB8NonBreaks $CP;
193 $CAN_CM $CM* $CP;
194 ^$CM+ $CP; # by rule 10, stand-alone CM behaves as AL
222 $CanFollowIS = [$BK $CR $LF $NL $SP $ZW $WJ $GL $CL $CP $EX $IS $SY $QU $BA $HY $NS $ALPlus $HL $IN…
241 ($CL | $CP) $CM* $SP* $NS;
322 ($CM* ($CL | $CP))? ($CM* ($PR | $PO))?;
[all …]
Dline.txt37 $CP = [:LineBreak = Close_Parenthesis:];
72 # OP30 and CP30 are variants of OP and CP that appear in-line in rule LB30 from UAX 14,
77 $CP30 = [$CP - [\p{ea=F}\p{ea=W}\p{ea=H}]];
118 $AL_FOLLOW = [$BK $CR $LF $NL $ZW $SP $CL $CP $EX $HL $IS $SY $WJ $GL $OP30 $QU $BA $HY $NS $I…
191 $LB8NonBreaks $CP;
192 $CAN_CM $CM* $CP;
193 ^$CM+ $CP; # by rule 10, stand-alone CM behaves as AL
221 $CanFollowIS = [$BK $CR $LF $NL $SP $ZW $WJ $GL $CL $CP $EX $IS $SY $QU $BA $HY $NS $ALPlus $HL $IN…
240 ($CL | $CP) $CM* $SP* $NS;
321 ($CM* ($CL | $CP))? ($CM* ($PR | $PO))?;
[all …]

12345678910>>...20