Searched refs:val (Results 1 - 25 of 64) sorted by relevance

123

/art/test/434-invoke-direct/src/
H A DInvokeDirectSuper.java18 public int val; field in class:InvokeDirectSuper
21 return val;
/art/test/435-new-instance/src/
H A DTestClass.java19 public int val; field in class:TestClass
/art/test/542-inline-trycatch/src/
H A DMain.java48 int val = 0;
51 val = $inline$SingleBlock("42");
55 assertEquals(42, val);
64 int val = 0;
69 val = $inline$SingleBlock("42");
71 assertEquals(42, val);
75 int val = 0;
78 val = $inline$MultipleBlocks("42", false);
82 assertEquals(42, val);
85 val
[all...]
/art/test/084-class-init/src/
H A DIntHolder.java38 public void setValue(int val) { argument
39 mValue = val;
/art/runtime/
H A Doffsets.h29 explicit Offset(size_t val) : val_(val) {} argument
48 explicit FrameOffset(size_t val) : Offset(val) {} argument
57 explicit ThreadOffset(size_t val) : Offset(val) {} argument
63 explicit MemberOffset(size_t val) : Offset(val) {} argument
H A Dmonitor_android.cc30 static void Set4LE(uint8_t* buf, uint32_t val) { argument
31 *buf++ = (uint8_t)(val);
32 *buf++ = (uint8_t)(val >> 8);
33 *buf++ = (uint8_t)(val >> 16);
34 *buf = (uint8_t)(val >> 24);
H A Dstack.cc218 uint32_t* val) const {
227 *val = static_cast<uint32_t>(reinterpret_cast<uintptr_t>(
230 *val = shadow_frame->GetVReg(vreg);
239 bool StackVisitor::GetVReg(ArtMethod* m, uint16_t vreg, VRegKind kind, uint32_t* val) const {
244 if (GetVRegFromDebuggerShadowFrame(vreg, kind, val)) {
248 return GetVRegFromOptimizedCode(m, vreg, kind, val);
252 *val = static_cast<uint32_t>(reinterpret_cast<uintptr_t>(
255 *val = cur_shadow_frame_->GetVReg(vreg);
262 uint32_t* val) const {
297 *val
[all...]
H A Dstack.h263 void SetVReg(size_t i, int32_t val) { argument
266 *reinterpret_cast<int32_t*>(vreg) = val;
274 void SetVRegFloat(size_t i, float val) { argument
277 *reinterpret_cast<float*>(vreg) = val;
285 void SetVRegLong(size_t i, int64_t val) { argument
290 *reinterpret_cast<unaligned_int64*>(vreg) = val;
299 void SetVRegDouble(size_t i, double val) { argument
304 *reinterpret_cast<unaligned_double*>(vreg) = val;
314 void SetVRegReference(size_t i, mirror::Object* val) SHARED_REQUIRES(Locks::mutator_lock_) {
317 VerifyObject(val);
[all...]
/art/test/025-access-controller/src/
H A DPrivvy.java25 public Privvy(int val) { argument
26 mValue = new Integer(val + 1);
/art/test/430-live-register-slow-path/src/
H A DMain.java34 public static boolean doCall(boolean val, Object o) { return val; } argument
/art/test/543-checker-dce-trycatch/src/
H A DMain.java47 public static void testDeadTryCatch(boolean val) { argument
50 if (val) {
/art/runtime/jdwp/
H A Djdwp_bits.h70 static inline void Set1(uint8_t* buf, uint8_t val) { argument
71 *buf = val;
75 static inline void Set2BE(uint8_t* buf, uint16_t val) { argument
76 *buf++ = (uint8_t)(val >> 8);
77 *buf = (uint8_t)(val);
81 static inline void Set4BE(uint8_t* buf, uint32_t val) { argument
82 *buf++ = (uint8_t)(val >> 24);
83 *buf++ = (uint8_t)(val >> 16);
84 *buf++ = (uint8_t)(val >> 8);
85 *buf = (uint8_t)(val);
89 Set8BE(uint8_t* buf, uint64_t val) argument
[all...]
H A Djdwp_expand_buf.h58 void expandBufAdd1(ExpandBuf* pBuf, uint8_t val);
59 void expandBufAdd2BE(ExpandBuf* pBuf, uint16_t val);
60 void expandBufAdd4BE(ExpandBuf* pBuf, uint32_t val);
61 void expandBufAdd8BE(ExpandBuf* pBuf, uint64_t val);
H A Djdwp_expand_buf.cc120 void expandBufAdd1(ExpandBuf* pBuf, uint8_t val) { argument
121 ensureSpace(pBuf, sizeof(val));
122 *(pBuf->storage + pBuf->curLen) = val;
129 void expandBufAdd2BE(ExpandBuf* pBuf, uint16_t val) { argument
130 ensureSpace(pBuf, sizeof(val));
131 Set2BE(pBuf->storage + pBuf->curLen, val);
132 pBuf->curLen += sizeof(val);
138 void expandBufAdd4BE(ExpandBuf* pBuf, uint32_t val) { argument
139 ensureSpace(pBuf, sizeof(val));
140 Set4BE(pBuf->storage + pBuf->curLen, val);
147 expandBufAdd8BE(ExpandBuf* pBuf, uint64_t val) argument
[all...]
H A Djdwp.h65 static inline void SetFieldId(uint8_t* buf, FieldId val) { return Set8BE(buf, val); } argument
66 static inline void SetMethodId(uint8_t* buf, MethodId val) { return Set8BE(buf, val); } argument
67 static inline void SetObjectId(uint8_t* buf, ObjectId val) { return Set8BE(buf, val); } argument
68 static inline void SetRefTypeId(uint8_t* buf, RefTypeId val) { return Set8BE(buf, val); } argument
69 static inline void SetFrameId(uint8_t* buf, FrameId val) { return Set8BE(buf, val); } argument
[all...]
/art/runtime/arch/x86_64/
H A Dthread_x86_64.cc33 static void arch_prctl(int code, void* val) { argument
34 syscall(__NR_arch_prctl, code, val);
/art/tools/
H A Dstream-trace-converter.py38 def WriteShortLE(f, val):
39 bytes = [ (val & 0xFF), ((val >> 8) & 0xFF) ]
58 def WriteIntLE(f, val):
59 bytes = [ (val & 0xFF), ((val >> 8) & 0xFF), ((val >> 16) & 0xFF), ((val >> 24) & 0xFF) ]
/art/tools/ahat/src/
H A DValue.java100 public static DocString render(AhatSnapshot snapshot, Object val) { argument
101 if (val instanceof Instance) {
102 return renderInstance(snapshot, (Instance)val);
104 return DocString.format("%s", val);
H A DSite.java132 Long val = mSizesByHeap.get(heap);
133 if (val == null) {
136 return val;
154 for (Long val : mSizesByHeap.values()) {
155 size += val;
/art/test/003-omnibus-opcodes/src/
H A DMethodCall.java28 int val = super.tryThing();
29 Main.assertTrue(val == 7);
30 return val;
/art/tools/dmtracedump/
H A Dcreatetesttrace.cc306 void write2LE(FILE* fp, uint16_t val) { argument
307 putc(val & 0xff, fp);
308 putc(val >> 8, fp);
311 void write4LE(FILE* fp, uint32_t val) { argument
312 putc(val & 0xff, fp);
313 putc((val >> 8) & 0xff, fp);
314 putc((val >> 16) & 0xff, fp);
315 putc((val >> 24) & 0xff, fp);
318 void write8LE(FILE* fp, uint64_t val) { argument
319 putc(val
392 uint32_t val = METHOD_COMBINE(pRecord->methodId, pRecord->action); local
[all...]
/art/runtime/base/
H A Dhistogram-inl.h88 template <class Value> inline size_t Histogram<Value>::FindBucket(Value val) const {
91 DCHECK_GE(val, min_);
92 DCHECK_LE(val, max_);
93 const size_t bucket_idx = static_cast<size_t>((val - min_) / bucket_width_);
100 inline void Histogram<Value>::BucketiseValue(Value val) { argument
101 CHECK_LT(val, max_);
102 sum_ += val;
103 sum_of_squares_ += val * val;
105 ++frequency_[FindBucket(val)];
[all...]
H A Dhistogram.h98 size_t FindBucket(Value val) const;
99 void BucketiseValue(Value val);
102 void GrowBuckets(Value val);
/art/test/028-array-write/src/
H A DMain.java36 static void writeArray(int val) { argument
38 mStorage[i] = val;
/art/runtime/verifier/
H A Dreg_type.cc66 uint32_t val = ConstantValue(); local
67 if (val == 0) {
73 result << StringPrintf("Constant: %d", val);
75 result << StringPrintf("Constant: 0x%x", val);
383 uint32_t val = ConstantValue(); local
384 if (val == 0) {
389 result << StringPrintf("Constant: %d", val);
391 result << StringPrintf("Constant: 0x%x", val);
399 int32_t val = ConstantValueLo(); local
401 if (val >
413 int32_t val = ConstantValueLo(); local
426 int32_t val = ConstantValueHi(); local
439 int32_t val = ConstantValueHi(); local
[all...]

Completed in 710 milliseconds

123