Searched refs:n_elem (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/flex/src/
H A Dbuf.c226 * n_elem is number of elements in ptr[], NOT bytes.
231 struct Buf *buf_append (struct Buf *buf, const void *ptr, int n_elem)
235 if (!ptr || n_elem == 0)
239 if (n_elem + buf->nelts > buf->nmax) {
242 n_alloc = n_elem + buf->nelts;
264 (size_t) n_elem * buf->elt_size);
265 buf->nelts += n_elem;
230 buf_append(struct Buf *buf, const void *ptr, int n_elem) argument
H A Dflexdef.h1050 extern struct Buf *buf_append(struct Buf * buf, const void *ptr, int n_elem);

Completed in 59 milliseconds