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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/include/device/xps/
SkConstexprMath.h 14 template <uintmax_t N, uintmax_t B>
17 static const uintmax_t value = 1 + SK_LOG<N/B, B>::value;
19 template <uintmax_t B>
21 static const uintmax_t value = 0;
23 template <uintmax_t B>
25 static const uintmax_t value = 0;
28 template<uintmax_t N>
31 static const uintmax_t value = (SK_2N1<N-1>::value << 1) + 1;
35 static const uintmax_t value = 1
    [all...]
  /external/skia/include/device/xps/
SkConstexprMath.h 14 template <uintmax_t N, uintmax_t B>
17 static const uintmax_t value = 1 + SK_LOG<N/B, B>::value;
19 template <uintmax_t B>
21 static const uintmax_t value = 0;
23 template <uintmax_t B>
25 static const uintmax_t value = 0;
28 template<uintmax_t N>
31 static const uintmax_t value = (SK_2N1<N-1>::value << 1) + 1;
35 static const uintmax_t value = 1
    [all...]
  /bionic/libc/tzcode/
difftime.c 36 ** Punt if uintmax_t is too narrow.
40 if (sizeof (uintmax_t) < sizeof (time_t))
46 return (uintmax_t) time1 + (uintmax_t) (-1 - time0) + 1;
47 return -(double) ((uintmax_t) time0 + (uintmax_t) (-1 - time1) + 1);
  /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 *')}}
format-strings-fixit.c 15 typedef __UINTMAX_TYPE__ uintmax_t; typedef
65 printf("%f", (uintmax_t) 42);
71 typedef uintmax_t my_uintmax_type;
118 uintmax_t uIntmaxVar;
153 typedef uintmax_t my_uintmax_type;
200 // CHECK: printf("%ju", (uintmax_t) 42);
  /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;
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
strtoumax.c 37 * Convert a string to a uintmax_t.
42 uintmax_t
46 uintmax_t acc, cutoff;
74 cutoff = UINTMAX_MAX / (uintmax_t)base;
75 cutlim = UINTMAX_MAX % (uintmax_t)base;
93 acc *= (uintmax_t)base;
  /external/chromium_org/third_party/skia/src/core/
