Searched refs:is_unsigned (Results 1 – 7 of 7) sorted by relevance
/art/libartbase/base/ |
D | bit_utils.h | 49 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()
|
D | bit_utils_iterator.h | 38 static_assert(std::is_unsigned<T>::value, "T must be unsigned");
|
D | bit_string.h | 41 …static_assert(std::is_unsigned<StorageType>::value, "BitStringChar::StorageType must be unsigned");
|
/art/compiler/optimizing/ |
D | loop_optimization.cc | 226 /*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 …]
|
D | nodes_vector.h | 160 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/ |
D | string-inl.h | 89 static_assert(std::is_unsigned<MemoryType>::value, "Expecting unsigned MemoryType"); in AllASCII()
|
/art/libprofile/profile/ |
D | profile_compilation_info.cc | 954 static_assert(std::is_unsigned<T>::value, "Type is not unsigned"); in ReadUintAndAdvance()
|