/ndk/sources/host-tools/make-3.81/config/ |
D | stdint_h.m4 | 12 # doesn't clash with <sys/types.h>, and declares uintmax_t. 20 [uintmax_t i = (uintmax_t) -1;], 26 and declares uintmax_t. ])
|
D | inttypes_h.m4 | 12 # doesn't clash with <sys/types.h>, and declares uintmax_t. 20 [uintmax_t i = (uintmax_t) -1;], 26 and declares uintmax_t. ])
|
D | uintmax_t.m4 | 1 # uintmax_t.m4 serial 7 (gettext-0.12) 13 # Define uintmax_t to 'unsigned long' or 'unsigned long long' 25 AC_DEFINE_UNQUOTED(uintmax_t, $ac_type, definition 30 [Define if you have the 'uintmax_t' type in <stdint.h> or <inttypes.h>.])
|
D | Makefile.am | 20 progtest.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4 longlong.m4 \
|
D | Makefile.in | 187 progtest.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4 longlong.m4 \
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
D | cstdint.hpp | 136 using ::uintmax_t; 177 typedef uint64_t uintmax_t; typedef 182 typedef uint32_t uintmax_t; typedef 307 typedef ::boost::ulong_long_type uintmax_t; typedef 319 typedef unsigned long uintmax_t; typedef 331 __extension__ typedef unsigned long long uintmax_t; typedef 343 typedef unsigned __int64 uintmax_t; typedef 353 typedef uint32_t uintmax_t; typedef
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | stdint.in.h | 268 #undef uintmax_t 271 # define uintmax_t gl_uintmax_t macro 273 # define uintmax_t uint64_t macro 276 # define uintmax_t gl_uintmax_t macro 282 typedef int _verify_intmax_size[2 * (sizeof (intmax_t) == sizeof (uintmax_t)) - 1];
|
D | tempname.c | 105 # define uint64_t uintmax_t
|
D | obstack.c | 59 uintmax_t i;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cstdint | 139 uintmax_t 187 using::uintmax_t;
|
D | cinttypes | 231 uintmax_t strtoumax(const char* restrict nptr, char** restrict endptr, int base); 233 uintmax_t wcstoumax(const wchar_t* restrict nptr, wchar_t** restrict endptr, int base);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | stdint_h.pass.cpp | 165 static_assert(sizeof(uintmax_t) >= sizeof(unsigned long long), in main() 167 static_assert(std::is_unsigned<uintmax_t>::value, in main() 222 assert(UINTMAX_MAX == std::numeric_limits<uintmax_t>::max()); in main()
|
D | inttypes_h.pass.cpp | 640 static_assert((std::is_same<decltype(strtoumax("", (char**)0, 0)), uintmax_t>::value), ""); in main() 642 static_assert((std::is_same<decltype(wcstoumax(L"", (wchar_t**)0, 0)), uintmax_t>::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/cstdint/cstdint.syn/ |
D | cstdint.pass.cpp | 165 static_assert(sizeof(std::uintmax_t) >= sizeof(unsigned long long), in main() 167 static_assert(std::is_unsigned<std::uintmax_t>::value, in main() 222 assert(UINTMAX_MAX == std::numeric_limits<std::uintmax_t>::max()); in main()
|
/ndk/sources/host-tools/make-3.81/ |
D | configure.in | 87 # Find some definition for uintmax_t 89 AC_CHECK_TYPE(uintmax_t,,[ 90 uintmax_t="unsigned long" 91 AC_CHECK_TYPE(unsigned long long,[uintmax_t="unsigned long long"]) 92 AC_DEFINE_UNQUOTED(uintmax_t,$uintmax_t, definition 93 [Define uintmax_t if not defined in <stdint.h> or <inttypes.h>.])]) 106 [[char a[0x7fffffff < (uintmax_t)-1 >> 30 ? 1 : -1];]])],
|
D | configh.dos | 68 #define uintmax_t unsigned long long
|
D | config.h.W32 | 417 /* Define uintmax_t if not defined in <stdint.h> or <inttypes.h>. */ 418 #define uintmax_t unsigned long 425 #define uintmax_t unsigned long
|
D | make.h | 289 #define FILE_TIMESTAMP uintmax_t
|
D | config.h.in | 448 /* Define uintmax_t if not defined in <stdint.h> or <inttypes.h>. */ 449 #undef uintmax_t
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/atomics/atomics.types.generic/ |
D | cstdint_typedefs.pass.cpp | 66 static_assert((std::is_same<std::atomic<std::uintmax_t>, std::atomic_uintmax_t>::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/c.files/ |
D | cinttypes.pass.cpp | 917 std::uintmax_t i4 = 0; in main() 926 …static_assert((std::is_same<decltype(std::strtoumax("", (char**)0, 0)), std::uintmax_t>::value), "… in main() 928 …static_assert((std::is_same<decltype(std::wcstoumax(L"", (wchar_t**)0, 0)), std::uintmax_t>::value… in main()
|
/ndk/sources/android/support/src/stdio/ |
D | vfwprintf.c | 230 uintmax_t i; 256 break; case UMAX: arg->i = va_arg(*ap, uintmax_t); in pop_arg() 387 case JPRE: *(uintmax_t *)arg.p = cnt; break; in wprintf_core()
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/policies/ |
D | policy.hpp | 883 static const boost::uintmax_t v = static_cast<boost::uintmax_t>(1u) << (Digits::value - 1); in get() 907 typedef mpl::bool_<p_t::value <= std::numeric_limits<boost::uintmax_t>::digits> is_small_int; in get_epsilon_imp()
|
/ndk/sources/host-tools/sed-4.2.1/m4/ |
D | stdint.m4 | 144 uintmax_t j = UINTMAX_MAX; 200 int check_uintmax: (uintmax_t) -1 == UINTMAX_MAX ? 1 : -1;
|
/ndk/sources/host-tools/make-3.81/autom4te.cache/ |
D | traces.0 | 642 m4trace:configure.in:89: -1- AC_DEFINE_TRACE_LITERAL([uintmax_t]) 643 m4trace:configure.in:89: -1- m4_pattern_allow([^uintmax_t$]) 644 m4trace:configure.in:89: -1- AH_OUTPUT([uintmax_t], [/* Define uintmax_t if not defined in <stdint.… 645 @%:@undef uintmax_t])
|