Searched defs:PC (Results 1 - 25 of 59) sorted by relevance

123

/external/clang/test/SemaCXX/
H A DPR20705.cpp14 class PC { class
19 static typename PC<T, Invalid>::Type Foo();
/external/libcxx/test/std/containers/associative/map/map.ops/
H A Dcount.pass.cpp160 typedef PrivateConstructor PC; typedef
161 typedef std::map<PC, double, std::less<>> M;
165 m [ PC::make(5) ] = 5;
166 m [ PC::make(6) ] = 6;
167 m [ PC::make(7) ] = 7;
168 m [ PC::make(8) ] = 8;
169 m [ PC::make(9) ] = 9;
170 m [ PC::make(10) ] = 10;
171 m [ PC::make(11) ] = 11;
172 m [ PC
[all...]
H A Dequal_range.pass.cpp424 typedef PrivateConstructor PC; typedef
425 typedef std::map<PC, double, std::less<>> M;
429 m [ PC::make(5) ] = 5;
430 m [ PC::make(7) ] = 6;
431 m [ PC::make(9) ] = 7;
432 m [ PC::make(11) ] = 8;
433 m [ PC::make(13) ] = 9;
434 m [ PC::make(15) ] = 10;
435 m [ PC::make(17) ] = 11;
436 m [ PC
[all...]
H A Dfind.pass.cpp227 typedef PrivateConstructor PC; typedef
228 typedef std::map<PC, double, std::less<>> M;
232 m [ PC::make(5) ] = 5;
233 m [ PC::make(6) ] = 6;
234 m [ PC::make(7) ] = 7;
235 m [ PC::make(8) ] = 8;
236 m [ PC::make(9) ] = 9;
237 m [ PC::make(10) ] = 10;
238 m [ PC::make(11) ] = 11;
239 m [ PC
[all...]
H A Dlower_bound.pass.cpp323 typedef PrivateConstructor PC; typedef
324 typedef std::map<PC, double, std::less<>> M;
328 m [ PC::make(5) ] = 5;
329 m [ PC::make(7) ] = 6;
330 m [ PC::make(9) ] = 7;
331 m [ PC::make(11) ] = 8;
332 m [ PC::make(13) ] = 9;
333 m [ PC::make(15) ] = 10;
334 m [ PC::make(17) ] = 11;
335 m [ PC
[all...]
H A Dupper_bound.pass.cpp286 typedef PrivateConstructor PC; typedef
287 typedef std::map<PC, double, std::less<>> M;
291 m [ PC::make(5) ] = 5;
292 m [ PC::make(7) ] = 6;
293 m [ PC::make(9) ] = 7;
294 m [ PC::make(11) ] = 8;
295 m [ PC::make(13) ] = 9;
296 m [ PC::make(15) ] = 10;
297 m [ PC::make(17) ] = 11;
298 m [ PC
[all...]
/external/libcxx/test/std/containers/associative/multimap/multimap.ops/
H A Dcount.pass.cpp145 typedef PrivateConstructor PC; typedef
146 typedef std::multimap<PC, double, std::less<>> M;
150 m.insert ( std::make_pair<PC, double> ( PC::make(5), 1 ));
151 m.insert ( std::make_pair<PC, double> ( PC::make(5), 2 ));
152 m.insert ( std::make_pair<PC, double> ( PC::make(5), 3 ));
153 m.insert ( std::make_pair<PC, double> ( PC
[all...]
H A Dequal_range.pass.cpp248 typedef PrivateConstructor PC; typedef
249 typedef std::multimap<PC, double, std::less<>> M;
253 m.insert ( std::make_pair<PC, double> ( PC::make(5), 1 ));
254 m.insert ( std::make_pair<PC, double> ( PC::make(5), 2 ));
255 m.insert ( std::make_pair<PC, double> ( PC::make(5), 3 ));
256 m.insert ( std::make_pair<PC, double> ( PC
[all...]
H A Dfind.pass.cpp194 typedef PrivateConstructor PC; typedef
195 typedef std::multimap<PC, double, std::less<>> M;
199 m.insert ( std::make_pair<PC, double> ( PC::make(5), 1 ));
200 m.insert ( std::make_pair<PC, double> ( PC::make(5), 2 ));
201 m.insert ( std::make_pair<PC, double> ( PC::make(5), 3 ));
202 m.insert ( std::make_pair<PC, double> ( PC
[all...]
H A Dlower_bound.pass.cpp205 typedef PrivateConstructor PC; typedef
206 typedef std::multimap<PC, double, std::less<>> M;
210 m.insert ( std::make_pair<PC, double> ( PC::make(5), 1 ));
211 m.insert ( std::make_pair<PC, double> ( PC::make(5), 2 ));
212 m.insert ( std::make_pair<PC, double> ( PC::make(5), 3 ));
213 m.insert ( std::make_pair<PC, double> ( PC
[all...]
H A Dupper_bound.pass.cpp204 typedef PrivateConstructor PC; typedef
205 typedef std::multimap<PC, double, std::less<>> M;
209 m.insert ( std::make_pair<PC, double> ( PC::make(5), 1 ));
210 m.insert ( std::make_pair<PC, double> ( PC::make(5), 2 ));
211 m.insert ( std::make_pair<PC, double> ( PC::make(5), 3 ));
212 m.insert ( std::make_pair<PC, double> ( PC
[all...]
/external/llvm/lib/MC/
H A DMCInstrDesc.cpp37 unsigned PC = RI.getProgramCounter(); local
38 if (PC == 0)
40 if (hasDefOfPhysReg(MI, PC, RI))
42 // A variadic instruction may define PC in the variable operand list.
48 RI.isSubRegisterEq(PC, MI.getOperand(i).getReg()))
H A DMCAsmInfo.cpp140 const MCExpr *PC = MCSymbolRefExpr::create(PCSym, Context); local
141 return MCBinaryExpr::createSub(Res, PC, Context);
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MCAsmInfo.cpp64 const MCExpr *PC = MCSymbolRefExpr::create(PCSym, Context); local
65 return MCBinaryExpr::createSub(Res, PC, Context);
/external/llvm/unittests/MC/
H A DDisassembler.cpp40 unsigned PC = 0; local
42 InstSize = LLVMDisasmInstruction(DCR, BytesP, NumBytes, PC, OutString,
46 PC += InstSize;
50 InstSize = LLVMDisasmInstruction(DCR, BytesP, NumBytes, PC, OutString,
54 PC += InstSize;
58 InstSize = LLVMDisasmInstruction(DCR, BytesP, NumBytes, PC, OutString,
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_stacktrace_test.cc41 static uptr PC(uptr idx) { function in namespace:__sanitizer
57 fake_stack[i+1] = PC(i + 1); // retaddr
66 start_pc = PC(0);
81 EXPECT_EQ(PC(i*2 - 1), trace.trace[i]);
95 EXPECT_EQ(PC(i*2 - 1), trace.trace[i]);
108 EXPECT_EQ(PC(i*2 - 1), trace.trace[i]);
131 fake_stack[1] = PC(1);
135 EXPECT_EQ(PC(0), trace.trace[0]);
136 EXPECT_EQ(PC(1), trace.trace[1]);
148 EXPECT_EQ(PC(
[all...]
/external/llvm/lib/Fuzzer/
H A DFuzzerTracePC.cpp1 //===- FuzzerTracePC.cpp - PC tracing--------------------------------------===//
51 static void HandlePC(uint32_t PC) { argument
52 // We take 12 bits of PC and mix it with the previous PCs.
53 uintptr_t Next = (Prev << 5) ^ (PC & 4095);
/external/llvm/lib/Target/AArch64/
H A DAArch64TargetObjectFile.cpp46 const MCExpr *PC = MCSymbolRefExpr::create(PCSym, getContext()); local
47 return MCBinaryExpr::createSub(Res, PC, getContext());
64 "Arch64 does not support GOT PC rel with extra offset");
71 const MCExpr *PC = MCSymbolRefExpr::create(PCSym, getContext()); local
72 return MCBinaryExpr::createSub(Res, PC, getContext());
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCAsmInfo.cpp145 const MCExpr *PC = MCSymbolRefExpr::Create(PCSym, Context); local
146 return MCBinaryExpr::CreateSub(Res, PC, Context);
/external/compiler-rt/lib/esan/
H A Dworking_set.cpp81 void processRangeAccessWorkingSet(uptr PC, uptr Addr, SIZE_T Size, argument
H A Desan.cpp65 void processRangeAccess(uptr PC, uptr Addr, int Size, bool IsWrite) { argument
66 VPrintf(3, "in esan::%s %p: %c %p %d\n", __FUNCTION__, PC,
72 processRangeAccessWorkingSet(PC, Addr, Size, IsWrite);
/external/llvm/lib/Support/
H A DSignals.cpp59 static FormattedNumber format_ptr(void *PC) { argument
62 return format_hex((uint64_t)PC, PtrWidth);
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DSignals.cpp59 static FormattedNumber format_ptr(void *PC) { argument
62 return format_hex((uint64_t)PC, PtrWidth);
/external/capstone/
H A DMCRegisterInfo.c30 unsigned RA, unsigned PC,
41 RI->PCReg = PC;
28 MCRegisterInfo_InitMCRegisterInfo(MCRegisterInfo *RI, MCRegisterDesc *D, unsigned NR, unsigned RA, unsigned PC, MCRegisterClass *C, unsigned NC, uint16_t (*RURoots)[2], unsigned NRU, MCPhysReg *DL, char *Strings, uint16_t *SubIndices, unsigned NumIndices, uint16_t *RET) argument
/external/swiftshader/third_party/LLVM/lib/Target/
H A DTargetLoweringObjectFile.cpp321 const MCExpr *PC = MCSymbolRefExpr::Create(PCSym, getContext()); local
322 return MCBinaryExpr::CreateSub(Res, PC, getContext());

Completed in 1869 milliseconds

123