Searched refs:nextword (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/mailx/
H A Dhead.c57 static int nextword(const char *, custr_t *, const char **);
140 if (nextword(c, hl->hl_from, &c) != 0) {
152 if (nextword(c, hl->hl_from, &c) != 0) {
172 * within a word. Set "nextword" to the location of the first character of the
177 nextword(const char *input, custr_t *word, const char **nextword) argument
190 *nextword = NULL;
227 *nextword = NULL;
234 *nextword = c;
/illumos-gate/usr/src/uts/common/os/
H A Derrorq.c480 index_t nextword = nextindex >> BT_ULSHIFT; local
493 maxbit = (nextword == maxword) ? maxbitindex : BT_ULMASK;
495 if (bx >= nextbitindex && !(bitmap[nextword] & bit))
496 return ((nextword << BT_ULSHIFT) + bx);
497 nextword++;
503 if (nextword <= maxword)
504 if ((rval = bt_availbit(&bitmap[nextword],
505 nbits - (nextword << BT_ULSHIFT))) != -1)
506 return ((nextword << BT_ULSHIFT) + rval);

Completed in 59 milliseconds