HomeSort by relevance Sort by last modified time
    Searched full:is_signed (Results 1 - 25 of 163) sorted by null

1 2 3 4 5 6 7

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.limits/limits/numeric.limits.members/
is_signed.pass.cpp 12 // 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");
min.pass.cpp 25 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);
digits.pass.cpp 30 test<char, std::numeric_limits<char>::is_signed ? 7 : 8>();
33 test<wchar_t, std::numeric_limits<wchar_t>::is_signed ? 31 : 32>();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
is_signed.pass.cpp 12 // 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, "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
stdint_h.pass.cpp 25 static_assert(std::is_signed<int8_t>::value,
26 "std::is_signed<int8_t>::value");
30 static_assert(std::is_signed<int16_t>::value,
31 "std::is_signed<int16_t>::value");
35 static_assert(std::is_signed<int32_t>::value,
36 "std::is_signed<int32_t>::value");
40 static_assert(std::is_signed<int64_t>::value,
41 "std::is_signed<int64_t>::value");
67 static_assert(std::is_signed<int_least8_t>::value,
68 "std::is_signed<int_least8_t>::value")
    [all...]
stddef_h.pass.cpp 33 static_assert(std::is_signed<ptrdiff_t>::value,
34 "std::is_signed<ptrdiff_t>::value");
  /sdk/emulator/qtools/
decoder.h 13 int64_t Decode(bool is_signed);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/cstdint/cstdint.syn/
cstdint.pass.cpp 25 static_assert(std::is_signed<std::int8_t>::value,
26 "std::is_signed<std::int8_t>::value");
30 static_assert(std::is_signed<std::int16_t>::value,
31 "std::is_signed<std::int16_t>::value");
35 static_assert(std::is_signed<std::int32_t>::value,
36 "std::is_signed<std::int32_t>::value");
40 static_assert(std::is_signed<std::int64_t>::value,
41 "std::is_signed<std::int64_t>::value");
67 static_assert(std::is_signed<std::int_least8_t>::value,
68 "std::is_signed<std::int_least8_t>::value")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
longobject.h 85 If is_signed is 0/false, view the bytes as a non-negative integer.
86 If is_signed is 1/true, view the bytes as a 2's-complement integer,
94 int little_endian, int is_signed);
102 If is_signed is 0/false, it's an error if v < 0; else (v >= 0) n bytes
104 If is_signed is 1/true, bytes is filled with the 2's-complement
107 + is_signed is 0 and v < 0. TypeError is set in this case, and bytes
110 example, if is_signed is 0 and there are more digits in the v than
111 fit in n; or if is_signed is 1, v < 0, and n is just 1 bit shy of
117 int little_endian, int is_signed);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
longobject.h 85 If is_signed is 0/false, view the bytes as a non-negative integer.
86 If is_signed is 1/true, view the bytes as a 2's-complement integer,
94 int little_endian, int is_signed);
102 If is_signed is 0/false, it's an error if v < 0; else (v >= 0) n bytes
104 If is_signed is 1/true, bytes is filled with the 2's-complement
107 + is_signed is 0 and v < 0. TypeError is set in this case, and bytes
110 example, if is_signed is 0 and there are more digits in the v than
111 fit in n; or if is_signed is 1, v < 0, and n is just 1 bit shy of
117 int little_endian, int is_signed);
  /external/stlport/test/unit/
