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 | 2706 uint64_t longVal; in GetLocalValue() local 2707 if (!visitor.GetVRegPair(m, vreg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) { in GetLocalValue() 2710 VLOG(jdwp) << "get double local " << vreg << " = " << longVal; in GetLocalValue() 2711 JDWP::Set8BE(buf + 1, longVal); in GetLocalValue() 2716 uint64_t longVal; in GetLocalValue() local 2717 if (!visitor.GetVRegPair(m, vreg, kLongLoVReg, kLongHiVReg, &longVal)) { in GetLocalValue() 2720 VLOG(jdwp) << "get long local " << vreg << " = " << longVal; in GetLocalValue() 2721 JDWP::Set8BE(buf + 1, longVal); in GetLocalValue()
|