HomeSort by relevance Sort by last modified time
    Searched defs:is_signed (Results 1 - 8 of 8) sorted by null

  /external/eigen/test/
integer_types.cpp 24 enum { is_signed = (Scalar(-1) > Scalar(0)) ? 0 : 1 }; enumerator in enum:__anon7775
25 VERIFY(is_signed == 1);
56 enum { is_signed = (Scalar(-1) > Scalar(0)) ? 0 : 1 }; enumerator in enum:__anon7776
57 VERIFY(int(NumTraits<Scalar>::IsSigned) == is_signed);
  /frameworks/compile/mclinker/lib/LD/
EhFrameHdr.cpp 190 bool is_signed = (fde_encoding & llvm::dwarf::DW_EH_PE_signed) != 0x0; local
191 if (DW_EH_PE_udata2 == eh_value && is_signed)
  /external/webkit/Source/WebCore/html/canvas/
CheckedInt.h 112 template<int size, bool is_signed>
137 is_signed = (T(-1) > T(0)) ? 0 : 1 enumerator in enum:WebCore::CheckedInt_internal::integer_type_manually_recorded_info::__anon17751
139 typedef typename explicitly_sized_integer_type<size, is_signed>::type explicit_sized_type;
174 is_signed = (T(-1) > T(0)) ? 0 : 1 enumerator in enum:WebCore::CheckedInt_internal::integer_traits::__anon17754
180 return is_signed ? T(T(1) << position_of_sign_bit) : T(0);
206 bool is_T_signed = integer_traits<T>::is_signed,
207 bool is_U_signed = integer_traits<U>::is_signed>
260 return integer_traits<T>::is_signed ?
271 return integer_traits<T>::is_signed ?
279 bool is_signed = integer_traits<T>::is_signed
    [all...]
  /hardware/invensense/libsensors_iio/software/simple_apps/mpu_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,
  /bionic/libc/bionic/
libc_logging.cpp 193 int is_signed = (conversion == 'd' || conversion == 'i' || conversion == 'o'); local
202 if (is_signed && static_cast<int64_t>(value) < 0) {
354 int is_signed = (c == 'd' || c == 'i' || c == 'o'); local
368 if (is_signed) {
  /dalvik/vm/compiler/codegen/x86/libenc/
encoder.h 301 bool is_signed() const { return tag == SignedImm; } function in class:Imm_Opnd
  /external/qemu/tcg/
tcg.c 609 int is_signed = sizemask & (2 << (i+1)*2); local
613 if (is_signed) {
    [all...]
  /external/clang/test/SemaCXX/
type-traits.cpp 1101 void is_signed() function
    [all...]

Completed in 1684 milliseconds