limits_test.cpp 70 bool test_integral_limits_base(const _Tp &, bool unknown_sign = true, bool is_signed = true) {
78 CHECK_COND((unknown_sign && ((lim::is_signed && (lim::min() != 0)) || (!lim::is_signed && (lim::min() == 0)))) ||
79 (!unknown_sign && ((lim::is_signed && is_signed) || (!lim::is_signed && !is_signed))));
82 CHECK_COND(valid_sign_info(lim::is_signed, _Tp()));
88 bool test_integral_limits(const _Tp &val, bool unknown_sign = true, bool is_signed = true) {
89 if (!test_integral_limits_base(val, unknown_sign, is_signed))
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
limits_test.cpp 70 bool test_integral_limits_base(const _Tp &, bool unknown_sign = true, bool is_signed = true) {
78 CHECK_COND((unknown_sign && ((lim::is_signed && (lim::min() != 0)) || (!lim::is_signed && (lim::min() == 0)))) ||
79 (!unknown_sign && ((lim::is_signed && is_signed) || (!lim::is_signed && !is_signed))));
82 CHECK_COND(valid_sign_info(lim::is_signed, _Tp()));
88 bool test_integral_limits(const _Tp &val, bool unknown_sign = true, bool is_signed = true) {
89 if (!test_integral_limits_base(val, unknown_sign, is_signed))
    [all...]
  /ndk/tests/device/test-stlport/unit/
limits_test.cpp 70 bool test_integral_limits_base(const _Tp &, bool unknown_sign = true, bool is_signed = true) {
78 CHECK_COND((unknown_sign && ((lim::is_signed && (lim::min() != 0)) || (!lim::is_signed && (lim::min() == 0)))) ||
79 (!unknown_sign && ((lim::is_signed && is_signed) || (!lim::is_signed && !is_signed))));
82 CHECK_COND(valid_sign_info(lim::is_signed, _Tp()));
88 bool test_integral_limits(const _Tp &val, bool unknown_sign = true, bool is_signed = true) {
89 if (!test_integral_limits_base(val, unknown_sign, is_signed))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.types/
ptrdiff_t.pass.cpp 23 static_assert(std::is_signed<std::ptrdiff_t>::value,
24 "std::is_signed<std::ptrdiff_t>::value");
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/detail/
sign_mixture.hpp 38 typedef mpl::bool_< ::std::numeric_limits<S>::is_signed > S_signed ;
39 typedef mpl::bool_< ::std::numeric_limits<T>::is_signed > T_signed ;
  /external/chromium_org/google_apis/gaia/
oauth_request_signer.cc 274 bool is_signed = false; local
278 is_signed = SignHmacSha1(base, key, &signature);
281 is_signed = SignRsaSha1(base, key, &signature);
284 is_signed = SignPlaintext(base, key, &signature);
289 if (is_signed)
291 return is_signed;
404 bool is_signed = SignParameters(request_base_url, signature_method, local
407 if (is_signed) {
421 return is_signed;
437 bool is_signed = SignParameters(request_base_url, signature_method local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
limits 32 static constexpr bool is_signed = false;
150 static _LIBCPP_CONSTEXPR const bool is_signed = false;
181 template <class _Tp, int digits, bool is_signed>
201 static _LIBCPP_CONSTEXPR const bool is_signed = type(-1) < type(0);
202 static _LIBCPP_CONSTEXPR const int digits = static_cast<int>(sizeof(type) * __CHAR_BIT__ - is_signed);
205 static _LIBCPP_CONSTEXPR const type __min = __libcpp_compute_min<type, digits, is_signed>::value;
206 static _LIBCPP_CONSTEXPR const type __max = is_signed ? type(type(~0) ^ __min) : type(~0);
253 static _LIBCPP_CONSTEXPR const bool is_signed = false;
301 static _LIBCPP_CONSTEXPR const bool is_signed = true;
347 static _LIBCPP_CONSTEXPR const bool is_signed = true
    [all...]
  /external/eigen/test/
integer_types.cpp 24 enum { is_signed = (Scalar(-1) > Scalar(0)) ? 0 : 1 }; enumerator in enum:__anon17989
25 VERIFY(is_signed == 1);
56 enum { is_signed = (Scalar(-1) > Scalar(0)) ? 0 : 1 }; enumerator in enum:__anon17990
57 VERIFY(int(NumTraits<Scalar>::IsSigned) == is_signed);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.ios.members/
streamoff.pass.cpp 24 static_assert((std::is_signed<std::ios_base::streamoff>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/stream.types/
streamoff.pass.cpp 20 static_assert(std::is_signed<std::streamoff>::value, "");
streamsize.pass.cpp 20 static_assert(std::is_signed<std::streamsize>::value, "");
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/
limits 212 static _GLIBCXX_USE_CONSTEXPR bool is_signed = false;
390 static _GLIBCXX_USE_CONSTEXPR bool is_signed = false;
460 static _GLIBCXX_USE_CONSTEXPR bool is_signed = __glibcxx_signed (char);
497 static _GLIBCXX_USE_CONSTEXPR bool is_modulo = !is_signed;
528 static _GLIBCXX_USE_CONSTEXPR bool is_signed = true;
599 static _GLIBCXX_USE_CONSTEXPR bool is_signed = false;
671 static _GLIBCXX_USE_CONSTEXPR bool is_signed = __glibcxx_signed (wchar_t);
708 static _GLIBCXX_USE_CONSTEXPR bool is_modulo = !is_signed;
735 static constexpr bool is_signed = __glibcxx_signed (char16_t);
771 static constexpr bool is_modulo = !is_signed;
    [all...]
  /external/chromium_org/base/
safe_numerics.h 114 DestLimits::is_signed,
115 SourceLimits::is_signed>::Test(
  /external/chromium_org/chrome/browser/net/gaia/
gaia_oauth_fetcher.cc 107 bool is_signed = OAuthRequestSigner::SignURL( local
117 DCHECK(is_signed);
126 bool is_signed = OAuthRequestSigner::SignURL( local
136 DCHECK(is_signed);
150 bool is_signed = OAuthRequestSigner::SignURL( local
160 DCHECK(is_signed);
359 bool is_signed = OAuthRequestSigner::SignAuthHeader( local
369 DCHECK(is_signed);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
limits.hpp 58 BOOST_STATIC_CONSTANT(bool, is_signed = true);
111 BOOST_STATIC_CONSTANT(bool, is_signed = false);

Completed in 702 milliseconds

1 2 3 4 5 6 7