Home
last modified time | relevance | path

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

/freebsd/contrib/tcpdump/
H A Dprint-smb.c476 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 Dlib_util.c501 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 Dsafe.c1466 u_int maxwords; in safe_rng() local
1473 maxwords = safe_rngbufsize; in safe_rng()
1474 if (maxwords > SAFE_RNG_MAXBUFSIZ) in safe_rng()
1475 maxwords = SAFE_RNG_MAXBUFSIZ; in safe_rng()
1477 for (i = 0; i < maxwords; i++) in safe_rng()
1513 (*sc->sc_harvest)(sc->sc_rndtest, buf, maxwords*sizeof (u_int32_t)); in safe_rng()