Searched refs:intmax_t (Results 1 - 25 of 129) sorted by relevance

123456

/prebuilts/ndk/current/sources/android/support/include/
H A Dinttypes.h37 intmax_t imaxabs(intmax_t) __attribute_const__;
38 imaxdiv_t imaxdiv(intmax_t, intmax_t) __attribute_const__;
42 intmax_t wcstoimax(const wchar_t* __restrict, wchar_t** __restrict, int);
/prebuilts/ndk/r16/sources/android/support/include/
H A Dinttypes.h37 intmax_t imaxabs(intmax_t) __attribute_const__;
38 imaxdiv_t imaxdiv(intmax_t, intmax_t) __attribute_const__;
42 intmax_t wcstoimax(const wchar_t* __restrict, wchar_t** __restrict, int);
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/utilities/ratio/ratio.ratio/
H A Dratio1.fail.cpp17 const std::intmax_t t1 = std::ratio<1, 0>::num;
H A Dratio2.fail.cpp11 // shall be representable by type intmax_t.
18 const std::intmax_t t1 = std::ratio<0x8000000000000000ULL, 1>::num;
H A Dratio3.fail.cpp11 // shall be representable by type intmax_t.
18 const std::intmax_t t1 = std::ratio<1, 0x8000000000000000ULL>::num;
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/ratio/ratio.ratio/
H A Dratio1.fail.cpp17 const std::intmax_t t1 = std::ratio<1, 0>::num;
H A Dratio2.fail.cpp11 // shall be representable by type intmax_t.
18 const std::intmax_t t1 = std::ratio<0x8000000000000000ULL, 1>::num;
H A Dratio3.fail.cpp11 // shall be representable by type intmax_t.
18 const std::intmax_t t1 = std::ratio<1, 0x8000000000000000ULL>::num;
/prebuilts/misc/common/swig/include/2.0.11/
H A Dinttypes.i39 extern intmax_t imaxabs (intmax_t n);
42 extern imaxdiv_t imaxdiv (intmax_t numer, intmax_t denom);
44 /* Like `strtol' but convert to `intmax_t'. */
45 extern intmax_t strtoimax (const char *nptr, char **endptr, int base);
51 /* Like `wcstol' but convert to `intmax_t'. */
52 extern intmax_t wcstoimax (const wchar_t *nptr, wchar_t **endptr, int base);
60 /* Like `strtol' but convert to `intmax_t'. */
61 extern intmax_t strtoima
[all...]
H A Dstdint.i99 typedef long int intmax_t;
102 typedef long long int intmax_t;
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/mingw/include/
H A Dinttypes.h21 intmax_t quot;
22 intmax_t rem;
279 intmax_t __cdecl imaxabs (intmax_t j);
281 __CRT_INLINE intmax_t __cdecl imaxabs (intmax_t j)
284 imaxdiv_t __cdecl imaxdiv (intmax_t numer, intmax_t denom);
288 intmax_t __cdecl strtoimax (const char* __restrict__ nptr,
293 intmax_t __cdec
[all...]
H A Dstdint.h68 __MINGW_EXTENSION typedef long long intmax_t; typedef
197 suffix, (val) will be evaluated as int, not intmax_t */
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
H A Dinttypes.h21 intmax_t quot;
22 intmax_t rem;
279 intmax_t __cdecl imaxabs (intmax_t j);
281 __CRT_INLINE intmax_t __cdecl imaxabs (intmax_t j)
284 imaxdiv_t __cdecl imaxdiv (intmax_t numer, intmax_t denom);
288 intmax_t __cdecl strtoimax (const char* __restrict__ nptr,
293 intmax_t __cdec
[all...]
H A Dstdint.h68 __MINGW_EXTENSION typedef long long intmax_t; typedef
197 suffix, (val) will be evaluated as int, not intmax_t */
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
H A Dinttypes.h156 /* Macros for printing `intmax_t' and `uintmax_t'. */
257 /* Macros for scanning `intmax_t' and `uintmax_t'. */
298 extern intmax_t imaxabs (intmax_t __n) __THROW __attribute__ ((__const__));
301 extern imaxdiv_t imaxdiv (intmax_t __numer, intmax_t __denom)
304 /* Like `strtol' but convert to `intmax_t'. */
305 extern intmax_t strtoimax (__const char *__restrict __nptr,
312 /* Like `wcstol' but convert to `intmax_t'. */
313 extern intmax_t wcstoima
[all...]
H A Dstdint.h135 typedef long int intmax_t; typedef
139 typedef long long int intmax_t; typedef
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/depr/depr.c.headers/
H A Dstdint_h.pass.cpp160 // typedef intmax_t
161 static_assert(sizeof(intmax_t) >= sizeof(long long),
162 "sizeof(intmax_t) >= sizeof(long long)");
163 static_assert(std::is_signed<intmax_t>::value,
164 "std::is_signed<intmax_t>::value");
217 assert(INTMAX_MIN == std::numeric_limits<intmax_t>::min());
220 assert(INTMAX_MAX == std::numeric_limits<intmax_t>::max());
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/language.support/cstdint/cstdint.syn/
H A Dcstdint.pass.cpp161 // typedef std::intmax_t
162 static_assert(sizeof(std::intmax_t) >= sizeof(long long),
163 "sizeof(std::intmax_t) >= sizeof(long long)");
164 static_assert(std::is_signed<std::intmax_t>::value,
165 "std::is_signed<std::intmax_t>::value");
218 assert(INTMAX_MIN == std::numeric_limits<std::intmax_t>::min());
221 assert(INTMAX_MAX == std::numeric_limits<std::intmax_t>::max());
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.c.headers/
H A Dstdint_h.pass.cpp160 // typedef intmax_t
161 static_assert(sizeof(intmax_t) >= sizeof(long long),
162 "sizeof(intmax_t) >= sizeof(long long)");
163 static_assert(std::is_signed<intmax_t>::value,
164 "std::is_signed<intmax_t>::value");
217 assert(INTMAX_MIN == std::numeric_limits<intmax_t>::min());
220 assert(INTMAX_MAX == std::numeric_limits<intmax_t>::max());
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/language.support/cstdint/cstdint.syn/
H A Dcstdint.pass.cpp161 // typedef std::intmax_t
162 static_assert(sizeof(std::intmax_t) >= sizeof(long long),
163 "sizeof(std::intmax_t) >= sizeof(long long)");
164 static_assert(std::is_signed<std::intmax_t>::value,
165 "std::is_signed<std::intmax_t>::value");
218 assert(INTMAX_MIN == std::numeric_limits<std::intmax_t>::min());
221 assert(INTMAX_MAX == std::numeric_limits<std::intmax_t>::max());
/prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/include/gcc/darwin/4.2/
H A Dstdint.h97 typedef __INTMAX_TYPE__ intmax_t; typedef
99 typedef long long intmax_t; typedef
/prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
H A Dstdint.h97 typedef __INTMAX_TYPE__ intmax_t; typedef
99 typedef long long intmax_t; typedef
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/unord.hash/
H A Dintegral.pass.cpp87 test<intmax_t>();
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/unord.hash/
H A Dintegral.pass.cpp87 test<intmax_t>();
/prebuilts/ndk/current/sources/android/support/src/
H A Dwcstox.cpp121 intmax_t wcstoimax(const wchar_t *restrict s, wchar_t **restrict p, int base) {

Completed in 468 milliseconds

123456