Home
last modified time | relevance | path

Searched refs:read_count (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_custom.cpp2454 int read_count = -1; in check_match_ordinary() local
2455 sscanf(str + str_off, tmp_fmt, &read_count); in check_match_ordinary()
2457 if (read_count > 0) { in check_match_ordinary()
2458 str_off += read_count; in check_match_ordinary()
2460 return read_count; in check_match_ordinary()
2465 int read_count = 0; in scan() local
2466 int retval = sscanf(str + str_off, tmp_fmt, &read_count); in scan()
2471 return read_count; in scan()
2477 int read_count = 0; in scan() local
2478 int retval = sscanf(str + str_off, tmp_fmt, arg, &read_count); in scan()
[all …]
/freebsd/tests/sys/cddl/zfs/bin/
H A Dfile_check.c44 int64_t read_count = 0; in main() local
83 read_count += n; in main()
/freebsd/contrib/llvm-project/libc/src/__support/
H A Darg_list.h67 size_t read_count() const { return arg_counter; } in read_count() function
94 size_t read_count() const { return arg_counter; } in read_count() function
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp600 int read_count = in GetCharacter() local
607 while (read_count > 0 && status == lldb::eConnectionStatusSuccess) in GetCharacter()
608 read_count = in GetCharacter()
614 if (read_count) { in GetCharacter()
1744 size_t read_count = m_input_connection.Read( in CompleteCharacter()
1746 if (read_count == 0) in CompleteCharacter()
/freebsd/sys/dev/qlnx/qlnxe/
H A Decore_dcbx.c462 int read_count = 0; in ecore_dcbx_copy_mib() local
486 read_count++; in ecore_dcbx_copy_mib()
490 type, read_count, prefix_seq_num, suffix_seq_num); in ecore_dcbx_copy_mib()
492 (read_count < ECORE_DCBX_MAX_MIB_READ_TRY)); in ecore_dcbx_copy_mib()
494 if (read_count >= ECORE_DCBX_MAX_MIB_READ_TRY) { in ecore_dcbx_copy_mib()
497 type, read_count, prefix_seq_num, suffix_seq_num); in ecore_dcbx_copy_mib()
/freebsd/tests/sys/fs/fusefs/
H A Dread.cc223 volatile sig_atomic_t read_count = 0; in TEST_F() local
236 read_count++; in TEST_F()
248 read_count++; in TEST_F()
279 EXPECT_EQ(read_count, 1); in TEST_F()
/freebsd/contrib/ntp/ntpd/
H A Dntp_io.c3328 u_int read_count; local
3356 read_count = sizeof(rb->recv_space);
3358 read_count = (u_int)rp->datalen;
3360 buflen = read(fd, (char *)&rb->recv_space, read_count);
/freebsd/contrib/llvm-project/libc/src/__support/RPC/
H A Drpc_server.h181 args_sizes[lane] = printf_args.read_count(); in handle_printf()