Lines Matching defs:buf
31 if(!memcmp(p->buf, ID_STRING, strlen(ID_STRING)))
78 static void get_line(AVIOContext *s, uint8_t *buf, int size)
87 buf[i++] = c;
93 buf[i++] = c;
95 buf[i] = 0;
96 } while (!avio_feof(s) && (buf[0] == ';' || buf[0] == '#' || buf[0] == 0));
127 static uint8_t *unescape(const uint8_t *buf, int size)
131 const uint8_t *p2 = buf;
136 while (p2 < buf + size) {