Home
last modified time | relevance | path

Searched refs:mylen (Results 1 – 5 of 5) sorted by relevance

/freebsd/lib/libc/db/hash/
H A Dhash_bigkey.c447 int mylen, totlen; in collect_data() local
451 mylen = hashp->BSIZE - bp[1]; in collect_data()
455 totlen = len + mylen; in collect_data()
479 collect_data(hashp, xbp, len + mylen, set)) < 1)) in collect_data()
486 memmove(&hashp->tmp_buf[len], (bufp->page) + bp[1], mylen); in collect_data()
512 int mylen, totlen; in collect_key() local
517 mylen = hashp->BSIZE - bp[1]; in collect_key()
520 totlen = len + mylen; in collect_key()
538 memmove(&hashp->tmp_key[len], (bufp->page) + bp[1], mylen); in collect_key()
/freebsd/contrib/ncurses/ncurses/trace/
H A Dvisbuf.c262 static unsigned mylen; in _nc_viswibuf() local
268 if (mylen < ++n) { in _nc_viswibuf()
269 mylen = n + 80; in _nc_viswibuf()
271 mybuf = typeRealloc(wchar_t, mylen, mybuf); in _nc_viswibuf()
273 mybuf = typeMalloc(wchar_t, mylen); in _nc_viswibuf()
/freebsd/usr.sbin/ppp/
H A Dchap.c626 chap_Cmp(char *myans, int mylen, char *hisans, int hislen in chap_Cmp() argument
634 if (mylen != hislen) in chap_Cmp()
642 mylen = 24; in chap_Cmp()
646 for (; mylen; off++, mylen--) in chap_Cmp()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Ddmu.c872 uint64_t mylen = MIN(size, chunksize); in dmu_prefetch_wait() local
874 dmu_prefetch_wait_by_dnode(dn, offset, mylen); in dmu_prefetch_wait()
876 offset += mylen; in dmu_prefetch_wait()
877 size -= mylen; in dmu_prefetch_wait()
1202 uint64_t mylen = MIN(size, DMU_MAX_ACCESS / 2); in dmu_read_impl() local
1209 err = dmu_buf_hold_array_by_dnode(dn, offset, mylen, in dmu_read_impl()
/freebsd/sys/kern/
H A Dkern_jail.c2815 size_t mylen; in prison_find_name() local
2819 mylen = (mypr == &prison0) ? 0 : strlen(mypr->pr_name) + 1; in prison_find_name()
2822 if (!strcmp(pr->pr_name + mylen, name)) { in prison_find_name()