Searched refs:is_unsigned (Results 1 – 6 of 6) sorted by relevance
142 template <typename T> using is_unsigned = std::is_unsigned<T>; variable155 template <typename T> using is_unsigned = std::tr1::is_unsigned<T>; variable159 static_assert(is_unsigned<T>::value, "Specialization not implemented!");179 template <typename T> struct is_unsigned : public std::is_unsigned<T> {};
348 *val = static_cast<T>(flatbuffers::is_unsigned<T>::value ? max : min); in StringToNumber()
1400 : (flatbuffers::is_unsigned<T>::value ? FBT_UINT in GetScalarType()
265 STATIC int typecode_for_comparison(int typecode, bool *is_unsigned) { in typecode_for_comparison() argument271 *is_unsigned = true; in typecode_for_comparison()348 bool is_unsigned = false; in array_binary_op() local349 const int lhs_code = typecode_for_comparison(lhs_bufinfo.typecode, &is_unsigned); in array_binary_op()350 const int rhs_code = typecode_for_comparison(rhs_bufinfo.typecode, &is_unsigned); in array_binary_op()351 …e == rhs_code && lhs_code != 'f' && lhs_code != 'd' && (op == MP_BINARY_OP_EQUAL || is_unsigned)) { in array_binary_op()
71 typename std::enable_if<std::is_unsigned<T>::value, T>::type
231 static_assert(std::is_unsigned<T>::value, in CountLeadingZeros()
Completed in 19 milliseconds