Home
last modified time | relevance | path

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

/art/libartbase/base/
Dbit_utils.h49 static_assert(std::is_unsigned<T>::value, "T must be unsigned"); in CLZ()
109 static_assert(std::is_unsigned<T>::value, "T must be unsigned"); in MostSignificantBit()
118 static_assert(std::is_unsigned<T>::value, "T must be unsigned"); in LeastSignificantBit()
131 static_assert(std::is_unsigned<T>::value, "T must be unsigned"); in RoundUpToPowerOfTwo()
140 static_assert(std::is_unsigned<T>::value, "T must be unsigned"); in TruncToPowerOfTwo()
306 DCHECK(std::is_unsigned<T>::value || bits > 0u) << "bits cannot be zero for signed."; in MaxInt()
318 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/compiler/optimizing/
Dloop_optimization.cc226 /*out*/ bool* is_unsigned) { in IsNarrowerOperands() argument
231 *is_unsigned = false; in IsNarrowerOperands()
237 *is_unsigned = true; in IsNarrowerOperands()
247 /*out*/ bool* is_unsigned) { in IsNarrowerOperand() argument
252 *is_unsigned = false; in IsNarrowerOperand()
258 *is_unsigned = true; in IsNarrowerOperand()
1474 bool is_unsigned = false; in VectorizeUse() local
1482 (!IsNarrowerOperand(opa, type, &r, &is_unsigned) || is_unsigned)) { in VectorizeUse()
1485 (!IsNarrowerOperand(opa, type, &r, &is_unsigned) || !is_unsigned)) { in VectorizeUse()
1511 bool is_unsigned = false; in VectorizeUse() local
[all …]
Dnodes_vector.h160 static DataType::Type ToProperType(DataType::Type type, bool is_unsigned) { in ToProperType() argument
161 return is_unsigned ? ToUnsignedType(type) : ToSignedType(type); in ToProperType()
/art/runtime/mirror/
Dstring-inl.h89 static_assert(std::is_unsigned<MemoryType>::value, "Expecting unsigned MemoryType"); in AllASCII()
/art/libprofile/profile/
Dprofile_compilation_info.cc954 static_assert(std::is_unsigned<T>::value, "Type is not unsigned"); in ReadUintAndAdvance()