Searched refs:val (Results 1 - 25 of 57) 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/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.h175 void SetVReg(size_t i, int32_t val) { argument
178 *reinterpret_cast<int32_t*>(vreg) = val;
186 void SetVRegFloat(size_t i, float val) { argument
189 *reinterpret_cast<float*>(vreg) = val;
197 void SetVRegLong(size_t i, int64_t val) { argument
202 *reinterpret_cast<unaligned_int64*>(vreg) = val;
211 void SetVRegDouble(size_t i, double val) { argument
216 *reinterpret_cast<unaligned_double*>(vreg) = val;
226 void SetVRegReference(size_t i, mirror::Object* val) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
229 VerifyObject(val);
[all...]
H A Dstack.cc191 bool StackVisitor::GetVReg(ArtMethod* m, uint16_t vreg, VRegKind kind, uint32_t* val) const {
196 return GetVRegFromOptimizedCode(m, vreg, kind, val);
198 return GetVRegFromQuickCode(m, vreg, kind, val);
202 *val = cur_shadow_frame_->GetVReg(vreg);
208 uint32_t* val) const {
219 return GetRegisterIfAccessible(reg, kind, val);
224 *val = *GetVRegAddrFromQuickCode(cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
231 uint32_t* val) const {
251 *val = *reinterpret_cast<const uint32_t*>(addr);
257 return GetRegisterIfAccessible(reg, kind, val);
[all...]
H A Ddex_file.cc1132 int32_t val = 0; local
1134 val = ((uint32_t)val >> 8) | (((int32_t)*ptr++) << 24);
1136 val >>= (3 - zwidth) * 8;
1137 return val;
1143 uint32_t val = 0; local
1146 val = (val >> 8) | (((uint32_t)*ptr++) << 24);
1148 val >>= (3 - zwidth) * 8;
1151 val
1159 int64_t val = 0; local
1170 uint64_t val = 0; local
[all...]
H A Ddex_instruction.h412 void SetVRegA_10x(uint8_t val) { argument
415 insns[0] = (val << 8) | (insns[0] & 0x00ff);
418 void SetVRegB_3rc(uint16_t val) { argument
421 insns[1] = val;
424 void SetVRegB_35c(uint16_t val) { argument
427 insns[1] = val;
430 void SetVRegC_22c(uint16_t val) { argument
433 insns[1] = val;
/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/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/test/003-omnibus-opcodes/src/
H A DMethodCall.java28 int val = super.tryThing();
29 Main.assertTrue(val == 7);
30 return val;
/art/runtime/base/
H A Dhistogram-inl.h87 template <class Value> inline size_t Histogram<Value>::FindBucket(Value val) const {
90 DCHECK_GE(val, min_);
91 DCHECK_LE(val, max_);
92 const size_t bucket_idx = static_cast<size_t>((val - min_) / bucket_width_);
99 inline void Histogram<Value>::BucketiseValue(Value val) { argument
100 CHECK_LT(val, max_);
101 sum_ += val;
102 sum_of_squares_ += val * val;
104 ++frequency_[FindBucket(val)];
[all...]
H A Dhistogram.h93 size_t FindBucket(Value val) const;
94 void BucketiseValue(Value val);
97 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/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc680 jvalue val; local
686 val.l = soa_->AddLocalReference<jobject>(stack_ref->AsMirrorPtr());
687 references_.push_back(std::make_pair(val.l, stack_ref));
693 val.j = ReadSplitLongParam();
695 val.j = *reinterpret_cast<jlong*>(GetParamAddress());
704 val.i = *reinterpret_cast<jint*>(GetParamAddress());
710 args_->push_back(val);
1151 void AdvancePointer(const void* val) { argument
1154 PushGpr(reinterpret_cast<uintptr_t>(val));
1157 PushStack(reinterpret_cast<uintptr_t>(val));
1182 AdvanceInt(uint32_t val) argument
1219 AdvanceLong(uint64_t val) argument
1253 AdvanceFloat(float val) argument
1300 AdvanceDouble(uint64_t val) argument
1342 PushGpr(uintptr_t val) argument
1345 PushFpr4(float val) argument
1348 PushFpr8(uint64_t val) argument
1351 PushStack(uintptr_t val) argument
1599 PushGpr(uintptr_t val) argument
1604 PushFpr4(float val) argument
1609 PushFpr8(uint64_t val) argument
1615 PushStack(uintptr_t val) argument
[all...]
/art/runtime/verifier/
H A Dreg_type.cc68 uint32_t val = ConstantValue(); local
69 if (val == 0) {
75 result << StringPrintf("Constant: %d", val);
77 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...]
/art/test/074-gc-thrash/src/
H A DMain.java185 private String makeString(int val) { argument
187 return new String("Robin" + val);
319 private String makeString(int val) { argument
321 return new String("Deep" + val);
/art/cmdline/
H A Dcmdline_types.h184 size_t val = ParseMemoryOption(arg.c_str(), Divisor); local
185 CMDLINE_DEBUG_LOG << "Memory parsed to size_t value: " << val << std::endl;
187 if (val == 0) {
192 return Result::Success(Memory<Divisor>(val));
214 size_t val = strtoul(s, &s2, 10); local
241 if (val <= std::numeric_limits<size_t>::max() / mul) {
242 val *= mul;
245 val = std::numeric_limits<size_t>::max() & ~(1024-1);
253 if (val % div == 0) {
254 return val;
[all...]

Completed in 544 milliseconds

123