Lines Matching defs:buf
53 int a2d_ASN1_OBJECT(unsigned char *out, int olen, const char *buf, int num)
65 num = strlen(buf);
67 p = buf;
181 int i2t_ASN1_OBJECT(char *buf, int buf_len, const ASN1_OBJECT *a)
183 return OBJ_obj2txt(buf, buf_len, a, 0);
188 char buf[80], *p = buf;
193 i = i2t_ASN1_OBJECT(buf, sizeof(buf), a);
194 if (i > (int)(sizeof(buf) - 1)) {
211 if (p != buf)