Lines Matching defs:num
253 static long ebcdic_ctrl(BIO *b, int cmd, long num, void *ptr);
332 int num;
341 if (inl > (num = wbuf->alloced)) {
342 num = num + num; /* double the size */
343 if (num < inl)
344 num = inl;
346 wbuf = app_malloc(sizeof(*wbuf) + num, "grow ebcdic wbuf");
348 wbuf->alloced = num;
361 static long ebcdic_ctrl(BIO *b, int cmd, long num, void *ptr)
373 ret = BIO_ctrl(next, cmd, num, ptr);
880 {"naccept", OPT_NACCEPT, 'p', "Terminate after #num connections"},