HomeSort by relevance Sort by last modified time
    Searched defs:atoi (Results 1 - 25 of 35) sorted by null

1 2

  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
atoi.c 1 /* $OpenBSD: atoi.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */
34 atoi(const char *str) function
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
NumericInt.c 4 The atoi, atol, and atoll functions convert the initial portion of the string
7 - atoi: (int)strtol(nptr, (char **)NULL, 10)
30 /** The atoi function converts the initial portion of the string pointed to by
35 @return The atoi function returns the converted value.
38 atoi(const char *nptr) function
  /external/icu/icu4c/source/tools/gensprep/
filterRFC3454.pl 196 $start = atoi($startStr);
197 $end = atoi($endStr);
210 sub atoi { subroutine
  /external/valgrind/coregrind/m_demangle/
vg_libciface.h 48 #define atoi(_str) VG_(strtoll10)((_str), NULL) macro
  /prebuilts/go/darwin-x86/src/runtime/
string.go 328 // atoi parses an int from a string s.
331 func atoi(s string) (int, bool) { func
376 // atoi32 is like atoi but for integers
379 if n, ok := atoi(s); n == int(int32(n)) {
  /prebuilts/go/darwin-x86/test/ken/
rob2.go 237 func atoi() int { // BUG: uses tokenbuf; should take argument) func
262 slist = atom(atoi())
  /prebuilts/go/linux-x86/src/runtime/
string.go 328 // atoi parses an int from a string s.
331 func atoi(s string) (int, bool) { func
376 // atoi32 is like atoi but for integers
379 if n, ok := atoi(s); n == int(int32(n)) {
  /prebuilts/go/linux-x86/test/ken/
rob2.go 237 func atoi() int { // BUG: uses tokenbuf; should take argument) func
262 slist = atom(atoi())
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
locale.py 37 "str", "atof", "atoi", "format", "format_string", "currency",
318 def atoi(str): function
326 print s1, "is", atoi(s1)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
locale.py 29 "str", "atof", "atoi", "format", "format_string", "currency",
312 def atoi(str): function
320 print s1, "is", atoi(s1)
    [all...]
stringold.py 210 def atoi(*args): function
211 """atoi(s [,base]) -> int
  /external/compiler-rt/lib/asan/
asan_win_dll_thunk.cc 380 INTERCEPT_LIBRARY_FUNCTION(atoi); variable
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
stdlib.h 148 extern int atoi (__const char *__nptr)
284 __NTH (atoi (__const char *__nptr)) function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
stdlib.h 148 extern int atoi (__const char *__nptr)
284 __NTH (atoi (__const char *__nptr)) function
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
locale.py 37 "str", "atof", "atoi", "format", "format_string", "currency",
318 def atoi(str): function
326 print s1, "is", atoi(s1)
    [all...]
stringold.py 210 def atoi(*args): function
211 """atoi(s [,base]) -> int
  /prebuilts/gdb/linux-x86/lib/python2.7/
locale.py 37 "str", "atof", "atoi", "format", "format_string", "currency",
318 def atoi(str): function
326 print s1, "is", atoi(s1)
    [all...]
stringold.py 210 def atoi(*args): function
211 """atoi(s [,base]) -> int
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/asm/
parse.go 888 return p.atoi(tok.String())
928 func (p *Parser) atoi(str string) uint64 { func
  /prebuilts/go/darwin-x86/src/syscall/
syscall_plan9.go 60 func atoi(b []byte) (n uint) { func
110 return atoi(b[m : n-1]), nil
222 w.Pid = int(atoi(f[0]))
223 w.Time[0] = uint32(atoi(f[1]))
224 w.Time[1] = uint32(atoi(f[2]))
225 w.Time[2] = uint32(atoi(f[3]))
  /prebuilts/go/linux-x86/src/cmd/asm/internal/asm/
parse.go 888 return p.atoi(tok.String())
928 func (p *Parser) atoi(str string) uint64 { func
  /prebuilts/go/linux-x86/src/syscall/
syscall_plan9.go 60 func atoi(b []byte) (n uint) { func
110 return atoi(b[m : n-1]), nil
222 w.Pid = int(atoi(f[0]))
223 w.Time[0] = uint32(atoi(f[1]))
224 w.Time[1] = uint32(atoi(f[2]))
225 w.Time[2] = uint32(atoi(f[3]))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
locale.py 37 "str", "atof", "atoi", "format", "format_string", "currency",
318 def atoi(str): function
326 print s1, "is", atoi(s1)
    [all...]
stringold.py 210 def atoi(*args): function
211 """atoi(s [,base]) -> int
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
locale.py 37 "str", "atof", "atoi", "format", "format_string", "currency",
318 def atoi(str): function
326 print s1, "is", atoi(s1)
    [all...]

Completed in 825 milliseconds

1 2