/external/syslinux/com32/lib/ |
atol.c | 2 #define NAME atol
|
atox.c | 4 * atoi(), atol(), atoll()
|
/external/ltp/testcases/kernel/fs/mongo/ |
summ.c | 20 n = atol(str);
|
reiser_fract_tree.c | 478 bytes_to_consume = atol(argv[1]); 479 max_file_size = atol(argv[3]); 480 median_file_size = atol(argv[2]); 489 stats = atol(argv[10]); 490 median_dir_branching = atol(argv[6]); 491 max_dir_branching = atol(argv[7]); 492 median_dir_nr_files = atol(argv[4]); 493 max_dir_nr_files = atol(argv[5]);
|
/external/toybox/toys/other/ |
usleep.c | 21 long delay = atol(*toys.optargs);
|
/external/compiler-rt/test/asan/TestCases/ |
atol_strict.c | 1 // Test strict_string_checks option in atol function 21 long r = atol(array); 28 long r = atol(array + 9); 37 long r = atol(array);
|
/external/e2fsprogs/ext2ed/ |
group_com.c | 31 entry_offset=atol (buffer); 47 entry_offset=atol (buffer); 66 group_num=atol (buffer); 92 copy_num=atol (buffer);
|
inodebitmap_com.c | 39 entry_num=atol (buffer); 58 entry_offset=atol (buffer); 74 entry_offset=atol (buffer); 90 num=atol (buffer); 116 num=atol (buffer);
|
blockbitmap_com.c | 55 entry_num=atol (buffer); 85 entry_offset=atol (buffer); 101 entry_offset=atol (buffer); 125 num=atol (buffer); 154 num=atol (buffer);
|
file_com.c | 76 block_offset*=atol (buffer); 104 offset*=atol (buffer); 127 offset=atol (buffer); 154 offset*=atol (buffer); 177 block_offset*=atol (buffer); 209 block_offset=atol (buffer);
|
/prebuilts/go/darwin-x86/misc/cgo/test/ |
basic.go | 81 func Atol(s string) int { 83 n := C.atol(p) 99 l := Atol("123") 101 t.Error("Atol 123: ", l)
|
/prebuilts/go/linux-x86/misc/cgo/test/ |
basic.go | 81 func Atol(s string) int { 83 n := C.atol(p) 99 l := Atol("123") 101 t.Error("Atol 123: ", l)
|
/bionic/libc/upstream-openbsd/lib/libc/stdlib/ |
atol.c | 1 /* $OpenBSD: atol.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ 34 atol(const char *str) function
|
/external/libmtp/examples/ |
newfolder.c | 46 newid = LIBMTP_Create_Folder(device, argv[1], atol(argv[2]), atol(argv[3]));
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/ |
int.h | 35 #define zzcr_attr(a,tok,t) *(a) = atol(t);
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/ |
int.h | 35 #define zzcr_attr(a,tok,t) *(a) = atol(t);
|
/external/autotest/client/tests/tracing_microbenchmark/src/ |
getuid_microbench.c | 37 iterations = atol(argv[1]);
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/ |
strop.so | |
/external/libvorbis/vq/ |
latticetune.c | 121 long code=atol(line); 122 long val=atol(pos+1);
|
/external/syslinux/com32/include/ |
stdlib.h | 24 __extern long atol(const char *);
|
/system/core/libion/ |
ion_test.c | 238 len = atol(optarg); 241 align = atol(optarg); 256 alloc_flags = atol(optarg); 259 heap_mask = atol(optarg);
|
/external/zlib/src/contrib/testzlib/ |
testzlib.c | 175 BlockSizeCompress=atol(argv[2]);
178 BlockSizeUncompress=atol(argv[3]);
181 cprLevel=(int)atol(argv[4]);
|
/system/core/logd/ |
LogReader.cpp | 63 tail = atol(cp + sizeof(_tail) - 1); 78 timeout = atol(cp + sizeof(_timeout) - 1) * NS_PER_SEC + 106 pid = atol(cp + sizeof(_pid) - 1);
|
/external/ipsec-tools/src/libipsec/ |
policy_parse.y | 169 p_priority_offset = -atol($3.buf); 190 p_priority_offset = atol($4.buf); 223 p_priority_offset = atol($5.buf); 245 p_priority_offset = atol($5.buf); 318 p_reqid = atol($1.buf); /* atol() is good. */
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_string.py | 86 self.assertEqual(string.atol(" 1 "), 1L)
87 self.assertRaises(ValueError, string.atol, " 1x ")
88 self.assertRaises(ValueError, string.atol, " x1 ")
|