Searched refs:is_signed (Results 1 - 25 of 88) sorted by relevance

1234

/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
H A Dis_signed.pass.cpp12 // is_signed
19 static_assert( std::is_signed<T>::value, "");
20 static_assert( std::is_signed<const T>::value, "");
21 static_assert( std::is_signed<volatile T>::value, "");
22 static_assert( std::is_signed<const volatile T>::value, "");
28 static_assert(!std::is_signed<T>::value, "");
29 static_assert(!std::is_signed<const T>::value, "");
30 static_assert(!std::is_signed<volatile T>::value, "");
31 static_assert(!std::is_signed<const volatile T>::value, "");
/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/
H A Dis_signed.pass.cpp12 // is_signed
20 static_assert(std::numeric_limits<T>::is_signed == expected, "is_signed test 1");
21 static_assert(std::numeric_limits<const T>::is_signed == expected, "is_signed test 2");
22 static_assert(std::numeric_limits<volatile T>::is_signed == expected, "is_signed test 3");
23 static_assert(std::numeric_limits<const volatile T>::is_signed == expected, "is_signed test 4");
H A Dmin.pass.cpp25 assert(std::numeric_limits<T>::is_bounded || !std::numeric_limits<T>::is_signed);
27 assert(std::numeric_limits<const T>::is_bounded || !std::numeric_limits<const T>::is_signed);
29 assert(std::numeric_limits<volatile T>::is_bounded || !std::numeric_limits<volatile T>::is_signed);
31 assert(std::numeric_limits<const volatile T>::is_bounded || !std::numeric_limits<const volatile T>::is_signed);
H A Ddigits.pass.cpp30 test<char, std::numeric_limits<char>::is_signed ? 7 : 8>();
33 test<wchar_t, std::numeric_limits<wchar_t>::is_signed ? sizeof(wchar_t)*8-1 : sizeof(wchar_t)*8>();
/external/libcxx/test/std/depr/depr.ios.members/
H A Dstreamoff.pass.cpp24 static_assert((std::is_signed<std::ios_base::streamoff>::value), "");
/external/libcxx/test/std/input.output/iostreams.base/stream.types/
H A Dstreamoff.pass.cpp20 static_assert(std::is_signed<std::streamoff>::value, "");
H A Dstreamsize.pass.cpp20 static_assert(std::is_signed<std::streamsize>::value, "");
/external/libcxx/test/std/language.support/support.types/
H A Dptrdiff_t.pass.cpp23 static_assert(std::is_signed<std::ptrdiff_t>::value,
24 "std::is_signed<std::ptrdiff_t>::value");
/external/libcxx/test/std/depr/depr.c.headers/
H A Dstdint_h.pass.cpp26 static_assert(std::is_signed<int8_t>::value,
27 "std::is_signed<int8_t>::value");
31 static_assert(std::is_signed<int16_t>::value,
32 "std::is_signed<int16_t>::value");
36 static_assert(std::is_signed<int32_t>::value,
37 "std::is_signed<int32_t>::value");
41 static_assert(std::is_signed<int64_t>::value,
42 "std::is_signed<int64_t>::value");
68 static_assert(std::is_signed<int_least8_t>::value,
69 "std::is_signed<int_least8_
[all...]
H A Dstddef_h.pass.cpp33 static_assert(std::is_signed<ptrdiff_t>::value,
34 "std::is_signed<ptrdiff_t>::value");
/external/libcxx/test/std/language.support/cstdint/cstdint.syn/
H A Dcstdint.pass.cpp27 static_assert(std::is_signed<std::int8_t>::value,
28 "std::is_signed<std::int8_t>::value");
32 static_assert(std::is_signed<std::int16_t>::value,
33 "std::is_signed<std::int16_t>::value");
37 static_assert(std::is_signed<std::int32_t>::value,
38 "std::is_signed<std::int32_t>::value");
42 static_assert(std::is_signed<std::int64_t>::value,
43 "std::is_signed<std::int64_t>::value");
69 static_assert(std::is_signed<std::int_least8_t>::value,
70 "std::is_signed<st
[all...]
/external/libcxx/test/std/utilities/time/
H A Dhours.pass.cpp23 static_assert(std::is_signed<Rep>::value, "");
H A Dmicroseconds.pass.cpp23 static_assert(std::is_signed<Rep>::value, "");
H A Dmilliseconds.pass.cpp23 static_assert(std::is_signed<Rep>::value, "");
H A Dminutes.pass.cpp23 static_assert(std::is_signed<Rep>::value, "");
H A Dnanoseconds.pass.cpp23 static_assert(std::is_signed<Rep>::value, "");
H A Dseconds.pass.cpp23 static_assert(std::is_signed<Rep>::value, "");
/external/pdfium/third_party/libopenjpeg20/
H A Dmct.h108 @param is_signed tells if the data is signed
116 OPJ_UINT32 is_signed);
/external/libchrome/base/numerics/
H A Dsafe_math_impl.h86 std::numeric_limits<Integer>::is_signed>::type>::type type;
145 if (std::numeric_limits<T>::is_signed) {
168 if (std::numeric_limits<T>::is_signed) {
198 std::numeric_limits<T>::is_signed &&
228 !std::numeric_limits<T>::is_signed &&
245 if (std::numeric_limits<T>::is_signed && x == std::numeric_limits<T>::min() &&
257 std::numeric_limits<T>::is_signed,
266 !std::numeric_limits<T>::is_signed,
275 std::numeric_limits<T>::is_signed,
286 !std::numeric_limits<T>::is_signed,
[all...]
H A Dsafe_conversions_impl.h26 std::numeric_limits<NumericType>::is_signed);
50 IntegerRepresentation DstSign = std::numeric_limits<Dst>::is_signed
54 std::numeric_limits<Src>::is_signed
166 IntegerRepresentation DstSign = std::numeric_limits<Dst>::is_signed
169 IntegerRepresentation SrcSign = std::numeric_limits<Src>::is_signed
/external/libweave/third_party/chromium/base/numerics/
H A Dsafe_math_impl.h85 std::numeric_limits<Integer>::is_signed>::type>::type type;
144 if (std::numeric_limits<T>::is_signed) {
167 if (std::numeric_limits<T>::is_signed) {
197 std::numeric_limits<T>::is_signed &&
227 !std::numeric_limits<T>::is_signed &&
244 if (std::numeric_limits<T>::is_signed && x == std::numeric_limits<T>::min() &&
256 std::numeric_limits<T>::is_signed,
265 !std::numeric_limits<T>::is_signed,
274 std::numeric_limits<T>::is_signed,
285 !std::numeric_limits<T>::is_signed,
[all...]
H A Dsafe_conversions_impl.h24 std::numeric_limits<NumericType>::is_signed);
48 IntegerRepresentation DstSign = std::numeric_limits<Dst>::is_signed
52 std::numeric_limits<Src>::is_signed
164 IntegerRepresentation DstSign = std::numeric_limits<Dst>::is_signed
167 IntegerRepresentation SrcSign = std::numeric_limits<Src>::is_signed
/external/pdfium/third_party/base/numerics/
H A Dsafe_conversions_impl.h25 std::numeric_limits<NumericType>::is_signed);
49 IntegerRepresentation DstSign = std::numeric_limits<Dst>::is_signed
53 std::numeric_limits<Src>::is_signed
116 IntegerRepresentation DstSign = std::numeric_limits<Dst>::is_signed
119 IntegerRepresentation SrcSign = std::numeric_limits<Src>::is_signed
H A Dsafe_math_impl.h86 std::numeric_limits<Integer>::is_signed>::type>::type type;
126 if (std::numeric_limits<T>::is_signed) {
149 if (std::numeric_limits<T>::is_signed) {
179 std::numeric_limits<T>::is_signed &&
209 !std::numeric_limits<T>::is_signed &&
226 if (std::numeric_limits<T>::is_signed && x == std::numeric_limits<T>::min() &&
238 std::numeric_limits<T>::is_signed,
247 !std::numeric_limits<T>::is_signed,
256 std::numeric_limits<T>::is_signed,
267 !std::numeric_limits<T>::is_signed,
[all...]
/external/v8/src/base/
H A Dsafe_conversions_impl.h28 std::numeric_limits<NumericType>::is_signed);
52 IntegerRepresentation DstSign = std::numeric_limits<Dst>::is_signed
56 std::numeric_limits<Src>::is_signed
119 IntegerRepresentation DstSign = std::numeric_limits<Dst>::is_signed
122 IntegerRepresentation SrcSign = std::numeric_limits<Src>::is_signed

Completed in 346 milliseconds

1234