HomeSort by relevance Sort by last modified time
    Searched defs:PC (Results 1 - 25 of 39) sorted by null

1 2

  /external/llvm/lib/Target/AArch64/
AArch64TargetObjectFile.cpp 31 // is an indirect pc-relative reference. The default implementation
40 const MCExpr *PC = MCSymbolRefExpr::Create(PCSym, getContext());
41 return MCBinaryExpr::CreateSub(Res, PC, getContext());
  /external/libcxx/test/containers/associative/map/map.ops/
equal_range.pass.cpp 370 typedef PrivateConstructor PC;
371 typedef std::map<PC, double, std::less<>> M;
375 m [ PC::make(5) ] = 5;
376 m [ PC::make(7) ] = 6;
377 m [ PC::make(9) ] = 7;
378 m [ PC::make(11) ] = 8;
379 m [ PC::make(13) ] = 9;
380 m [ PC::make(15) ] = 10;
381 m [ PC::make(17) ] = 11;
382 m [ PC::make(19) ] = 12
    [all...]
find.pass.cpp 206 typedef PrivateConstructor PC;
207 typedef std::map<PC, double, std::less<>> M;
211 m [ PC::make(5) ] = 5;
212 m [ PC::make(6) ] = 6;
213 m [ PC::make(7) ] = 7;
214 m [ PC::make(8) ] = 8;
215 m [ PC::make(9) ] = 9;
216 m [ PC::make(10) ] = 10;
217 m [ PC::make(11) ] = 11;
218 m [ PC::make(12) ] = 12
    [all...]
lower_bound.pass.cpp 286 typedef PrivateConstructor PC;
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::make(19) ] = 12
    [all...]
upper_bound.pass.cpp 285 typedef PrivateConstructor PC;
286 typedef std::map<PC, double, std::less<>> M;
290 m [ PC::make(5) ] = 5;
291 m [ PC::make(7) ] = 6;
292 m [ PC::make(9) ] = 7;
293 m [ PC::make(11) ] = 8;
294 m [ PC::make(13) ] = 9;
295 m [ PC::make(15) ] = 10;
296 m [ PC::make(17) ] = 11;
297 m [ PC::make(19) ] = 12
    [all...]
  /external/libcxx/test/containers/associative/multimap/multimap.ops/
equal_range.pass.cpp 225 typedef PrivateConstructor PC;
226 typedef std::multimap<PC, double, std::less<>> M;
230 m.insert ( std::make_pair<PC, double> ( PC::make(5), 1 ));
231 m.insert ( std::make_pair<PC, double> ( PC::make(5), 2 ));
232 m.insert ( std::make_pair<PC, double> ( PC::make(5), 3 ));
233 m.insert ( std::make_pair<PC, double> ( PC::make(7), 1 ))
    [all...]
find.pass.cpp 180 typedef PrivateConstructor PC;
181 typedef std::multimap<PC, double, std::less<>> M;
185 m.insert ( std::make_pair<PC, double> ( PC::make(5), 1 ));
186 m.insert ( std::make_pair<PC, double> ( PC::make(5), 2 ));
187 m.insert ( std::make_pair<PC, double> ( PC::make(5), 3 ));
188 m.insert ( std::make_pair<PC, double> ( PC::make(7), 1 ))
    [all...]
lower_bound.pass.cpp 189 typedef PrivateConstructor PC;
190 typedef std::multimap<PC, double, std::less<>> M;
194 m.insert ( std::make_pair<PC, double> ( PC::make(5), 1 ));
195 m.insert ( std::make_pair<PC, double> ( PC::make(5), 2 ));
196 m.insert ( std::make_pair<PC, double> ( PC::make(5), 3 ));
197 m.insert ( std::make_pair<PC, double> ( PC::make(7), 1 ))
    [all...]
upper_bound.pass.cpp 189 typedef PrivateConstructor PC;
190 typedef std::multimap<PC, double, std::less<>> M;
194 m.insert ( std::make_pair<PC, double> ( PC::make(5), 1 ));
195 m.insert ( std::make_pair<PC, double> ( PC::make(5), 2 ));
196 m.insert ( std::make_pair<PC, double> ( PC::make(5), 3 ));
197 m.insert ( std::make_pair<PC, double> ( PC::make(7), 1 ))
    [all...]
  /external/llvm/lib/MC/
