Home | History | Annotate | Download | only in Objects

Lines Matching refs:pbuf

3969  *  .  *pbuf is set to point into it,

3971 * Caller must decref it when done using pbuf.
3972 * The string starting at *pbuf is of the form
3988 char **pbuf, int *plen)
4106 *pbuf = buf;
4268 char *pbuf = NULL;
4422 pbuf = "%";
4454 pbuf = PyString_AS_STRING(temp);
4482 pbuf = formatbuf;
4483 len = formatint(pbuf,
4496 prec, c, &pbuf, &ilen);
4526 pbuf = PyString_AS_STRING(temp);
4540 pbuf = formatbuf;
4541 len = formatchar(pbuf, sizeof(formatbuf), v);
4555 if (*pbuf == '-' || *pbuf == '+') {
4556 sign = *pbuf++;
4592 assert(pbuf[0] == '0');
4593 assert(pbuf[1] == c);
4595 *res++ = *pbuf++;
4596 *res++ = *pbuf++;
4615 assert(pbuf[0] == '0');
4616 assert(pbuf[1] == c);
4617 *res++ = *pbuf++;
4618 *res++ = *pbuf++;
4621 Py_MEMCPY(res, pbuf, len);