Searched defs:ppc (Results 1 - 10 of 10) sorted by relevance

/external/google-breakpad/src/google_breakpad/processor/
H A Ddump_context.h79 void SetContextPPC(MDRawContextPPC* ppc);
95 MDRawContextPPC* ppc; member in union:google_breakpad::DumpContext::__anon6379
/external/compiler-rt/make/platform/
H A Ddarwin_bni.mk60 FUNCTIONS.ppc := $(FUNCTIONS) \
/external/google-breakpad/src/processor/
H A Ddump_context.cc84 BPLOG(ERROR) << "DumpContext cannot get ppc context";
88 return context_.ppc;
196 void DumpContext::SetContextPPC(MDRawContextPPC* ppc) { argument
197 context_.ppc = ppc;
231 delete context_.ppc;
/external/clang/lib/Driver/
H A DTools.h301 namespace ppc { namespace in namespace:clang::driver::tools
303 } // end namespace ppc
760 namespace ppc { namespace in namespace:clang::driver::tools
768 } // end namespace ppc
/external/valgrind/coregrind/m_gdbserver/
H A Dm_gdbserver.c1453 const HChar *ppc; local
1456 ppc = wa;
1457 if (ppc == NULL || !VG_(parse_Addr) (&ppc, address)) {
/external/valgrind/coregrind/
H A Dm_libcbase.c491 Bool VG_(parse_Addr) ( const HChar** ppc, Addr* result ) argument
494 if (**ppc != '0')
496 (*ppc)++;
497 if (**ppc != 'x')
499 (*ppc)++;
502 while (isHex(**ppc)) {
503 // ??? need to vg_assert(d < fromHex(**ppc));
504 *result = ((*result) << 4) | fromHex(**ppc);
505 (*ppc)++;
/external/llvm/include/llvm/ADT/
H A DTriple.h62 ppc, // PPC: powerpc enumerator in enum:llvm::Triple::ArchType
/external/sqlite/dist/orig/
H A Dshell.c2192 int pc, ppc; local
2195 pc = ppc = 0;
2207 || (c==rSep && pc=='\r' && ppc==cQuote)
2225 ppc = pc;
/external/sqlite/dist/
H A Dshell.c2214 int pc, ppc; local
2217 pc = ppc = 0;
2229 || (c==rSep && pc=='\r' && ppc==cQuote)
2247 ppc = pc;
/external/valgrind/memcheck/
H A Dmc_main.c1117 static Bool parse_range ( const HChar** ppc, Addr* result1, Addr* result2 ) argument
1119 Bool ok = VG_(parse_Addr) (ppc, result1);
1122 if (**ppc != '-')
1124 (*ppc)++;
1125 ok = VG_(parse_Addr) (ppc, result2);
1138 const HChar** ppc = &str; local
1142 Bool ok = parse_range(ppc, &start, &end);
1148 if (**ppc == 0)
1150 if (**ppc != ',')
1152 (*ppc)
[all...]

Completed in 4572 milliseconds