Home
last modified time | relevance | path

Searched refs:nfound (Results 1 – 17 of 17) sorted by relevance

/netbsd-src/common/lib/libc/gen/
H A Dradixtree.c816 unsigned int nfound; in gang_lookup_scan() local
836 nfound = 0; in gang_lookup_scan()
858 results[nfound] = entry_ptr(*vpp); in gang_lookup_scan()
859 nfound++; in gang_lookup_scan()
860 if (nfound == maxresults) { in gang_lookup_scan()
861 return nfound; in gang_lookup_scan()
864 return nfound; in gang_lookup_scan()
885 return nfound; in gang_lookup_scan()
913 return nfound; in gang_lookup_scan()
1578 unsigned int nfound; in test2() local
[all …]
/netbsd-src/external/bsd/libfido2/dist/fuzz/
H A Dfuzz_pcsc.c156 size_t ndevs, nfound; in test_manifest() local
161 r = fido_pcsc_manifest(NULL, 0, &nfound); in test_manifest()
162 assert(r == FIDO_OK && nfound == 0); in test_manifest()
163 r = fido_pcsc_manifest(NULL, 1, &nfound); in test_manifest()
168 fido_pcsc_manifest(devlist, ndevs, &nfound) != FIDO_OK) in test_manifest()
171 for (size_t i = 0; i < nfound; i++) { in test_manifest()
H A Dfuzz_hid.c178 size_t ndevs, nfound; in manifest() local
193 fido_dev_info_manifest(devlist, ndevs, &nfound) != FIDO_OK) in manifest()
195 for (size_t i = 0; i < nfound; i++) { in manifest()
/netbsd-src/external/gpl2/xcvs/dist/lib/
H A Dglob.c1073 size_t nfound; in glob_in_dir() local
1084 nfound = 0; in glob_in_dir()
1106 nfound = 0; in glob_in_dir()
1120 nfound = 1; in glob_in_dir()
1134 nfound = 0; in glob_in_dir()
1145 nfound = 0; in glob_in_dir()
1225 ++nfound; in glob_in_dir()
1233 if (nfound == 0 && (flags & GLOB_NOCHECK)) in glob_in_dir()
1236 nfound = 1; in glob_in_dir()
1245 if (nfound != 0) in glob_in_dir()
[all …]
/netbsd-src/external/gpl2/gmake/dist/glob/
H A Dglob.c1227 size_t nfound; variable
1269 nfound = 0;
1283 nfound = 1;
1297 nfound = 0;
1308 nfound = 0;
1350 ++nfound;
1357 if (nfound == 0 && (flags & GLOB_NOCHECK))
1360 nfound = 1;
1374 if (nfound != 0)
1380 nfound + 1) *
[all …]
/netbsd-src/usr.sbin/bootp/bootpgw/
H A Dbootpgw.c146 int nfound; in main() local
427 nfound = poll(set, 1, timeout); in main()
428 if (nfound < 0) { in main()
434 if (nfound == 0) { in main()
/netbsd-src/sys/arch/arm/arm/
H A Ddisksubr_mbr.c120 int nfound = 0; in mbr_label_read() local
162 nfound++; in mbr_label_read()
189 if (nfound > 0) { in mbr_label_read()
/netbsd-src/external/gpl3/gdb/dist/gnulib/import/
H A Dglob.c1296 size_t nfound = 0; in glob_in_dir() local
1444 ++nfound; in glob_in_dir()
1445 if (SIZE_MAX - pglob->gl_offs <= nfound) in glob_in_dir()
1452 if (nfound == 0 && (flags & GLOB_NOCHECK)) in glob_in_dir()
1455 nfound = 1; in glob_in_dir()
1463 if (nfound != 0) in glob_in_dir()
1469 < pglob->gl_offs + nfound + 1) in glob_in_dir()
1474 (pglob->gl_pathc + pglob->gl_offs + nfound + 1) in glob_in_dir()
/netbsd-src/external/bsd/libfido2/dist/src/
H A Du2f.c817 size_t nfound = 0; in u2f_authenticate() local
834 &fa->allow_list.ptr[i], fa, nfound, ms))) { in u2f_authenticate()
839 nfound++; in u2f_authenticate()
851 fa->stmt_len = nfound; in u2f_authenticate()
853 if (nfound == 0) in u2f_authenticate()
/netbsd-src/sys/arch/atari/dev/
H A Dfd.c323 int i, nfound, first_found; in fdcattach() local
325 nfound = first_found = 0; in fdcattach()
340 if (nfound == 0) in fdcattach()
342 nfound++; in fdcattach()
347 if (nfound != 0) { in fdcattach()
/netbsd-src/usr.sbin/bootp/bootpd/
H A Dbootpd.c181 int nfound; in main() local
485 nfound = poll(set, 1, timeout); in main()
486 if (nfound < 0) { in main()
504 if (nfound == 0) { in main()
/netbsd-src/sys/kern/
H A Dkern_lwp.c598 int nfound; in lwp_wait() local
628 nfound = 0; in lwp_wait()
668 nfound += exiting; in lwp_wait()
685 nfound++; in lwp_wait()
688 nfound++; in lwp_wait()
713 if (nfound == 0) { in lwp_wait()
H A Dkern_sig.c819 int nfound; in killpg1() local
824 nfound = 0; in killpg1()
839 nfound++; in killpg1()
860 nfound++; in killpg1()
869 return nfound ? 0 : ESRCH; in killpg1()
/netbsd-src/external/bsd/ntp/dist/ntpdate/
H A Dntpdate.c320 int nfound; in ntpdatemain() local
576 nfound = poll(rdfdes, (unsigned int)nbsock, timeout.tv_sec * 1000); in ntpdatemain()
579 nfound = select(maxfd, &rdfdes, NULL, NULL, in ntpdatemain()
582 if (nfound > 0) in ntpdatemain()
584 else if (nfound == SOCKET_ERROR) in ntpdatemain()
606 nfound); in ntpdatemain()
/netbsd-src/usr.sbin/tprof/
H A Dtprof_top.c1006 int nfound; in tprof_top() local
1013 nfound = select(devfd + 1, &r, NULL, NULL, NULL); in tprof_top()
1014 if (nfound == -1) { in tprof_top()
/netbsd-src/usr.sbin/sysinst/
H A Dutil.c85 int nfound; member
1043 tarstats.nfound++; in extract_file_to()
1448 oldfound = tarstats.nfound; in get_and_unpack_sets()
1492 tarstats.nfound = oldfound; in get_and_unpack_sets()
1509 tarstats.nfound, tarstats.nsuccess, tarstats.nerror); in get_and_unpack_sets()
/netbsd-src/sys/miscfs/genfs/
H A Dgenfs_io.c228 int nfound; in genfs_getpages() local
239 nfound = uvn_findpages(uobj, origoffset, &npages, in genfs_getpages()
244 if (nfound == 0) { in genfs_getpages()