Home
last modified time | relevance | path

Searched refs:is_unsigned (Results 1 – 8 of 8) 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");
Dbit_memory_region.h111 static_assert(std::is_unsigned<Result>::value, "Result must be unsigned"); in LoadBits()
/art/compiler/optimizing/
Dloop_optimization.cc225 /*out*/ bool* is_unsigned) { in IsNarrowerOperands() argument
230 *is_unsigned = false; in IsNarrowerOperands()
236 *is_unsigned = true; in IsNarrowerOperands()
246 /*out*/ bool* is_unsigned) { in IsNarrowerOperand() argument
251 *is_unsigned = false; in IsNarrowerOperand()
257 *is_unsigned = true; in IsNarrowerOperand()
1479 bool is_unsigned = false; in VectorizeUse() local
1487 (!IsNarrowerOperand(opa, type, &r, &is_unsigned) || is_unsigned)) { in VectorizeUse()
1490 (!IsNarrowerOperand(opa, type, &r, &is_unsigned) || !is_unsigned)) { in VectorizeUse()
1516 bool is_unsigned = false; in VectorizeUse() local
[all …]
Dnodes_vector.h215 static DataType::Type ToProperType(DataType::Type type, bool is_unsigned) { in ToProperType() argument
216 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.cc907 static_assert(std::is_unsigned<T>::value, "Type is not unsigned"); in ReadUintAndAdvance()