Lines Matching refs:bptr
160 char *bptr = buf; in dequote() local
172 *bptr++ = *i; in dequote()
175 *bptr++ = *i; in dequote()
316 char *bptr = buf; in pkgconf_tuple_parse() local
322 bptr += pkgconf_strlcpy(buf, client->sysroot_dir, sizeof buf); in pkgconf_tuple_parse()
325 for (ptr = value; *ptr != '\0' && bptr - buf < PKGCONF_BUFSIZE; ptr++) in pkgconf_tuple_parse()
328 *bptr++ = *ptr; in pkgconf_tuple_parse()
360 size_t remain = PKGCONF_BUFSIZE - (bptr - buf); in pkgconf_tuple_parse()
365 size_t nlen = pkgconf_strlcpy(bptr, kv, remain); in pkgconf_tuple_parse()
370 bptr = buf + (PKGCONF_BUFSIZE - 1); in pkgconf_tuple_parse()
374 bptr += nlen; in pkgconf_tuple_parse()
385 nlen = pkgconf_strlcpy(bptr, parsekv, remain); in pkgconf_tuple_parse()
392 bptr = buf + (PKGCONF_BUFSIZE - 1); in pkgconf_tuple_parse()
396 bptr += nlen; in pkgconf_tuple_parse()
402 *bptr = '\0'; in pkgconf_tuple_parse()