Searched defs:val (Results 1 - 25 of 41) sorted by relevance

12

/art/test/025-access-controller/src/
H A DPrivvy.java25 public Privvy(int val) { argument
26 mValue = new Integer(val + 1);
/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/test/084-class-init/src/
H A DIntHolder.java38 public void setValue(int val) { argument
39 mValue = val;
/art/runtime/
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 Doffsets.h28 explicit Offset(size_t val) : val_(val) {} argument
47 explicit FrameOffset(size_t val) : Offset(val) {} argument
56 explicit ThreadOffset(size_t val) : Offset(val) {} argument
62 explicit MemberOffset(size_t val) : Offset(val) {} argument
H A Dlock_word.h158 explicit LockWord(uint32_t val) : value_(val) {} argument
H A Dparsed_options.cc60 size_t val = strtoul(s, &s2, 10); local
87 if (val <= std::numeric_limits<size_t>::max() / mul) {
88 val *= mul;
91 val = std::numeric_limits<size_t>::max() & ~(1024-1);
99 if (val % div == 0) {
100 return val;
/art/test/028-array-write/src/
H A DMain.java36 static void writeArray(int val) { argument
38 mStorage[i] = val;
/art/runtime/jdwp/
H A Djdwp_bits.h70 static inline void Set1(uint8_t* buf, uint8_t val) { argument
71 *buf = (uint8_t)(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.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.h62 static inline void SetFieldId(uint8_t* buf, FieldId val) { return Set4BE(buf, val); } argument
63 static inline void SetMethodId(uint8_t* buf, MethodId val) { return Set4BE(buf, val); } argument
64 static inline void SetObjectId(uint8_t* buf, ObjectId val) { return Set8BE(buf, val); } argument
65 static inline void SetRefTypeId(uint8_t* buf, RefTypeId val) { return Set8BE(buf, val); } argument
66 static inline void SetFrameId(uint8_t* buf, FrameId val) { return Set8BE(buf, val); } argument
[all...]
/art/compiler/utils/
H A Darena_containers.h169 void construct(pointer p, const_reference val) { argument
170 new (static_cast<void*>(p)) value_type(val);
H A Dscoped_arena_containers.h152 void construct(pointer p, const_reference val) { argument
154 new (static_cast<void*>(p)) value_type(val);
/art/test/074-gc-thrash/src/
H A DMain.java185 private String makeString(int val) { argument
186 return new String("Robin" + val);
304 private String makeString(int val) { argument
305 return new String("Deep" + val);
/art/runtime/base/
H A Dhistogram-inl.h83 template <class Value> inline size_t Histogram<Value>::FindBucket(Value val) const {
86 DCHECK_GE(val, min_);
87 DCHECK_LE(val, max_);
88 const size_t bucket_idx = static_cast<size_t>((val - min_) / bucket_width_);
95 inline void Histogram<Value>::BucketiseValue(Value val) { argument
96 CHECK_LT(val, max_);
97 sum_ += val;
98 sum_of_squares_ += val * val;
100 ++frequency_[FindBucket(val)];
[all...]
H A Dmutex-inl.h42 static inline int futex(volatile int *uaddr, int op, int val, const struct timespec *timeout, volatile int *uaddr2, int val3) { argument
43 return syscall(SYS_futex, uaddr, op, val, timeout, uaddr2, val3);
H A Dbit_vector.cc379 uint32_t val = storage[num >> 5] & check_masks[num & 0x1f]; local
380 return (val != 0);
/art/runtime/entrypoints/
H A Dentrypoint_utils.cc253 jobject val = args.at(i).l; local
254 soa.Env()->SetObjectArrayElement(args_jobj, i, val);
258 mirror::Object* val = BoxPrimitive(Primitive::GetType(shorty[i + 1]), jv); local
259 if (val == NULL) {
263 soa.Decode<mirror::ObjectArray<mirror::Object>* >(args_jobj)->Set<false>(i, val);
/art/runtime/entrypoints/portable/
H A Dportable_trampoline_entrypoints.cc241 jvalue val; local
246 val.l = soa_.AddLocalReference<jobject>(obj);
251 val.j = *reinterpret_cast<jlong*>(GetParamAddress());
259 val.i = *reinterpret_cast<jint*>(GetParamAddress());
263 val.j = 0;
266 args_.push_back(val);
/art/runtime/interpreter/
H A Dinterpreter_goto_table_impl.cc369 int32_t val = inst->VRegB_11n(inst_data); local
370 shadow_frame.SetVReg(dst, val);
371 if (val == 0) {
380 int32_t val = inst->VRegB_21s(); local
381 shadow_frame.SetVReg(dst, val);
382 if (val == 0) {
391 int32_t val = inst->VRegB_31i(); local
392 shadow_frame.SetVReg(dst, val);
393 if (val == 0) {
402 int32_t val local
1095 uint8_t val = shadow_frame.GetVReg(inst->VRegA_23x(inst_data)); local
1114 int8_t val = shadow_frame.GetVReg(inst->VRegA_23x(inst_data)); local
1133 uint16_t val = shadow_frame.GetVReg(inst->VRegA_23x(inst_data)); local
1152 int16_t val = shadow_frame.GetVReg(inst->VRegA_23x(inst_data)); local
1171 int32_t val = shadow_frame.GetVReg(inst->VRegA_23x(inst_data)); local
1190 int64_t val = shadow_frame.GetVRegLong(inst->VRegA_23x(inst_data)); local
1210 Object* val = shadow_frame.GetVRegReference(inst->VRegA_23x(inst_data)); local
1571 float val = shadow_frame.GetVRegFloat(inst->VRegB_12x(inst_data)); local
1579 float val = shadow_frame.GetVRegFloat(inst->VRegB_12x(inst_data)); local
1592 double val = shadow_frame.GetVRegDouble(inst->VRegB_12x(inst_data)); local
1600 double val = shadow_frame.GetVRegDouble(inst->VRegB_12x(inst_data)); local
[all...]
H A Dinterpreter_switch_impl.cc282 int4_t val = inst->VRegB_11n(inst_data); local
283 shadow_frame.SetVReg(dst, val);
284 if (val == 0) {
293 int16_t val = inst->VRegB_21s(); local
294 shadow_frame.SetVReg(dst, val);
295 if (val == 0) {
304 int32_t val = inst->VRegB_31i(); local
305 shadow_frame.SetVReg(dst, val);
306 if (val == 0) {
315 int32_t val local
994 uint8_t val = shadow_frame.GetVReg(inst->VRegA_23x(inst_data)); local
1013 int8_t val = shadow_frame.GetVReg(inst->VRegA_23x(inst_data)); local
1032 uint16_t val = shadow_frame.GetVReg(inst->VRegA_23x(inst_data)); local
1051 int16_t val = shadow_frame.GetVReg(inst->VRegA_23x(inst_data)); local
1070 int32_t val = shadow_frame.GetVReg(inst->VRegA_23x(inst_data)); local
1089 int64_t val = shadow_frame.GetVRegLong(inst->VRegA_23x(inst_data)); local
1109 Object* val = shadow_frame.GetVRegReference(inst->VRegA_23x(inst_data)); local
1463 float val = shadow_frame.GetVRegFloat(inst->VRegB_12x(inst_data)); local
1471 float val = shadow_frame.GetVRegFloat(inst->VRegB_12x(inst_data)); local
1485 double val = shadow_frame.GetVRegDouble(inst->VRegB_12x(inst_data)); local
1493 double val = shadow_frame.GetVRegDouble(inst->VRegB_12x(inst_data)); local
[all...]
/art/compiler/dex/
H A Dreg_storage.h123 constexpr explicit RegStorage(uint16_t val) : reg_(val) {} argument
/art/runtime/verifier/
H A Dreg_type.cc86 uint32_t val = ConstantValue(); local
87 if (val == 0) {
93 result << StringPrintf("Constant: %d", val);
95 result << StringPrintf("Constant: 0x%x", val);
464 uint32_t val = ConstantValue(); local
465 if (val == 0) {
470 result << StringPrintf("Constant: %d", val);
472 result << StringPrintf("Constant: 0x%x", val);
480 int32_t val = ConstantValueLo(); local
482 if (val >
494 int32_t val = ConstantValueLo(); local
507 int32_t val = ConstantValueHi(); local
520 int32_t val = ConstantValueHi(); local
[all...]
H A Dreg_type_test.cc58 int64_t val = static_cast<int32_t>(1234); local
59 RegType& precise_lo = cache.FromCat2ConstLo(static_cast<int32_t>(val), true);
60 RegType& precise_hi = cache.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
61 RegType& precise_const = cache.FromCat1Const(static_cast<int32_t>(val >> 32), true);
/art/compiler/dex/quick/arm/
H A Dutility_arm.cc98 static int LeadingZeros(uint32_t val) { argument
106 alt = val >> count;
109 val = alt;
113 return n - val;

Completed in 5027 milliseconds

12