SkDebug.cpp 19 uint8_t SkToU8(uintmax_t x) {
29 uint16_t SkToU16(uintmax_t x) {
39 uint32_t SkToU32(uintmax_t x) {
49 unsigned SkToUInt(uintmax_t x) {
54 size_t SkToSizeT(uintmax_t x) {
  /external/skia/src/core/
SkDebug.cpp 19 uint8_t SkToU8(uintmax_t x) {
29 uint16_t SkToU16(uintmax_t x) {
39 uint32_t SkToU32(uintmax_t x) {
49 unsigned SkToUInt(uintmax_t x) {
54 size_t SkToSizeT(uintmax_t x) {
  /external/jemalloc/src/
util.c 30 static char *u2s(uintmax_t x, unsigned base, bool uppercase, char *s,
35 static char *o2s(uintmax_t x, bool alt_form, char *s, size_t *slen_p);
37 static char *x2s(uintmax_t x, bool alt_form, bool uppercase, char *s,
99 uintmax_t
102 uintmax_t ret, digit;
182 uintmax_t pret = ret;
215 u2s(uintmax_t x, unsigned base, bool uppercase, char *s, size_t *slen_p)
284 o2s(uintmax_t x, bool alt_form, char *s, size_t *slen_p)
297 x2s(uintmax_t x, bool alt_form, bool uppercase, char *s, size_t *slen_p)
370 val = va_arg(ap, uintmax_t); \
    [all...]
  /external/elfutils/0.153/libasm/
asm_newcomsym.c 94 name, (uintmax_t) size, (uintmax_t) align);
  /ndk/sources/host-tools/make-3.81/
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
config.ami 46 #define uintmax_t unsigned long
configh.dos 68 #define uintmax_t unsigned long long
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
cstdint.hpp 136 using ::uintmax_t;
177 typedef uint64_t uintmax_t;
182 typedef uint32_t uintmax_t;
292 // 64-bit types + intmax_t and uintmax_t ----------------------------------//
307 typedef ::boost::ulong_long_type uintmax_t;
319 typedef unsigned long uintmax_t;
331 __extension__ typedef unsigned long long uintmax_t;
343 typedef unsigned __int64 uintmax_t;
353 typedef uint32_t uintmax_t;
455 // 64-bit types + intmax_t and uintmax_t ----------------------------------/
    [all...]
  /external/chromium_org/base/numerics/
safe_numerics_unittest.cc 271 TEST_ARITHMETIC(uintmax_t);
475 TEST_NUMERIC_CONVERSION(int8_t, uintmax_t, UNSIGN_TO_SIGN_NARROW_OR_EQUAL);
488 TEST_NUMERIC_CONVERSION(unsigned int, uintmax_t, SIGN_PRESERVING_NARROW);
500 TEST_NUMERIC_CONVERSION(int, uintmax_t, UNSIGN_TO_SIGN_NARROW_OR_EQUAL);
505 TEST_NUMERIC_CONVERSION(uintmax_t, uintmax_t,
508 TEST_NUMERIC_CONVERSION(uintmax_t, unsigned int,
517 TEST_NUMERIC_CONVERSION(uintmax_t, int, SIGN_TO_UNSIGN_WIDEN_OR_EQUAL);
518 TEST_NUMERIC_CONVERSION(uintmax_t, int8_t, SIGN_TO_UNSIGN_WIDEN_OR_EQUAL);
520 TEST_NUMERIC_CONVERSION(uintmax_t, float, SIGN_TO_UNSIGN_NARROW)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
inttypes.h 156 /* Macros for printing `intmax_t' and `uintmax_t'. */
257 /* Macros for scanning `intmax_t' and `uintmax_t'. */
278 /* We have to define the `uintmax_t' type using `ldiv_t'. */
287 /* We have to define the `uintmax_t' type using `lldiv_t'. */
308 /* Like `strtoul' but convert to `uintmax_t'. */
309 extern uintmax_t strtoumax (__const char *__restrict __nptr,
317 /* Like `wcstoul' but convert to `uintmax_t'. */
318 extern uintmax_t wcstoumax (__const __gwchar_t *__restrict __nptr,
343 /* Like `strtoul' but convert to `uintmax_t'. */
344 __extern_inline uintmax_t
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
inttypes.h 156 /* Macros for printing `intmax_t' and `uintmax_t'. */
257 /* Macros for scanning `intmax_t' and `uintmax_t'. */
278 /* We have to define the `uintmax_t' type using `ldiv_t'. */
287 /* We have to define the `uintmax_t' type using `lldiv_t'. */
308 /* Like `strtoul' but convert to `uintmax_t'. */
309 extern uintmax_t strtoumax (__const char *__restrict __nptr,
317 /* Like `wcstoul' but convert to `uintmax_t'. */
318 extern uintmax_t wcstoumax (__const __gwchar_t *__restrict __nptr,
343 /* Like `strtoul' but convert to `uintmax_t'. */
344 __extern_inline uintmax_t
    [all...]
  /development/ndk/platforms/android-3/include/
inttypes.h 113 #define PRIuMAX "ju" /* uintmax_t */
131 #define PRIxMAX "jx" /* uintmax_t */
149 #define PRIXMAX "jX" /* uintmax_t */
205 #define SCNoMAX "jo" /* uintmax_t */
223 #define SCNuMAX "ju" /* uintmax_t */
241 #define SCNxMAX "jx" /* uintmax_t */
253 uintmax_t strtoumax(const char *, char **, int);
256 uintmax_t strntoumax(const char *nptr, char **endptr, int base, size_t n);
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/
inttypes.h 113 #define PRIuMAX "ju" /* uintmax_t */
131 #define PRIxMAX "jx" /* uintmax_t */
149 #define PRIXMAX "jX" /* uintmax_t */
205 #define SCNoMAX "jo" /* uintmax_t */
223 #define SCNuMAX "ju" /* uintmax_t */
241 #define SCNxMAX "jx" /* uintmax_t */
255 uintmax_t strtoumax(const char *, char **, int);
258 uintmax_t strntoumax(const char *nptr, char **endptr, int base, size_t n);
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/
inttypes.h 113 #define PRIuMAX "ju" /* uintmax_t */
131 #define PRIxMAX "jx" /* uintmax_t */
149 #define PRIXMAX "jX" /* uintmax_t */
205 #define SCNoMAX "jo" /* uintmax_t */
223 #define SCNuMAX "ju" /* uintmax_t */
241 #define SCNxMAX "jx" /* uintmax_t */
255 uintmax_t strtoumax(const char *, char **, int);
258 uintmax_t strntoumax(const char *nptr, char **endptr, int base, size_t n);
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/
inttypes.h 113 #define PRIuMAX "ju" /* uintmax_t */
131 #define PRIxMAX "jx" /* uintmax_t */
149 #define PRIXMAX "jX" /* uintmax_t */
205 #define SCNoMAX "jo" /* uintmax_t */
223 #define SCNuMAX "ju" /* uintmax_t */
241 #define SCNxMAX "jx" /* uintmax_t */
255 uintmax_t strtoumax(const char *, char **, int);
258 uintmax_t strntoumax(const char *nptr, char **endptr, int base, size_t n);
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/
inttypes.h 113 #define PRIuMAX "ju" /* uintmax_t */
131 #define PRIxMAX "jx" /* uintmax_t */
149 #define PRIXMAX "jX" /* uintmax_t */
205 #define SCNoMAX "jo" /* uintmax_t */
223 #define SCNuMAX "ju" /* uintmax_t */
241 #define SCNxMAX "jx" /* uintmax_t */
255 uintmax_t strtoumax(const char *, char **, int);
258 uintmax_t strntoumax(const char *nptr, char **endptr, int base, size_t n);

Completed in 848 milliseconds

1 2 3 4 5 6 7 8 91011>>