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

1 2 3 4 5 6 7 8 91011>>

  /external/syslinux/com32/lib/
strtoumax.c 1 #define TYPE uintmax_t
strntoumax.c 24 uintmax_t strntoumax(const char *nptr, char **endptr, int base, size_t n)
27 uintmax_t v = 0;
  /external/dhcpcd-6.8.2/compat/
strtoi.h 35 uintmax_t strtou(const char * __restrict nptr, char ** __restrict endptr,
36 int base, uintmax_t lo, uintmax_t hi, int *rstatus);
strtoi.c 74 uintmax_t
76 uintmax_t lo, uintmax_t hi, int *rstatus)
79 uintmax_t r;
  /external/clang/test/Sema/
format-strings-int-typedefs.c 8 printf("%ju", 42.0); // expected-warning {{format specifies type 'uintmax_t' (aka 'unsigned long long')}}
17 scanf("%ju", 0); // expected-warning {{format specifies type 'uintmax_t *' (aka 'unsigned long long *')}}
29 typedef void *uintmax_t; typedef
34 printf("%ju", (uintmax_t)42); // expected-warning {{format specifies type 'uintmax_t' (aka 'unsigned long long') but the argument has type 'uintmax_t' (aka 'void *')}}
  /prebuilts/misc/common/swig/include/2.0.11/
inttypes.i 20 /* We have to define the `uintmax_t' type using `ldiv_t'. */
29 /* We have to define the `uintmax_t' type using `lldiv_t'. */
47 /* Like `strtoul' but convert to `uintmax_t'. */
48 extern uintmax_t strtoumax (const char *nptr, char ** endptr, int base);
54 /* Like `wcstoul' but convert to `uintmax_t'. */
55 extern uintmax_t wcstoumax (const wchar_t *nptr, wchar_t ** endptr, int base);
63 /* Like `strtoul' but convert to `uintmax_t'. */
64 extern uintmax_t strtoumax (const char *nptr, char **endptr,int base);
70 /* Like `wcstoul' but convert to `uintmax_t'. */
71 extern uintmax_t wcstoumax (const wchar_t *nptr, wchar_t **endptr, int base)
    [all...]
stdint.i 100 typedef unsigned long int uintmax_t;
103 typedef unsigned long long int uintmax_t;
  /bionic/libc/upstream-openbsd/lib/libc/locale/
wcstoumax.c 15 typedef uintmax_t uint_type;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/time/
1-1.c 24 printf("%ju secs since the Epoch\n", (uintmax_t) current_time);
  /external/syslinux/dos/
strtoul.c 10 extern uintmax_t strntoumax(const char *nptr, char **endptr, int base, size_t n);
strntoumax.c 24 uintmax_t strntoumax(const char *nptr, char **endptr, int base, size_t n)
27 uintmax_t v = 0;
  /device/linaro/bootloader/edk2/StdLib/Include/
inttypes.h 55 uintmax_t strtoumax(const char * __restrict,
59 uintmax_t wcstoumax(const wchar_t * __restrict,
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.hard_lk_ct/
hard_link_count.pass.cpp 14 // uintmax_t hard_link_count(const path& p);
15 // uintmax_t hard_link_count(const path& p, std::error_code& ec) noexcept;
33 ASSERT_SAME_TYPE(decltype(hard_link_count(p)), uintmax_t);
34 ASSERT_SAME_TYPE(decltype(hard_link_count(p, ec)), uintmax_t);
48 uintmax_t DirExpect = 3; // hard link from . .. and Dir2
49 uintmax_t Dir3Expect = 2; // hard link from . ..
50 uintmax_t DirExpectAlt = DirExpect;
51 uintmax_t Dir3ExpectAlt = Dir3Expect;
91 const uintmax_t expect = static_cast<uintmax_t>(-1)
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.space/
space.pass.cpp 26 bool EqualDelta(std::uintmax_t x, std::uintmax_t y, std::uintmax_t delta) {
70 const auto expect = static_cast<std::uintmax_t>(-1);
93 auto do_mult = [&](std::uintmax_t val) {
94 std::uintmax_t fsize = expect.f_frsize;
95 std::uintmax_t new_val = val * fsize;
99 const std::uintmax_t bad_value = static_cast<std::uintmax_t>(-1);
100 const std::uintmax_t expect_capacity = do_mult(expect.f_blocks)
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
strtoumax.c 36 * Convert a string to a uintmax_t.
41 uintmax_t
45 uintmax_t acc, cutoff;
80 cutoff = UINTMAX_MAX / (uintmax_t)base;
81 cutlim = UINTMAX_MAX % (uintmax_t)base;
99 acc *= (uintmax_t)base;
  /bionic/libc/tzcode/
difftime.c 36 /* Use uintmax_t if wide enough. */
37 if (sizeof (time_t) <= sizeof (uintmax_t)) {
38 uintmax_t t1 = time1, t0 = time0;
50 ** The values have opposite signs and uintmax_t is too narrow.
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
wcstoumax.c 56 #define __wUINT uintmax_t
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.file_size/
file_size.pass.cpp 14 // uintmax_t file_size(const path& p);
15 // uintmax_t file_size(const path& p, std::error_code& ec) noexcept;
33 ASSERT_SAME_TYPE(decltype(file_size(p)), uintmax_t);
34 ASSERT_SAME_TYPE(decltype(file_size(p, ec)), uintmax_t);
71 const uintmax_t expect = static_cast<uintmax_t>(-1);
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.resize_file/
resize_file.pass.cpp 14 // void resize_file(const path& p, uintmax_t new_size);
15 // void resize_file(const path& p, uintmax_t new_size, error_code& ec) noexcept;
31 std::uintmax_t i; ((void)i);
43 auto checkThrow = [](path const& f, std::uintmax_t s, const std::error_code& ec)
80 const std::uintmax_t new_s = 100;
87 const std::uintmax_t new_s = 1;
94 const std::uintmax_t new_s = 0;
102 const std::uintmax_t new_s = 1024;
  /external/google-breakpad/src/common/linux/
linux_libc_support.h 56 extern unsigned my_uint_len(uintmax_t i);
64 extern void my_uitos(char* output, uintmax_t i, unsigned i_len);
  /device/linaro/bootloader/arm-trusted-firmware/include/stdlib/
inttypes.h 48 uintmax_t strtoumax(const char *__restrict, char **__restrict, int);
  /device/linaro/bootloader/edk2/StdLib/Include/Aarch64/machine/
int_mwgwtypes.h 80 typedef UINT64 uintmax_t; typedef
  /device/linaro/bootloader/edk2/StdLib/Include/Arm/machine/
int_mwgwtypes.h 80 typedef UINT64 uintmax_t; typedef
  /device/linaro/bootloader/edk2/StdLib/Include/Ia32/machine/
int_mwgwtypes.h 80 typedef UINT64 uintmax_t; typedef
  /device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
int_mwgwtypes.h 81 typedef UINT64 uintmax_t; typedef

Completed in 670 milliseconds

1 2 3 4 5 6 7 8 91011>>