Home
last modified time | relevance | path

Searched refs:is_unsigned (Results 1 – 8 of 8) sorted by relevance

/art/compiler/optimizing/
Dloop_optimization.cc229 /*out*/ bool* is_unsigned) { in IsNarrowerOperands() argument
233 *is_unsigned = false; in IsNarrowerOperands()
239 *is_unsigned = true; in IsNarrowerOperands()
249 /*out*/ bool* is_unsigned) { in IsNarrowerOperand() argument
253 *is_unsigned = false; in IsNarrowerOperand()
259 *is_unsigned = true; in IsNarrowerOperand()
1267 bool is_unsigned = false; in VectorizeUse() local
1275 (!IsNarrowerOperand(opa, type, &r, &is_unsigned) || is_unsigned)) { in VectorizeUse()
1278 (!IsNarrowerOperand(opa, type, &r, &is_unsigned) || !is_unsigned)) { in VectorizeUse()
1311 bool is_unsigned = false; in VectorizeUse() local
[all …]
Dloop_optimization.h177 bool is_unsigned = false);
Dnodes_vector.h164 static DataType::Type ToProperType(DataType::Type type, bool is_unsigned) { in ToProperType() argument
165 return is_unsigned ? ToUnsignedType(type) : ToSignedType(type); in ToProperType()
/art/libartbase/base/
Dbit_utils.h48 static_assert(std::is_unsigned<T>::value, "T must be unsigned"); in CLZ()
108 static_assert(std::is_unsigned<T>::value, "T must be unsigned"); in MostSignificantBit()
117 static_assert(std::is_unsigned<T>::value, "T must be unsigned"); in LeastSignificantBit()
130 static_assert(std::is_unsigned<T>::value, "T must be unsigned"); in RoundUpToPowerOfTwo()
139 static_assert(std::is_unsigned<T>::value, "T must be unsigned"); in TruncToPowerOfTwo()
305 DCHECK(std::is_unsigned<T>::value || bits > 0u) << "bits cannot be zero for signed."; in MaxInt()
317 DCHECK(std::is_unsigned<T>::value || bits > 0) << "bits cannot be zero for signed."; in MinInt()
Dbit_utils_iterator.h38 static_assert(std::is_unsigned<T>::value, "T must be unsigned");
Dbit_string.h41 …static_assert(std::is_unsigned<StorageType>::value, "BitStringChar::StorageType must be unsigned");
/art/runtime/mirror/
Dstring-inl.h317 static_assert(std::is_unsigned<MemoryType>::value, "Expecting unsigned MemoryType"); in AllASCII()
/art/runtime/jit/
Dprofile_compilation_info.cc891 static_assert(std::is_unsigned<T>::value, "Type is not unsigned"); in ReadUintAndAdvance()