Lines Matching refs:p
428 char *p; in check_binary_download() local
431 p = buf; in check_binary_download()
432 *p++ = 'X'; in check_binary_download()
433 p += hexnumstr (p, (ULONGEST) addr); in check_binary_download()
434 *p++ = ','; in check_binary_download()
435 p += hexnumstr (p, (ULONGEST) 0); in check_binary_download()
436 *p++ = ':'; in check_binary_download()
437 *p = '\0'; in check_binary_download()
439 putpkt_binary (buf, (int) (p - buf)); in check_binary_download()
491 unsigned char *p, *plen; local
498 p = buf;
501 *p++ = 'X';
506 *p++ = 'M';
510 p += hexnumstr ((char *)p, (ULONGEST) memaddr);
511 *p++ = ',';
513 plen = p; /* remember where len field goes */
514 p += hexnumstr ((char *)p, (ULONGEST) todo);
515 *p++ = ':';
516 *p = '\0';
535 *p++ = 0x7d;
536 *p++ = (myaddr[i] & 0xff) ^ 0x20;
539 *p++ = myaddr[i] & 0xff;
561 *p++ = tohex ((myaddr[i] >> 4) & 0xf);
562 *p++ = tohex (myaddr[i] & 0xf);
564 *p = '\0';
567 putpkt_binary ((char *)buf, (int) (p - buf));
641 char *p; local
649 p = buf2;
650 *p++ = '$';
655 *p++ = buf[i];
657 *p++ = '#';
658 *p++ = tohex ((csum >> 4) & 0xf);
659 *p++ = tohex (csum & 0xf);
669 *p = '\0';
671 fputstrn_unfiltered (buf2, p - buf2, 0, gdb_stdlog);
675 if (SERIAL_WRITE (remote_desc, buf2, p - buf2))