HomeSort by relevance Sort by last modified time
    Searched full:strtoll (Results 1 - 25 of 636) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/toybox/toys/example/
test_human_readable.c 21 human_readable(toybuf, strtoll(*toys.optargs, &c, 0), toys.optflags);
  /toolchain/binutils/binutils-2.25/libiberty/testsuite/
test-strtol.c 61 STRTOLL,
97 { STRTOLL, "0x123", 0, 0x123LL, 0 },
98 { STRTOLL, "123", 0, 123LL, 0 },
99 { STRTOLL, "0123", 0, 0123LL, 0 },
100 { STRTOLL, "0x7FFFFFFFFFFFFFFF", 0, 0x7fffffffffffffffLL, 0 },
101 { STRTOLL, "-0x8000000000000000", 0, -0x8000000000000000LL, 0 },
107 { STRTOLL, "0x8000000000000000", 0, 0x7fffffffffffffffLL, ERANGE },
108 { STRTOLL, "-0x8000000000000001", 0, -0x8000000000000000LL, ERANGE },
142 case STRTOLL:
143 res = strtoll (test_data[i].nptr, 0, test_data[i].base)
    [all...]
  /external/compiler-rt/test/asan/TestCases/
strtoll_strict.c 1 // Test strict_string_checks option in strtoll function
25 // FIXME: Enable strtoll interceptor.
35 long long r = strtoll(array, &endptr, 3);
43 long long r = strtoll(array, &endptr, 35);
52 long long r = strtoll(array + 1, NULL, -1);
59 long long r = strtoll(array + 3, NULL, 1);
68 long long r = strtoll(array, NULL, 0);
76 long long r = strtoll(array, &endptr, 0);
84 long long r = strtoll(array + 2, NULL, 0);
interception_failure_test.cc 8 // On Windows, defining strtoll results in linker errors.
  /external/llvm/test/Transforms/InstCombine/
strto-1.ll 19 declare i64 @strtoll(i8* %s, i8** %endptr, i32 %base)
20 ; CHECK: declare i64 @strtoll(i8* readonly, i8** nocapture, i32)
58 call i64 @strtoll(i8* %x, i8** null, i32 10)
59 ; CHECK-NEXT: call i64 @strtoll(i8* nocapture %x, i8** null, i32 10)
  /external/clang/test/CodeGen/
libcalls-fno-builtin.c 27 long long int strtoll(const char *nptr, char **endptr, int base);
115 long int t22(char **x) { return strtoll("1234", x, 10); }
117 // CHECK: strtoll
  /external/curl/lib/
strtoofft.h 36 * the conversion function to use is strtoll() if it is available, otherwise,
45 # define curlx_strtoofft strtoll
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/
cstdlib 191 #undef strtoll
223 (strtoll)(const char * __restrict, char ** __restrict, int) throw ();
229 using ::strtoll;
251 using ::__gnu_cxx::strtoll;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/
cstdlib 191 #undef strtoll
223 (strtoll)(const char * __restrict, char ** __restrict, int) throw ();
229 using ::strtoll;
251 using ::__gnu_cxx::strtoll;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
cstdlib 191 #undef strtoll
223 (strtoll)(const char * __restrict, char ** __restrict, int) throw ();
229 using ::strtoll;
251 using ::__gnu_cxx::strtoll;
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/
cstdlib 191 #undef strtoll
223 (strtoll)(const char * __restrict, char ** __restrict, int) throw ();
229 using ::strtoll;
251 using ::__gnu_cxx::strtoll;
  /toolchain/binutils/binutils-2.25/libiberty/
strtoll.c 33 @deftypefn Supplemental {long long int} strtoll (const char *@var{string}, @
38 The @code{strtoll} function converts the string in @var{string} to a
41 is 0, @code{strtoll} will look for the prefixes @code{0} and @code{0x}
98 strtoll(const char *nptr, char **endptr, register int base) function
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
atoll.c 37 return(strtoll(str, (char **)NULL, 10));
strtoll.c 1 /* $OpenBSD: strtoll.c,v 1.8 2014/09/13 20:10:12 schwarze Exp $ */
45 strtoll(const char *nptr, char **endptr, int base) function
155 __strong_alias(strtoq, strtoll);
  /external/dbus/tools/
Makefile.am 71 EXTRA_DIST = run-with-tmp-session-bus.sh strtoll.c strtoull.c
  /ndk/sources/android/support/include/
stdlib.h 43 long long strtoll(const char*, char**, int);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/tr1/
cstdlib 54 using std::strtoll;
stdlib.h 39 using std::tr1::strtoll;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/
cstdlib 54 using std::strtoll;
stdlib.h 39 using std::tr1::strtoll;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/
cstdlib 54 using std::strtoll;
stdlib.h 39 using std::tr1::strtoll;
  /prebuilts/ndk/current/sources/android/support/include/
stdlib.h 43 long long strtoll(const char*, char**, int);
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
cstdlib 54 using std::strtoll;
stdlib.h 39 using std::tr1::strtoll;

Completed in 569 milliseconds

1 2 3 4 5 6 7 8 91011>>