Searched refs:longVal (Results 1 – 2 of 2) sorted by relevance
/art/test/046-reflect/src/ |
D | Main.java | 251 long longVal; in run() local 253 longVal = field.getLong(instance); in run() 255 Long.toHexString(longVal)); in run() 257 longVal = field.getLong(instance); in run() 259 Long.toHexString(longVal)); in run()
|
/art/runtime/ |
D | debugger.cc | 2719 uint64_t longVal; in GetLocalValue() local 2720 if (!visitor.GetVRegPair(m, vreg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) { in GetLocalValue() 2723 VLOG(jdwp) << "get double local " << vreg << " = " << longVal; in GetLocalValue() 2724 JDWP::Set8BE(buf + 1, longVal); in GetLocalValue() 2729 uint64_t longVal; in GetLocalValue() local 2730 if (!visitor.GetVRegPair(m, vreg, kLongLoVReg, kLongHiVReg, &longVal)) { in GetLocalValue() 2733 VLOG(jdwp) << "get long local " << vreg << " = " << longVal; in GetLocalValue() 2734 JDWP::Set8BE(buf + 1, longVal); in GetLocalValue()
|