Searched refs:maxwords (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/tcpdump/ |
H A D | print-smb.c | 476 const u_char *maxwords; in print_lockingandx() local 490 maxwords = ND_MIN(words + 1 + wct * 2, maxbuf); in print_lockingandx() 492 smb_fdata(ndo, words + 1, f1, maxwords, unicodestr); in print_lockingandx() 786 const u_char *words, *maxwords, *data; in print_smb() local 838 maxwords = ND_MIN(data, maxbuf); in print_smb() 859 for (i = 0; words + 1 + 2 * i < maxwords; i++) { in print_smb()
|
/freebsd/contrib/bsddialog/lib/ |
H A D | lib_util.c | 501 int i, l, currlinecols, maxwords, wtextlen, tablen, wordcols; in text_properties() local 506 maxwords = 1024; in text_properties() 507 if ((tp->words = calloc(maxwords, sizeof(int))) == NULL) in text_properties() 529 if (tp->nword + 1 >= maxwords) { in text_properties() 530 maxwords += 1024; in text_properties() 531 tp->words = realloc(tp->words, maxwords * sizeof(int)); in text_properties()
|
/freebsd/sys/dev/safe/ |
H A D | safe.c | 1465 u_int maxwords; in safe_rng() local 1472 maxwords = safe_rngbufsize; in safe_rng() 1473 if (maxwords > SAFE_RNG_MAXBUFSIZ) in safe_rng() 1474 maxwords = SAFE_RNG_MAXBUFSIZ; in safe_rng() 1476 for (i = 0; i < maxwords; i++) in safe_rng() 1512 (*sc->sc_harvest)(sc->sc_rndtest, buf, maxwords*sizeof (u_int32_t)); in safe_rng()
|