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

1 2

  /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
  /bionic/libc/bionic/
strtol.cpp 165 int atoi(const char* s) { function
  /external/python/cpython3/Lib/
locale.py 29 "str", "atof", "atoi", "format", "format_string", "currency",
323 def atoi(string): function
331 print(s1, "is", atoi(s1))
    [all...]
  /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 336 // atoi parses an int from a string s.
339 func atoi(s string) (int, bool) { func
384 // atoi32 is like atoi but for integers
387 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 336 // atoi parses an int from a string s.
339 func atoi(s string) (int, bool) { func
384 // atoi32 is like atoi but for integers
387 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
  /external/python/cpython2/Lib/
locale.py 39 "str", "atof", "atoi", "format", "format_string", "currency",
320 def atoi(str): function
328 print s1, "is", atoi(s1)
    [all...]
stringold.py 210 def atoi(*args): function
211 """atoi(s [,base]) -> int
  /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 1045 return p.atoi(tok.String())
1085 func (p *Parser) atoi(str string) uint64 { func
  /prebuilts/go/darwin-x86/src/syscall/
syscall_plan9.go 62 func atoi(b []byte) (n uint) { func
107 return atoi(b[m : n-1]), nil
219 w.Pid = int(atoi(f[0]))
220 w.Time[0] = uint32(atoi(f[1]))
221 w.Time[1] = uint32(atoi(f[2]))
222 w.Time[2] = uint32(atoi(f[3]))
  /prebuilts/go/linux-x86/src/cmd/asm/internal/asm/
parse.go 1045 return p.atoi(tok.String())
1085 func (p *Parser) atoi(str string) uint64 { func
  /prebuilts/go/linux-x86/src/syscall/
syscall_plan9.go 62 func atoi(b []byte) (n uint) { func
107 return atoi(b[m : n-1]), nil
219 w.Pid = int(atoi(f[0]))
220 w.Time[0] = uint32(atoi(f[1]))
221 w.Time[1] = uint32(atoi(f[2]))
222 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...]

Completed in 1086 milliseconds

1 2