Lines Matching defs:base
31 isc__buffer_init(isc_buffer_t *b, void *base, unsigned int length) {
33 * Make 'b' refer to the 'length'-byte region starting at 'base'.
34 * XXXDCL see the comment in buffer.h about base being const.
39 ISC__BUFFER_INIT(b, base, length);
53 isc_buffer_reinit(isc_buffer_t *b, void *base, unsigned int length) {
55 * Re-initialize the buffer enough to reconfigure the base of the
64 REQUIRE(base != NULL);
66 (void)memmove(base, b->base, b->length);
67 b->base = base;
253 (void)memmove(b->base, src, (size_t)length);
398 isc__buffer_putmem(isc_buffer_t *b, const unsigned char *base,
404 ISC__BUFFER_PUTMEM(b, base, length);
429 unsigned char *base;
438 base = isc_buffer_used(b);
442 memmove(base, r->base, r->length);