Lines Matching refs:u_int
28 u_int alloc; /* Number of bytes allocated for data. */
29 u_int offset; /* Offset of first byte containing data. */
30 u_int end; /* Offset of last byte containing data. */
37 u_int buffer_len(Buffer *);
40 void buffer_append(Buffer *, const void *, u_int);
41 void *buffer_append_space(Buffer *, u_int);
43 int buffer_check_alloc(Buffer *, u_int);
45 void buffer_get(Buffer *, void *, u_int);
47 void buffer_consume(Buffer *, u_int);
48 void buffer_consume_end(Buffer *, u_int);
52 int buffer_get_ret(Buffer *, void *, u_int);
53 int buffer_consume_ret(Buffer *, u_int);
54 int buffer_consume_end_ret(Buffer *, u_int);