HomeSort by: relevance | last modified time | path
    Searched defs:lastidx (Results 1 - 4 of 4) sorted by relevancy

  /src/sbin/efi/
bootvar.c 265 int idx, lastidx; local in function:find_new_bootvar
272 lastidx = -1;
280 assert(idx > lastidx);
281 if (idx != lastidx + 1) {
284 lastidx = idx;
286 return lastidx + 1;
  /src/common/lib/libc/gen/
radixtree.c 812 * we keep the path updated only for lastidx-1.
813 * vpp is what path_pptr(t, path, lastidx) would be.
817 unsigned int lastidx; local in function:gang_lookup_scan
832 lastidx = path->p_lastidx;
833 KASSERT(lastidx == RADIX_TREE_INVALID_HEIGHT ||
834 lastidx == t->t_height ||
835 !entry_match_p(*path_pptr(t, path, lastidx), tagmask));
837 if (lastidx == RADIX_TREE_INVALID_HEIGHT) {
842 lastidx = 0;
843 vpp = path_pptr(t, path, lastidx);
    [all...]
  /src/sys/dev/usb/
usb_subr.c 327 int curidx, lastidx, curaidx = 0; local in function:usbd_find_idesc
329 for (curidx = lastidx = -1; end - p >= sizeof(*desc);) {
349 if (idesc->bInterfaceNumber != lastidx) {
350 lastidx = idesc->bInterfaceNumber;
  /src/lib/libedit/
readline.c 483 int lastidx; local in function:readline
488 lastidx = count - 1;
489 if (buf[lastidx] == '\n')
490 buf[lastidx] = '\0';

Completed in 96 milliseconds