HomeSort by relevance Sort by last modified time
    Searched refs:atoll (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/syslinux/com32/lib/
atoll.c 2 #define NAME atoll
  /external/compiler-rt/test/asan/TestCases/
atoll_strict.c 1 // Test strict_string_checks option in atoll function
24 long long r = atoll(array);
31 long long r = atoll(array + 9);
40 long long r = atoll(array);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/
stdlib.h 38 using std::tr1::atoll;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/
stdlib.h 38 using std::tr1::atoll;
  /external/gflags/src/
windows_port.h 126 #define atoll _atoi64 macro
  /external/clang/test/Analysis/
taint-tester.c 176 long long atoll(const char *nptr);
187 long long ll = atoll(s); // expected-warning + {{tainted}}
  /external/linux-kselftest/tools/testing/selftests/vm/
compaction_test.c 39 *memfree = atoll(buffer);
49 *hugepagesize = atoll(buffer);
transhuge-stress.c 78 len = atoll(argv[1]) << 20;
  /prebuilts/ndk/r16/sources/cxx-stl/system/include/
cstdlib 66 using ::atoll;
  /external/syslinux/com32/include/
stdlib.h 25 __extern long long atoll(const char *);
  /system/core/libsparse/
simg2simg.c 59 max_size = atoll(argv[3]);
  /device/linaro/bootloader/edk2/StdLib/Include/
stdlib.h 84 long long atoll (const char *nptr);
385 /** The atoll function converts the initial portion of the string pointed to by
388 - atoll: strtoll(nptr, (char **)NULL, 10)
392 @return The atoll function returns the converted value.
395 atoll(const char *nptr);
    [all...]
  /external/e2fsprogs/contrib/android/
base_fs.c 72 range_start = atoll(block);
74 range_end = block ? atoll(block) : range_start;
  /external/f2fs-tools/mkfs/
f2fs_format_main.c 159 c.device_size = atoll(optarg);
218 c.wanted_total_sectors = atoll(argv[optind+1]);
  /external/ltp/testcases/kernel/mem/mmapstress/
mmapstress07.c 122 holesize = atoll(argv[2]);
136 sparseoff = atoll(argv[4]);
  /system/extras/puncture_fs/
puncture_fs.c 219 hole_size = atoll(optarg);
223 total_hole_size = atoll(optarg);
  /bionic/libc/bionic/
strtol.cpp 173 long long atoll(const char* s) { function
  /bionic/tests/headers/posix/
stdlib_h.c 80 FUNCTION(atoll, long long (*f)(const char*));
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/
stdlib.h 126 atoll(const char *);
  /external/libcxx/test/std/depr/depr.c.headers/
stdlib_h.pass.cpp 75 static_assert((std::is_same<decltype(atoll("")), long long>::value), "");
  /external/ltp/tools/genload/
genload.c 142 global_retry = atoll(arg);
147 global_backoff = atoll(arg);
413 factor = atoll(nptr) * factor;
460 factor = atoll(nptr) * factor;
stress.c 142 global_retry = atoll(arg);
147 global_backoff = atoll(arg);
413 factor = atoll(nptr) * factor;
460 factor = atoll(nptr) * factor;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.c.headers/
stdlib_h.pass.cpp 75 static_assert((std::is_same<decltype(atoll("")), long long>::value), "");
  /external/perfetto/src/perfetto_cmd/
perfetto_cmd.cc 175 statsd_metadata.set_triggering_alert_id(atoll(optarg));
180 statsd_metadata.set_triggering_config_id(atoll(optarg));
  /external/walt/ios/WALT/
WALTClient.m 44 /** Similar to atoll(), but only reads a maximum of n characters from s. */
567 uint64_t microseconds = atoll([components objectAtIndex:2].UTF8String);
569 result.value = (int)atoll([components objectAtIndex:3].UTF8String);
570 result.count = (unsigned int)atoll([components objectAtIndex:4].UTF8String);

Completed in 579 milliseconds

1 2 3