Home
last modified time | relevance | path

Searched refs:atoll (Results 1 – 25 of 2909) sorted by relevance

12345678910>>...117

/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libc/test/src/stdlib/
H A Datoll_test.cpp17 ASSERT_EQ(__llvm_libc::atoll(zero), 0ll); in TEST()
20 ASSERT_EQ(__llvm_libc::atoll(ten), 10ll); in TEST()
29 ASSERT_EQ(__llvm_libc::atoll(spaces_before), 12345ll); in TEST()
32 ASSERT_EQ(__llvm_libc::atoll(tabs_before), 67890ll); in TEST()
35 ASSERT_EQ(__llvm_libc::atoll(letters_after), 123ll); in TEST()
41 ASSERT_EQ(__llvm_libc::atoll(all_together), 110ll); in TEST()
52 ASSERT_EQ(__llvm_libc::atoll(hexadecimal), 0ll); in TEST()
55 ASSERT_EQ(__llvm_libc::atoll(octal), 10ll); in TEST()
58 ASSERT_EQ(__llvm_libc::atoll(decimal_point), 5ll); in TEST()
63 ASSERT_EQ(__llvm_libc::atoll(ten_as_word), 0ll); in TEST()
[all …]
/dports/devel/plan9port/plan9port-1f098efb7370a0b28306d10681e21883fb1c1507/src/cmd/auxstats/
H A DLinux.c87 tot = atoll(tok[1]); in xmeminfo()
88 used = atoll(tok[2]); in xmeminfo()
96 mfree += atoll(tok[1]); in xmeminfo()
98 mfree += atoll(tok[1]); in xmeminfo()
107 sfree = atoll(tok[1]); in xmeminfo()
145 inb = atoll(tok[1]); in xnet()
146 oub = atoll(tok[9]); in xnet()
147 in = atoll(tok[2]); in xnet()
148 ou = atoll(tok[10]); in xnet()
151 e = atoll(tok[3])+atoll(tok[11]); in xnet()
[all …]
/dports/devel/emscripten/emscripten-2.0.3/tests/core/
H A Dtest_atoX.c35 printf("%lld*", atoll("")); in main()
36 printf("%lld*", atoll("a")); in main()
37 printf("%lld*", atoll(" b")); in main()
38 printf("%lld*", atoll(" c ")); in main()
39 printf("%lld*", atoll("6")); in main()
40 printf("%lld*", atoll(" 5")); in main()
41 printf("%lld*", atoll("4 ")); in main()
42 printf("%lld*", atoll("3 6")); in main()
43 printf("%lld*", atoll(" 3 7")); in main()
44 printf("%lld*", atoll("9 d")); in main()
[all …]
/dports/sysutils/fusefs-bindfs/bindfs-1.14.8/tests/
H A Dutimens_nofollow.c26 times[0].tv_sec = (time_t)atoll(argv[2]); in main()
27 times[0].tv_nsec = atoll(argv[3]); in main()
28 times[1].tv_sec = (time_t)atoll(argv[4]); in main()
29 times[1].tv_nsec = atoll(argv[5]); in main()
36 times[0].tv_sec = (time_t)atoll(argv[2]); in main()
37 times[0].tv_usec = (suseconds_t)atoll(argv[3]) / 1000; in main()
38 times[1].tv_sec = (time_t)atoll(argv[4]); in main()
39 times[1].tv_usec = (suseconds_t)atoll(argv[5]) / 1000; in main()
/dports/net-mgmt/collectd5/collectd-5.12.0/src/
H A Dnginx.c237 submit("nginx_connections", "active", atoll(fields[2])); in nginx_read()
238 } else if ((atoll(fields[0]) != 0) && (atoll(fields[1]) != 0) && in nginx_read()
239 (atoll(fields[2]) != 0)) { in nginx_read()
240 submit("connections", "accepted", atoll(fields[0])); in nginx_read()
244 submit("connections", "handled", atoll(fields[1])); in nginx_read()
245 submit("connections", "failed", (atoll(fields[0]) - atoll(fields[1]))); in nginx_read()
246 submit("nginx_requests", NULL, atoll(fields[2])); in nginx_read()
252 submit("nginx_connections", "reading", atoll(fields[1])); in nginx_read()
253 submit("nginx_connections", "writing", atoll(fields[3])); in nginx_read()
254 submit("nginx_connections", "waiting", atoll(fields[5])); in nginx_read()
H A Dopenvpn.c212 tun_tx = atoll(fields[1]); in single_read()
215 tun_rx = atoll(fields[1]); in single_read()
217 link_rx = atoll(fields[1]); in single_read()
219 link_tx = atoll(fields[1]); in single_read()
221 pre_compress = atoll(fields[1]); in single_read()
223 post_compress = atoll(fields[1]); in single_read()
225 pre_decompress = atoll(fields[1]); in single_read()
227 post_decompress = atoll(fields[1]); in single_read()
285 atoll(fields[2]), /* "Bytes Received" */ in multi1_read()
286 atoll(fields[3])); /* "Bytes Sent" */ in multi1_read()
[all …]
H A Dmemcached.c526 bytes_used = atoll(fields[2]); in memcached_read()
528 bytes_total = atoll(fields[2]); in memcached_read()
544 submit_derive("connections", "opened", atoll(fields[2]), st); in memcached_read()
554 cmd_get = atoll(fields[2]); in memcached_read()
561 incr_misses = atoll(fields[2]); in memcached_read()
564 incr_hits = atoll(fields[2]); in memcached_read()
567 decr_misses = atoll(fields[2]); in memcached_read()
570 decr_hits = atoll(fields[2]); in memcached_read()
581 get_hits = atoll(fields[2]); in memcached_read()
597 octets_rx = atoll(fields[2]); in memcached_read()
[all …]
/dports/benchmarks/stress-ng/stress-ng-0.13.09/
H A Dcore-vmstat.c298 vmstat->user_time += (uint64_t)atoll(ptr); in stress_read_vmstat()
303 vmstat->user_time += (uint64_t)atoll(ptr); in stress_read_vmstat()
313 vmstat->idle_time += (uint64_t)atoll(ptr); in stress_read_vmstat()
352 vmstat->interrupt = (uint64_t)atoll(ptr); in stress_read_vmstat()
376 vmstat->swap_in = (uint64_t)atoll(ptr); in stress_read_vmstat()
381 vmstat->swap_out = (uint64_t)atoll(ptr); in stress_read_vmstat()
415 vmstat->swap_used = (uint64_t)atoll(ptr); in stress_read_vmstat()
429 vmstat->block_in = (uint64_t)atoll(ptr); in stress_read_vmstat()
434 vmstat->block_out = (uint64_t)atoll(ptr); in stress_read_vmstat()
439 vmstat->swap_in = (uint64_t)atoll(ptr); in stress_read_vmstat()
[all …]
/dports/security/pkcs11-tools/pkcs11-tools-2.5.0/.gnulib/modules/
H A Datoll2 atoll() function: convert decimal string to 'long long'.
5 lib/atoll.c
6 m4/atoll.m4
14 AC_LIBOBJ([atoll])
17 gl_STDLIB_MODULE_INDICATOR([atoll])
/dports/devel/gnulib/gnulib-20140202-stable/modules/
H A Datoll2 atoll() function: convert decimal string string to 'long long'.
5 lib/atoll.c
6 m4/atoll.m4
15 AC_LIBOBJ([atoll])
18 gl_STDLIB_MODULE_INDICATOR([atoll])
/dports/security/pkcs11-tools/pkcs11-tools-2.5.0/.gnulib/doc/posix-functions/
H A Datoll.texi1 @node atoll
2 @section @code{atoll}
3 @findex atoll
5 POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9699919799/functions/atoll.html}
7 Gnulib module: atoll
/dports/devel/gnulib/gnulib-20140202-stable/doc/posix-functions/
H A Datoll.texi1 @node atoll
2 @section @code{atoll}
3 @findex atoll
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atoll.html}
7 Gnulib module: atoll
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/abi/
H A Dc-stack-returning-int64.rs16 pub fn atoll(x: *const c_char) -> c_longlong; in atoll() function
25 fn atoll(s: String) -> i64 { in atoll() function
27 unsafe { mlibc::atoll(c.as_ptr()) as i64 } in atoll()
33 (atoll("11111111111111111".to_string()) * 10), in main()
34 atoll("111111111111111110".to_string()) in main()
/dports/lang/rust/rustc-1.58.1-src/src/test/incremental/
H A Dforeign.rs18 pub fn atoll(x: *const c_char) -> c_longlong; in atoll() function
27 fn atoll(s: String) -> i64 { in atoll() function
29 unsafe { mlibc::atoll(c.as_ptr()) as i64 } in atoll()
35 (atoll("11111111111111111".to_string()) * 10), in main()
36 atoll("111111111111111110".to_string()) in main()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/wiredtiger/test/utility/
H A Dparse_opts.c52 opts->n_append_threads = (uint64_t)atoll(__wt_optarg); in testutil_parse_opts()
58 opts->nrecords = (uint64_t)atoll(__wt_optarg); in testutil_parse_opts()
61 opts->nops = (uint64_t)atoll(__wt_optarg); in testutil_parse_opts()
67 opts->n_read_threads = (uint64_t)atoll(__wt_optarg); in testutil_parse_opts()
70 opts->nthreads = (uint64_t)atoll(__wt_optarg); in testutil_parse_opts()
92 opts->n_write_threads = (uint64_t)atoll(__wt_optarg); in testutil_parse_opts()
/dports/devel/libslang2/slang-2.3.2/src/test/
H A Dlonglong.sl64 % test of atoll
66 #ifnexists atoll
67 failed ("atoll() is not defined\n");
69 X = atoll ("1");
71 failed ("atoll(1) did not return a LLong_Type");
73 failed ("atoll(1) did not return 1LL");
/dports/devel/tinygo/tinygo-0.14.1/lib/compiler-rt/test/asan/TestCases/
H A Datoll_strict.c24 long long r = atoll(array); in test1()
31 long long r = atoll(array + 9); in test2()
40 long long r = atoll(array); in test3()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/compiler-rt/test/asan/TestCases/
H A Datoll_strict.c24 long long r = atoll(array); in test1()
31 long long r = atoll(array + 9); in test2()
40 long long r = atoll(array); in test3()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/compiler-rt/test/asan/TestCases/
H A Datoll_strict.c24 long long r = atoll(array); in test1()
31 long long r = atoll(array + 9); in test2()
40 long long r = atoll(array); in test3()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/compiler-rt/test/asan/TestCases/
H A Datoll_strict.c24 long long r = atoll(array); in test1()
31 long long r = atoll(array + 9); in test2()
40 long long r = atoll(array); in test3()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/compiler-rt/test/asan/TestCases/
H A Datoll_strict.c24 long long r = atoll(array); in test1()
31 long long r = atoll(array + 9); in test2()
40 long long r = atoll(array); in test3()
/dports/devel/llvm12/llvm-project-12.0.1.src/compiler-rt/test/asan/TestCases/
H A Datoll_strict.c24 long long r = atoll(array); in test1()
31 long long r = atoll(array + 9); in test2()
40 long long r = atoll(array); in test3()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/compiler-rt/test/asan/TestCases/
H A Datoll_strict.c24 long long r = atoll(array); in test1()
31 long long r = atoll(array + 9); in test2()
40 long long r = atoll(array); in test3()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/compiler-rt/test/asan/TestCases/
H A Datoll_strict.c24 long long r = atoll(array); in test1()
31 long long r = atoll(array + 9); in test2()
40 long long r = atoll(array); in test3()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/compiler-rt/test/asan/TestCases/
H A Datoll_strict.c24 long long r = atoll(array); in test1()
31 long long r = atoll(array + 9); in test2()
40 long long r = atoll(array); in test3()

12345678910>>...117