Home
last modified time | relevance | path

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

/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()
1606 bool is_unsigned = false; in VectorizeUse() local
1614 (!IsNarrowerOperand(opa, type, &r, &is_unsigned) || is_unsigned)) { in VectorizeUse()
1617 (!IsNarrowerOperand(opa, type, &r, &is_unsigned) || !is_unsigned)) { in VectorizeUse()
1643 bool is_unsigned = false; in VectorizeUse() local
[all …]
Dnodes_vector.h224 static DataType::Type ToProperType(DataType::Type type, bool is_unsigned) { in ToProperType() argument
225 return is_unsigned ? ToUnsignedType(type) : ToSignedType(type); in ToProperType()
/art/runtime/mirror/
Dstring-inl.h96 static_assert(std::is_unsigned<MemoryType>::value, "Expecting unsigned MemoryType"); in AllASCII()
/art/libprofile/profile/
Dprofile_compilation_info.cc433 static_assert(std::is_unsigned<T>::value, "Type is not unsigned"); in ReadUintAndAdvance()