Home
last modified time | relevance | path

Searched refs:longVal (Results 1 – 2 of 2) sorted by relevance

/art/test/046-reflect/src/
DMain.java236 long longVal; in run() local
238 longVal = field.getLong(instance); in run()
240 Long.toHexString(longVal)); in run()
242 longVal = field.getLong(instance); in run()
244 Long.toHexString(longVal)); in run()
/art/runtime/
Ddebugger.cc2575 uint64_t longVal; in GetLocalValue() local
2576 if (GetVRegPair(m, reg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) { in GetLocalValue()
2577 VLOG(jdwp) << "get double local " << reg << " = " << longVal; in GetLocalValue()
2578 JDWP::Set8BE(buf_+1, longVal); in GetLocalValue()
2587 uint64_t longVal; in GetLocalValue() local
2588 if (GetVRegPair(m, reg, kLongLoVReg, kLongHiVReg, &longVal)) { in GetLocalValue()
2589 VLOG(jdwp) << "get long local " << reg << " = " << longVal; in GetLocalValue()
2590 JDWP::Set8BE(buf_+1, longVal); in GetLocalValue()