HomeSort by relevance Sort by last modified time
    Searched refs:context_ppc (Results 1 - 2 of 2) sorted by null

  /external/google-breakpad/src/processor/
dump_context.cc 340 const MDRawContextPPC* context_ppc = GetContextPPC(); local
343 context_ppc->context_flags);
344 printf(" srr0 = 0x%x\n", context_ppc->srr0);
345 printf(" srr1 = 0x%x\n", context_ppc->srr1);
350 gpr_index, context_ppc->gpr[gpr_index]);
352 printf(" cr = 0x%x\n", context_ppc->cr);
353 printf(" xer = 0x%x\n", context_ppc->xer);
354 printf(" lr = 0x%x\n", context_ppc->lr);
355 printf(" ctr = 0x%x\n", context_ppc->ctr);
356 printf(" mq = 0x%x\n", context_ppc->mq)
    [all...]
minidump.cc 844 scoped_ptr<MDRawContextPPC> context_ppc(new MDRawContextPPC());
849 context_ppc->context_flags = context_flags;
851 size_t flags_size = sizeof(context_ppc->context_flags);
853 reinterpret_cast<uint8_t*>(context_ppc.get()) + flags_size;
872 Normalize128(&context_ppc->vector_save.save_vr[vr_index], true);
876 // context_ppc->context_flags was already swapped.
877 Swap(&context_ppc->srr0);
878 Swap(&context_ppc->srr1);
882 Swap(&context_ppc->gpr[gpr_index]);
884 Swap(&context_ppc->cr)
    [all...]

Completed in 709 milliseconds