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 | 2713 uint64_t longVal; in GetLocalValue() local 2714 if (!visitor.GetVRegPair(m, vreg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) { in GetLocalValue() 2717 VLOG(jdwp) << "get double local " << vreg << " = " << longVal; in GetLocalValue() 2718 JDWP::Set8BE(buf + 1, longVal); in GetLocalValue() 2723 uint64_t longVal; in GetLocalValue() local 2724 if (!visitor.GetVRegPair(m, vreg, kLongLoVReg, kLongHiVReg, &longVal)) { in GetLocalValue() 2727 VLOG(jdwp) << "get long local " << vreg << " = " << longVal; in GetLocalValue() 2728 JDWP::Set8BE(buf + 1, longVal); in GetLocalValue()
|