Home | History | Annotate | Download | only in xps

Lines Matching refs:uintmax_t

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;
50 template <uintmax_t a, uintmax_t b> struct SkTUMax {
51 static const uintmax_t value = (b < a) ? a : b;