Home | History | Annotate | Download | only in Objects

Lines Matching defs:pbuf

3988  *  .  *pbuf is set to point into it,
3990 * Caller must decref it when done using pbuf.
3991 * The string starting at *pbuf is of the form
4007 char **pbuf, int *plen)
4134 *pbuf = buf;
4303 char *pbuf;
4461 pbuf = "%";
4493 pbuf = PyString_AS_STRING(temp);
4524 pbuf = formatbuf;
4525 len = formatint(pbuf,
4538 prec, c, &pbuf, &ilen);
4568 pbuf = PyString_AS_STRING(temp);
4582 pbuf = formatbuf;
4583 len = formatchar(pbuf, sizeof(formatbuf), v);
4597 if (*pbuf == '-' || *pbuf == '+') {
4598 sign = *pbuf++;
4634 assert(pbuf[0] == '0');
4635 assert(pbuf[1] == c);
4637 *res++ = *pbuf++;
4638 *res++ = *pbuf++;
4657 assert(pbuf[0] == '0');
4658 assert(pbuf[1] == c);
4659 *res++ = *pbuf++;
4660 *res++ = *pbuf++;
4663 Py_MEMCPY(res, pbuf, len);