Searched defs:src_cst (Results 1 - 2 of 2) sorted by relevance

/art/compiler/optimizing/
H A Dcode_generator_mips64.cc646 HConstant* src_cst = source.IsConstant() ? source.GetConstant() : nullptr; local
648 (src_cst != nullptr && (src_cst->IsIntConstant()
649 || src_cst->IsFloatConstant()
650 || src_cst->IsNullConstant()))) {
761 HConstant* src_cst = source.GetConstant(); local
765 int32_t value = GetInt32ValueOf(src_cst->AsConstant());
772 int64_t value = GetInt64ValueOf(src_cst->AsConstant());
H A Dcode_generator_arm64.cc1198 HConstant* src_cst = source.IsConstant() ? source.GetConstant() : nullptr; local
1200 (src_cst != nullptr && (src_cst->IsIntConstant()
1201 || src_cst->IsFloatConstant()
1202 || src_cst->IsNullConstant()))) {
1261 HConstant* src_cst = source.GetConstant(); local
1263 if (src_cst->IsIntConstant() || src_cst->IsNullConstant()) {
1265 } else if (src_cst->IsLongConstant()) {
1267 } else if (src_cst
[all...]

Completed in 29 milliseconds