Home
last modified time | relevance | path

Searched refs:val (Results 226 – 229 of 229) sorted by relevance

12345678910

/art/compiler/optimizing/
Dcode_generator_x86.cc4887 int64_t val = right.GetConstant()->AsLongConstant()->GetValue(); in VisitCompare() local
4888 val_low = Low32Bits(val); in VisitCompare()
4889 val_high = High32Bits(val); in VisitCompare()
6210 int64_t val = value.GetConstant()->AsLongConstant()->GetValue(); in VisitArraySet() local
6212 Immediate(Low32Bits(val))); in VisitArraySet()
6215 Immediate(High32Bits(val))); in VisitArraySet()
Dintrinsics_arm64.cc2909 Register val = InputRegisterAt(invoke, 1); in VisitCRC32Update() local
2922 __ Crc32b(tmp, tmp, val); in VisitCRC32Update()
Dnodes.h8135 int64_t val = 0; in IsInt64Value() local
8136 return IsInt64AndGet(instruction, &val) && val == value; in IsInt64Value()
/art/runtime/
Dclass_linker.cc7216 ObjPtr<mirror::Class> val) in NotSubinterfaceOfAny() argument
7219 DCHECK(val != nullptr); in NotSubinterfaceOfAny()
7221 if (val->IsAssignableFrom(c)) { in NotSubinterfaceOfAny()
7500 static size_t HashCombine(size_t seed, size_t val) { in CheckVTableHasNoDuplicates()
7501 return seed ^ (val + 0x9e3779b9 + (seed << 6) + (seed >> 2)); in CheckVTableHasNoDuplicates()

12345678910