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

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_bitvector_test.cc 36 uptr last_idx = bv.size(); local in function:CheckBV
41 if (last_idx != bv.size())
42 EXPECT_LT(last_idx, idx);
43 last_idx = idx;
48 last_idx = bv.size();
51 if (last_idx != bv.size())
52 EXPECT_LT(last_idx, idx);
53 last_idx = idx;
  /src/lib/libc/stdlib/
malloc.c 230 static size_t last_idx; variable in typeref:typename:size_t
374 last_idx = ptr2idx(tail) - 1;
377 if ((last_idx+1) >= malloc_ninfo && !extend_pgdir(last_idx)) {
379 last_idx = ptr2idx(malloc_brk) - 1;
831 if (idx > last_idx) {
1027 for(i=idx;i <= last_idx;)
1030 last_idx = idx - 1;
1125 if (idx > last_idx) {
  /src/sys/dev/pci/
if_et.c 1836 int error, maxsegs, first_idx, last_idx, i; local in function:et_encap
1912 last_idx = -1;
1925 last_idx = idx;
1937 KASSERT(last_idx >= 0);
1938 tbd->tbd_buf[first_idx].tb_dmap = tbd->tbd_buf[last_idx].tb_dmap;
1939 tbd->tbd_buf[last_idx].tb_dmap = map;
1940 tbd->tbd_buf[last_idx].tb_mbuf = m;

Completed in 15 milliseconds