Home
last modified time | relevance | path

Searched refs:BUFSIZE (Results 1 – 3 of 3) sorted by relevance

/f-stack/freebsd/contrib/openzfs/lib/libspl/os/linux/
H A Dgetmntany.c42 #define BUFSIZE (MNT_LINE_MAX + 2) macro
44 __thread char buf[BUFSIZE];
69 ret = getmntent_r(fp, &mntbuf, buf, BUFSIZE); in _sol_getmntent()
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/cmd/btree_test/
H A Dbtree_test.c23 #define BUFSIZE 256 macro
167 snprintf(why, BUFSIZE, "Unexpectedly found %llu\n", in find_without_index()
175 snprintf(why, BUFSIZE, "Found bad value: %llu\n", *p); in find_without_index()
192 snprintf(why, BUFSIZE, "Didn't find value in tree\n"); in insert_find_remove()
195 snprintf(why, BUFSIZE, "Found (%llu) in tree\n", *p); in insert_find_remove()
204 snprintf(why, BUFSIZE, "Found removed value (%llu)\n", *p); in insert_find_remove()
245 snprintf(why, BUFSIZE, "Found in avl: %llu\n", randval); in drain_tree()
526 char why[BUFSIZE] = {0}; in main()
/f-stack/app/redis-5.0.5/src/
H A Dsha1.c201 #define BUFSIZE 4096 macro
207 unsigned char hash[20], buf[BUFSIZE]; in sha1Test()
213 for(i=0;i<BUFSIZE;i++) in sha1Test()
218 SHA1Update(&ctx, buf, BUFSIZE); in sha1Test()