Home
last modified time | relevance | path

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

/openbsd/src/lib/libedit/
Dtokenizer.c77 int argc, amax; /* Current and maximum number of args */ in TYPE() local
123 tok->amax = AINCR; in TYPE()
124 tok->argv = reallocarray(NULL, tok->amax, sizeof(*tok->argv)); in TYPE()
415 if (tok->argc >= tok->amax - 4) { in FUN()
417 tok->amax += AINCR; in FUN()
418 p = reallocarray(tok->argv, tok->amax, sizeof(*p)); in FUN()
420 tok->amax -= AINCR; in FUN()
/openbsd/src/usr.bin/rpcgen/
Drpc_cout.c225 print_ifstat(indent, prefix, type, rel, amax, objname, name) in print_ifstat() argument
230 char *amax;
253 print_ifarg(amax);
259 fprintf(fout, " %s", amax);
275 print_ifarg(amax);
290 fprintf(fout, ",\n\t %s", amax);
637 char *amax = def->def.ty.array_max; local
641 print_ifstat(1, prefix, type, rel, amax, "objp", def->def_name);
651 char *amax = dec->array_max; local
660 print_ifstat(indent, prefix, type, rel, amax, name, dec->name);
/openbsd/src/usr.sbin/rpki-client/
Das.c123 uint32_t amin, amax; in as_check_covered() local
130 amax = ases[i].type == CERT_AS_RANGE ? in as_check_covered()
132 if (min >= amin && max <= amax) in as_check_covered()