/src/usr.bin/tail/ |
read.c | 143 int blen, cnt, recno, wrap; local in function:displaylines 153 blen = cnt = recno = wrap = 0; 165 if (lines[recno].blen < cnt) { 166 if ((n = realloc(lines[recno].l, 169 lines[recno].l = n; 170 lines[recno].blen = cnt + 256; 172 memmove(lines[recno].l, sp, lines[recno].len = cnt); 175 if (++recno == off) { 177 recno = 0 [all...] |
/src/lib/libc/db/recno/ |
rec_search.c | 47 #include "recno.h" 54 * recno: key to find 67 __rec_search(BTREE *t, recno_t recno, enum SRCHOP op) 84 t->bt_cur.index = recno - total; 89 if (++idx == top || total + r->nrecs > recno)
|
/src/lib/libc/db/ |
db2netbsd | 27 mv Makefile.inc README btree changelog db hash man mpool recno lib/libc/db
|
/src/sbin/dump/ |
itime.c | 233 int recno; variable in typeref:typename:int 240 recno = 0; 243 recno++; 246 dumpdates, recno);
|
/src/tests/lib/libc/db/ |
t_db.sh | 107 "Checks recno database using small keys and small data" \ 124 atf_check -o file:exp "$(prog_db)" recno in 187 "Checks recno database using small keys and medium" \ 205 atf_check -o file:exp "$(prog_db)" recno in 270 "Checks recno database using small keys and big data" \ 290 atf_check "$(prog_db)" -o out recno in 298 atf_set "descr" "Checks recno database using random entries" 358 atf_check -o file:exp "$(prog_db)" recno in 364 atf_set "descr" "Checks recno database using reverse order entries" 396 atf_check -o file:exp "$(prog_db)" recno i [all...] |
h_db.c | 274 errx(1, "line %zu: 'K' not available for recno", 281 static recno_t recno; local in function:main 282 recno = atoi(p + 1); 283 key.data = &recno; 284 key.size = sizeof(recno); 606 if (!strcmp(s, "recno")) 608 errx(1, "%s: unknown type (use btree, hash or recno)", s);
|