/external/compiler-rt/test/asan/TestCases/ |
D | atoll_strict.c | 24 long long r = atoll(array); in test1() 31 long long r = atoll(array + 9); in test2() 40 long long r = atoll(array); in test3()
|
/external/clang/test/Analysis/ |
D | taint-tester.c | 176 long long atoll(const char *nptr); 187 long long ll = atoll(s); // expected-warning + {{tainted}} in atoiTest()
|
/external/bison/lib/ |
D | stdlib.in.h | 149 _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 - "
|
/external/autotest/client/tests/netpipe/ |
D | makefile.patch | 23 $(SRC)/atoll.c -o NPatoll \
|
/external/bison/darwin-lib/ |
D | stdlib.h | 471 _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 480 _GL_WARN_ON_USE (atoll, "atoll is unportable - "
|
/external/bison/linux-lib/ |
D | stdlib.h | 471 _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 480 _GL_WARN_ON_USE (atoll, "atoll is unportable - "
|
/external/f2fs-tools/mkfs/ |
D | f2fs_format_main.c | 105 config.total_sectors = atoll(argv[optind+1]); in f2fs_parse_options()
|
/external/compiler-rt/lib/asan/ |
D | asan_interceptors.cc | 690 INTERCEPTOR(long long, atoll, const char *nptr) { // NOLINT in INTERCEPTOR() argument 692 ASAN_INTERCEPTOR_ENTER(ctx, atoll); in INTERCEPTOR() 695 return REAL(atoll)(nptr); in INTERCEPTOR() 770 ASAN_INTERCEPT_FUNC(atoll); in InitializeAsanInterceptors()
|
/external/libcxx/include/ |
D | cstdlib | 38 long long atoll(const char* nptr); // C99 107 using ::atoll;
|
/external/libcxx/include/support/win32/ |
D | support.h | 49 #define atoll _atoi64 macro
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | stdlib_h.pass.cpp | 45 static_assert((std::is_same<decltype(atoll("")), long long>::value), ""); in main()
|
/external/toybox/toys/posix/ |
D | ps.c | 620 if ((s = strafter(buf, "\nVmLck:"))) slot[SLOT_vmlck] = atoll(s); in get_ps() 621 if ((s = strafter(buf, "\nVmSwap:"))) slot[SLOT_swap] = atoll(s); in get_ps() 630 if ((s = strafter(buf, "rchar:"))) slot[SLOT_rchar] = atoll(s); in get_ps() 631 if ((s = strafter(buf, "wchar:"))) slot[SLOT_wchar] = atoll(s); in get_ps() 632 if ((s = strafter(buf, "read_bytes:"))) slot[SLOT_rbytes] = atoll(s); in get_ps() 633 if ((s = strafter(buf, "write_bytes:"))) slot[SLOT_wbytes] = atoll(s); in get_ps()
|
/external/valgrind/gdbserver_tests/ |
D | sleepers.c | 149 burn = atoll(argv[3]); in main()
|
/external/blktrace/btreplay/ |
D | btrecord.c | 425 max_bunch_tm = (__u64)atoll(optarg); in handle_args() 435 max_pkts_per_bunch = (__u64)atoll(optarg); in handle_args()
|
/external/icu/icu4c/source/test/intltest/ |
D | itrbnf.cpp | 1084 LLAssert(llong::atoll(empty) == llong(0, 0)); 1085 LLAssert(llong::atoll(zero) == llong(0, 0)); 1086 LLAssert(llong::atoll(neg_one) == llong(0xffffffff, 0xffffffff)); 1087 LLAssert(llong::atoll(neg_12345) == -llong(0, 12345)); 1088 LLAssert(llong::atoll(big1, 16) == llong(0x12345678, 0x9abcdef0)); 1089 LLAssert(llong::atoll(big2, 16) == llong(0xffffffff, 0xffffffff));
|
/external/libdrm/tests/proptest/ |
D | proptest.c | 248 value = atoll(argv[3]); in setProperty()
|
/external/bison/m4/ |
D | stdlib_h.m4 | 22 ]], [_Exit atoll canonicalize_file_name getloadavg getsubopt grantpt
|
/external/libcxx/test/std/language.support/support.runtime/ |
D | cstdlib.pass.cpp | 57 static_assert((std::is_same<decltype(std::atoll("")), long long>::value), ""); in main()
|
/external/valgrind/VEX/switchback/ |
D | switchback.c | 756 stopAfter = (ULong)atoll(argv[1]); in main()
|
/external/llvm/include/llvm/Analysis/ |
D | TargetLibraryInfo.def | 318 /// long long atoll(const char *nptr); 319 TLI_DEFINE_ENUM_INTERNAL(atoll) 320 TLI_DEFINE_STRING_INTERNAL("atoll")
|
/external/compiler-rt/lib/asan/tests/ |
D | asan_str_test.cc | 522 Ident(atoll(nptr)); in CallAtoll()
|
/external/wpa_supplicant_8/hostapd/ |
D | hlr_auc_gw.c | 212 imsi = atoll(imsi_txt); in db_get_milenage()
|
/external/llvm/lib/Analysis/ |
D | TargetLibraryInfo.cpp | 279 TLI.setUnavailable(LibFunc::atoll); in initialize()
|
/external/elfutils/libelf/ |
D | elf_begin.c | 925 elf_ar_hdr->FIELD = (__typeof (elf_ar_hdr->FIELD)) atoll (string); \ in __libelf_next_arhdr_wrlock()
|
/external/llvm/lib/Transforms/IPO/ |
D | FunctionAttrs.cpp | 1335 case LibFunc::atoll: in inferPrototypeAttributes()
|