Searched refs:atoll (Results 1 - 25 of 31) sorted by relevance

12

/external/webrtc/src/system_wrappers/source/
H A Dcpu_linux.cc142 long long luser = atoll(sUser);
143 long long lnice = atoll(sNice);
144 long long lsystem = atoll(sSystem);
145 long long lidle = atoll (sIdle);
160 luser = atoll(sUser);
161 lnice = atoll(sNice);
162 lsystem = atoll(sSystem);
163 lidle = atoll (sIdle);
/external/openfst/src/bin/
H A Dfstreplace.cc49 Label root = atoll(argv[2]);
55 Label lab = atoll(argv[i + 1]);
/external/openfst/src/extensions/pdt/
H A Dpdtreplace.cc55 Label root = atoll(argv[2]);
61 Label lab = atoll(argv[i + 1]);
/external/clang/test/Analysis/
H A Dtaint-tester.c176 long long atoll(const char *nptr);
187 long long ll = atoll(s); // expected-warning + {{tainted}}
/external/f2fs-tools/mkfs/
H A Df2fs_format_main.c105 config.total_sectors = atoll(argv[optind+1]);
/external/qemu/distrib/libsparse/src/
H A Dsimg2simg.c59 max_size = atoll(argv[3]);
/external/chromium_org/third_party/angle/tests/gles_conformance_tests/
H A Dgles_conformance_tests.cpp101 size_t failureCount = atoll(log.c_str() + offset);
/external/bison/darwin-lib/
H A Dstdlib.h471 _GL_FUNCDECL_SYS (atoll, long long, (const char *string)
475 _GL_CXXALIAS_SYS (atoll, long long, (const char *string));
476 _GL_CXXALIASWARN (atoll);
478 # undef atoll macro
480 _GL_WARN_ON_USE (atoll, "atoll is unportable - "
481 "use gnulib module atoll for portability");
/external/bison/linux-lib/
H A Dstdlib.h471 _GL_FUNCDECL_SYS (atoll, long long, (const char *string)
475 _GL_CXXALIAS_SYS (atoll, long long, (const char *string));
476 _GL_CXXALIASWARN (atoll);
478 # undef atoll macro
480 _GL_WARN_ON_USE (atoll, "atoll is unportable - "
481 "use gnulib module atoll for portability");
/external/bison/lib/
H A Dstdlib.in.h149 _GL_FUNCDECL_SYS (atoll, long long, (const char *string)
153 _GL_CXXALIAS_SYS (atoll, long long, (const char *string));
154 _GL_CXXALIASWARN (atoll);
156 # undef atoll
158 _GL_WARN_ON_USE (atoll, "atoll is unportable - "
159 "use gnulib module atoll for portability");
/external/libcxx/include/support/win32/
H A Dsupport.h46 #define atoll _atoi64 macro
/external/libcxx/test/depr/depr.c.headers/
H A Dstdlib_h.pass.cpp45 static_assert((std::is_same<decltype(atoll("")), long long>::value), "");
/external/chromium_org/third_party/cython/src/Cython/Includes/libc/
H A Dstdlib.pxd12 long long atoll (const char *string)
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Dport.h452 inline long long atoll(const char *nptr) { function
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Dport.h447 inline long long atoll(const char *nptr) { function
/external/libcxx/test/language.support/support.runtime/
H A Dcstdlib.pass.cpp45 static_assert((std::is_same<decltype(std::atoll("")), long long>::value), "");
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dstring.c77 length = atoll(str) * unit;
/external/valgrind/main/gdbserver_tests/
H A Dsleepers.c144 burn = atoll(argv[3]);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ditrbnf.cpp1007 logln("Testing atoll");
1008 // atoll
1015 LLAssert(llong::atoll(empty) == llong(0, 0));
1016 LLAssert(llong::atoll(zero) == llong(0, 0));
1017 LLAssert(llong::atoll(neg_one) == llong(0xffffffff, 0xffffffff));
1018 LLAssert(llong::atoll(neg_12345) == -llong(0, 12345));
1019 LLAssert(llong::atoll(big1, 16) == llong(0x12345678, 0x9abcdef0));
1020 LLAssert(llong::atoll(big2, 16) == llong(0xffffffff, 0xffffffff));
/external/icu/icu4c/source/test/intltest/
H A Ditrbnf.cpp1007 logln("Testing atoll");
1008 // atoll
1015 LLAssert(llong::atoll(empty) == llong(0, 0));
1016 LLAssert(llong::atoll(zero) == llong(0, 0));
1017 LLAssert(llong::atoll(neg_one) == llong(0xffffffff, 0xffffffff));
1018 LLAssert(llong::atoll(neg_12345) == -llong(0, 12345));
1019 LLAssert(llong::atoll(big1, 16) == llong(0x12345678, 0x9abcdef0));
1020 LLAssert(llong::atoll(big2, 16) == llong(0xffffffff, 0xffffffff));
/external/blktrace/btreplay/
H A Dbtrecord.c425 max_bunch_tm = (__u64)atoll(optarg);
435 max_pkts_per_bunch = (__u64)atoll(optarg);
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h151 /// long long atoll(const char *nptr);
152 atoll, enumerator in enum:llvm::LibFunc::Func
/external/compiler-rt/lib/asan/
H A Dasan_interceptors.cc669 INTERCEPTOR(long long, atoll, const char *nptr) { // NOLINT
672 return REAL(atoll)(nptr);
774 ASAN_INTERCEPT_FUNC(atoll);
/external/valgrind/main/VEX/switchback/
H A Dswitchback.c756 stopAfter = (ULong)atoll(argv[1]);
/external/compiler-rt/lib/asan/tests/
H A Dasan_str_test.cc508 Ident(atoll(nptr));

Completed in 1350 milliseconds

12