MCAsmInfo.cpp 130 const MCExpr *PC = MCSymbolRefExpr::Create(PCSym, Context);
131 return MCBinaryExpr::CreateSub(Res, PC, Context);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stacktrace_test.cc 38 static uptr PC(uptr idx) {
47 fake_stack[i+1] = PC(i + 1); // retaddr
56 start_pc = PC(0);
66 EXPECT_EQ(PC(i*2 - 1), trace.trace[i]);
80 EXPECT_EQ(PC(i*2 - 1), trace.trace[i]);
93 EXPECT_EQ(PC(i*2 - 1), trace.trace[i]);
116 uptr pc = StackTrace::GetCurrentPc(); local
118 stack.Unwind(0, pc, bp, 0, 0, 0, false);
121 stack.Unwind(1, pc, bp, 0, 0, 0, false);
123 EXPECT_EQ(pc, stack.trace[0])
    [all...]
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCAsmInfo.cpp 55 // is an indirect pc-relative reference. The default implementation
63 const MCExpr *PC = MCSymbolRefExpr::Create(PCSym, Context);
64 return MCBinaryExpr::CreateSub(Res, PC, Context);
  /external/arduino/hardware/arduino/cores/arduino/
pins_arduino.c 70 #define PC 3
163 PC , // PC 7 ** 30 ** D30
164 PC , // PC 6 ** 31 ** D31
165 PC , // PC 5 ** 32 ** D32
166 PC , // PC 4 ** 33 ** D33
167 PC , // PC 3 ** 34 ** D34
    [all...]
  /external/llvm/lib/Target/
TargetLoweringObjectFile.cpp 334 const MCExpr *PC = MCSymbolRefExpr::Create(PCSym, getContext());
335 return MCBinaryExpr::CreateSub(Sym, PC, getContext());
  /development/ndk/platforms/android-9/arch-mips/include/asm/
ptrace.h 22 #define PC 64
  /art/runtime/arch/arm/
registers_arm.h 48 PC = 15,
  /bionic/libc/kernel/uapi/asm-mips/asm/
ptrace.h 22 #define PC 64
  /development/ndk/platforms/android-L/arch-mips/include/asm/
ptrace.h 22 #define PC 64
  /development/ndk/platforms/android-L/arch-mips64/include/asm/
ptrace.h 22 #define PC 64
  /external/chromium_org/third_party/tcmalloc/chromium/src/
malloc_extension.cc 256 void* PC(void** entry, int i) {
295 snprintf(buf, sizeof(buf), " %p", PC(entry, i));
  /external/chromium_org/third_party/tcmalloc/vendor/src/
malloc_extension.cc 239 void* PC(void** entry, int i) {
278 snprintf(buf, sizeof(buf), " %p", PC(entry, i));
  /external/clang/unittests/AST/
CommentParser.cpp 438 ParagraphComment *PC;
441 ::testing::AssertionResult AR = GetChildAt(C, Idx, PC);
447 ::testing::AssertionResult AR = HasChildCount(PC, 1);
453 ::testing::AssertionResult AR = HasTextAt(PC, 0, Text);
622 ParagraphComment *PC;
623 ASSERT_TRUE(GetChildAt(FC, 0, PC));
625 ASSERT_TRUE(HasChildCount(PC, 2));
626 ASSERT_TRUE(HasTextWithNewlineAt(PC, 0, " Aaa"));
627 ASSERT_TRUE(HasTextAt(PC, 1, " Bbb"));
690 ParagraphComment *PC;
    [all...]
  /external/kernel-headers/original/uapi/asm-mips/asm/
ptrace.h 14 #define PC 64
  /external/llvm/lib/Transforms/Utils/
FlattenCFG.cpp 167 Value *PC = PBI->getCondition();
168 if (!PC || !PC->hasOneUse())
272 Value *PC = PBI->getCondition();
287 NC = Builder.CreateOr(PC, CC);
290 NC = Builder.CreateAnd(PC, CC);
293 PC = NC;
  /bionic/libc/arch-mips/include/machine/
regnum.h 74 #define PC 37

Completed in 921 milliseconds

1 2