HomeSort by relevance Sort by last modified time
    Searched defs:strtol (Results 1 - 9 of 9) sorted by null

  /external/compiler-rt/test/asan/TestCases/Linux/
interception_test.cc 11 extern "C" long strtol(const char *nptr, char **endptr, int base) { function
19 return (int)strtol(x, 0, 10);
  /external/compiler-rt/test/asan/TestCases/
interception_failure_test.cc 13 extern "C" long strtol(const char *nptr, char **endptr, int base) { function
21 return (int)strtol(x, 0, 10);
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
NumericInt.c 7 - atoi: (int)strtol(nptr, (char **)NULL, 10)
8 - atol: strtol(nptr, (char **)NULL, 10)
33 - (int)strtol(nptr, (char **)NULL, 10)
63 - strtol(nptr, (char **)NULL, 10)
129 /** The strtol, strtoll, strtoul, and strtoull functions convert the initial
175 @return The strtol, strtoll, strtoul, and strtoull functions return the
184 strtol(const char * __restrict nptr, char ** __restrict endptr, int base) function
265 See the description for strtol for more information.
339 See the description for strtol for more information.
429 See the description for strtol for more information.
    [all...]
  /toolchain/binutils/binutils-2.27/libiberty/
strtol.c 33 @deftypefn Supplemental {long int} strtol (const char *@var{string}, @
38 The @code{strtol} function converts the string in @var{string} to a
41 is 0, @code{strtol} will look for the prefixes @code{0} and @code{0x}
90 strtol(const char *nptr, char **endptr, register int base) function
  /bionic/libc/bionic/
strtol.cpp 166 return strtol(s, nullptr, 10);
170 return strtol(s, nullptr, 10);
181 long strtol(const char* s, char** end, int base) { function
  /external/valgrind/coregrind/m_demangle/
vg_libciface.h 67 /* strtol supports base 16 or else assumes it is base 10 */
68 #define strtol(s,r,b) ((b) == 16 ? \ macro
  /external/valgrind/coregrind/m_gdbserver/
server.h 157 /* strtol and strtoul supports base 16 or else assumes it is base 10 */
158 #define strtol(s,r,b) ((b) == 16 ? \ macro
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
CrtWrapper.c 207 long strtol (const char *nptr, char **endptr, int base) function
210 // Null strtol() function implementation to satisfy the linker, since there is
  /external/compiler-rt/lib/asan/
asan_win_dll_thunk.cc 413 INTERCEPT_LIBRARY_FUNCTION(strtol); variable

Completed in 1122 milliseconds