Lines Matching refs:p
305 bool p = (instruction & (1 << 24)) != 0; in DumpArm() local
315 bool wback = !p || w; in DumpArm()
317 if (p && !wback) { in DumpArm()
319 } else if (p && wback) { in DumpArm()
321 } else if (!p && wback) { in DumpArm()
324 LOG(FATAL) << p << " " << w; in DumpArm()
335 bool p = (instruction & (1 << 24)) != 0; in DumpArm() local
339 opcode = StringPrintf("%s%c%c", (l ? "ldm" : "stm"), (u ? 'i' : 'd'), (p ? 'b' : 'a')); in DumpArm()
1493 bool p = (instr & (1 << 10)) != 0; in DumpThumb32() local
1496 if (p && u && !w) { in DumpThumb32()
1501 } else if (Rn.r == 13 && !p && u && w && (instr & 0xff) == 4) { in DumpThumb32()
1506 bool wback = !p || w; in DumpThumb32()
1510 if (p && !wback) { in DumpThumb32()
1512 } else if (p && wback) { in DumpThumb32()
1514 } else if (!p && wback) { in DumpThumb32()
1517 LOG(FATAL) << p << " " << w; in DumpThumb32()