Lines Matching refs:ptr
29 void *ptr; in abuf_realloc() local
37 ptr = realloc(abuf->data, new_size); in abuf_realloc()
38 if (!ptr) in abuf_realloc()
40 abuf->data = ptr; in abuf_realloc()
54 ptr = memdup(abuf->data, new_size); in abuf_realloc()
55 if (!ptr) in abuf_realloc()
57 abuf->data = ptr; in abuf_realloc()
66 void *ptr; in abuf_uninit_move() local
73 ptr = abuf->data; in abuf_uninit_move()
75 ptr = memdup(abuf->data, abuf->size); in abuf_uninit_move()
76 if (!ptr) in abuf_uninit_move()
82 return ptr; in abuf_uninit_move()