Home
last modified time | relevance | path

Searched refs:n_elem (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/flex/src/
H A Dbuf.c230 struct Buf *buf_append (struct Buf *buf, const void *ptr, int n_elem) in buf_append() argument
234 if (!ptr || n_elem == 0) in buf_append()
238 if (n_elem + buf->nelts > buf->nmax) { in buf_append()
241 n_alloc = n_elem + buf->nelts; in buf_append()
263 (size_t) n_elem * buf->elt_size); in buf_append()
264 buf->nelts += n_elem; in buf_append()
H A Dflexdef.h1050 extern struct Buf *buf_append(struct Buf * buf, const void *ptr, int n_elem);
/freebsd/crypto/openssl/test/
H A Dcmp_ctx_test.c626 int n_elem = sk_##T##_num(ctx->FIELD); \
644 if (n_elem < 0) /* can happen for NULL stack */ \
645 n_elem = 0; \
658 if (sk_##T##_num(ctx->FIELD) != ++n_elem) { \
682 if (sk_##T##_num(ctx->FIELD) != ++n_elem) { \