Home
last modified time | relevance | path

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

/external/oss-fuzz/projects/spdlog/fuzz/
Dlog_fuzzer.cc37 const unsigned long int_arg = stream.ConsumeIntegral<unsigned long>(); in LLVMFuzzerTestOneInput() local
41 spdlog::info(format_string.c_str(), size_arg, int_arg, string_arg); in LLVMFuzzerTestOneInput()
42 spdlog::trace(format_string.c_str(), size_arg, int_arg, string_arg); in LLVMFuzzerTestOneInput()
43 spdlog::debug(format_string.c_str(), size_arg, int_arg, string_arg); in LLVMFuzzerTestOneInput()
44 spdlog::error(format_string.c_str(), size_arg, int_arg, string_arg); in LLVMFuzzerTestOneInput()
45 spdlog::warn(format_string.c_str(), size_arg, int_arg, string_arg); in LLVMFuzzerTestOneInput()
46 spdlog::critical(format_string.c_str(), size_arg, int_arg, string_arg); in LLVMFuzzerTestOneInput()
48 SPDLOG_INFO(format_string.c_str(), size_arg, int_arg, string_arg); in LLVMFuzzerTestOneInput()
49 SPDLOG_TRACE(format_string.c_str(), size_arg, int_arg, string_arg); in LLVMFuzzerTestOneInput()
50 SPDLOG_DEBUG(format_string.c_str(), size_arg, int_arg, string_arg); in LLVMFuzzerTestOneInput()
[all …]
Dformat_fuzzer.cc55 const unsigned long int_arg = stream.ConsumeIntegral<unsigned long>(); in LLVMFuzzerTestOneInput() local
67 spdlog::info(format_string.c_str(), size_arg, int_arg, string_arg); in LLVMFuzzerTestOneInput()
/external/libevent/test/
Dregress_finalize.c44 int *int_arg = arg; in timer_callback() local
45 *int_arg += 1; in timer_callback()
52 int *int_arg = arg; in simple_callback() local
53 *int_arg += 1; in simple_callback()
59 int *int_arg = arg; in event_finalize_callback_1() local
60 *int_arg += 100; in event_finalize_callback_1()
66 int *int_arg = arg; in callback_finalize_callback_1() local
67 *int_arg += 100; in callback_finalize_callback_1()
/external/python/cpython3/Modules/
Dfcntlmodule.c62 unsigned int int_arg = 0; in fcntl_fcntl_impl() local
98 &int_arg); in fcntl_fcntl_impl()
106 ret = fcntl(fd, code, (int)int_arg); in fcntl_fcntl_impl()
/external/pigweed/pw_tokenizer/py/
Ddetokenize_test.py354 int_arg = self.detok.detokenize(b'\xad\xba\0\0\xfe\xff\xff\xff\x0f')
355 self.assertTrue(int_arg.ok())
356 self.assertEqual(str(int_arg), 'A: 2147483647')