Lines Matching refs:bptr
80 unsigned char *bptr;
175 * emit the characters starting at "bptr" and
182 ptr = bptr = &buf[0];
187 bptr = va_arg(ap,unsigned char *);
188 if (bptr==0)
189 bptr = (unsigned char *)"(null pointer)";
192 for (n=0; *bptr++ && n < prec; n++) ;
193 ptr = --bptr;
194 bptr -= n;
218 bptr = buf + MAXOCT + 3;
222 *--bptr = ((int) num & mask1) + 060;
224 *--bptr = ((int) num & mask1) + 0127;
229 *--bptr = '0';
238 *--bptr = fcode;
239 *--bptr = '0';
264 bptr = _p_dconv(num, buf);
266 *--bptr = '-';
275 ptr = bptr = &fcode;
280 _p_emit(bptr,ptr);