HomeSort by relevance Sort by last modified time
    Searched full:is_signed (Results 51 - 75 of 286) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
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...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/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...]
  /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);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
is_signed.hpp 131 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_signed,T,__is_signed(T))
133 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_signed,T,::boost::detail::is_signed_imp<T>::value)
  /toolchain/binutils/binutils-2.25/opcodes/
mips-formats.h 122 #define PCREL(SIZE, LSB, IS_SIGNED, SHIFT, ALIGN_LOG2, INCLUDE_ISA_BIT, \
127 (1 << ((SIZE) - (IS_SIGNED))) - 1, 0, SHIFT, TRUE }, \
  /external/libcxx/test/std/utilities/time/
hours.pass.cpp 23 static_assert(std::is_signed<Rep>::value, "");
microseconds.pass.cpp 23 static_assert(std::is_signed<Rep>::value, "");
milliseconds.pass.cpp 23 static_assert(std::is_signed<Rep>::value, "");
minutes.pass.cpp 23 static_assert(std::is_signed<Rep>::value, "");
nanoseconds.pass.cpp 23 static_assert(std::is_signed<Rep>::value, "");
seconds.pass.cpp 23 static_assert(std::is_signed<Rep>::value, "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/
hours.pass.cpp 23 static_assert(std::is_signed<Rep>::value, "");
microseconds.pass.cpp 23 static_assert(std::is_signed<Rep>::value, "");
milliseconds.pass.cpp 23 static_assert(std::is_signed<Rep>::value, "");
minutes.pass.cpp 23 static_assert(std::is_signed<Rep>::value, "");
nanoseconds.pass.cpp 23 static_assert(std::is_signed<Rep>::value, "");
seconds.pass.cpp 23 static_assert(std::is_signed<Rep>::value, "");
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/devnode_parser/
iio_utils.h 66 * @is_signed: is the raw value stored signed
80 unsigned is_signed; member in struct:iio_channel_info
87 * @is_signed: output whether channel is signed
95 inline int iioutils_get_type(unsigned *is_signed,
171 *is_signed = 1;
173 *is_signed = 0;
405 ret = iioutils_get_type(&current->is_signed,
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/mpu_iio/
iio_utils.h 66 * @is_signed: is the raw value stored signed
80 unsigned is_signed; member in struct:iio_channel_info
87 * @is_signed: output whether channel is signed
95 inline int iioutils_get_type(unsigned *is_signed,
171 *is_signed = 1;
173 *is_signed = 0;
405 ret = iioutils_get_type(&current->is_signed,
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/stress_iio/
iio_utils.h 64 * @is_signed: is the raw value stored signed
78 unsigned is_signed; member in struct:iio_channel_info
85 * @is_signed: output whether channel is signed
93 inline int iioutils_get_type(unsigned *is_signed,
169 *is_signed = 1;
171 *is_signed = 0;
404 ret = iioutils_get_type(&current->is_signed,
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
byte_io.h 68 // T = type of integer, B = bytes to read, is_signed = true if signed integer.
69 // If is_signed is true and B < sizeof(T), sign extension might be needed.
72 bool is_signed = std::numeric_limits<T>::is_signed>
174 bool is_signed = std::numeric_limits<T>::is_signed>
  /ndk/sources/cxx-stl/stlport/stlport/
type_traits 553 struct is_signed :
557 __CV_SPEC(is_signed,signed char,true);
558 __CV_SPEC(is_signed,short,true);
559 __CV_SPEC(is_signed,int,true);
560 __CV_SPEC(is_signed,long,true);
561 __CV_SPEC(is_signed,long long,true);
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/
type_traits 553 struct is_signed :
557 __CV_SPEC(is_signed,signed char,true);
558 __CV_SPEC(is_signed,short,true);
559 __CV_SPEC(is_signed,int,true);
560 __CV_SPEC(is_signed,long,true);
561 __CV_SPEC(is_signed,long long,true);
  /external/vulkan-validation-layers/libs/glm/gtx/
multiple.inl 62 detail::higherMultiple<std::numeric_limits<genType>::is_signed> Compute;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_limits.c 43 __declare_numeric_base_member(bool, is_signed);
72 __declare_integer_limits_member(bool, is_signed);
88 _STLP_TEMPLATE_NULL const bool numeric_limits<__integer>::is_signed; \
118 __declare_float_limits_member(bool, is_signed);

Completed in 2127 milliseconds

1 23 4 5 6 7 8 91011>>