Home
last modified time | relevance | path

Searched refs:value (Results 151 – 175 of 592) sorted by relevance

12345678910>>...24

/art/test/530-checker-lse3/
Dinfo.txt2 a wider value is stored in a narrower field and then loaded from that field,
3 LSE needs to replace the value to be stored with a type conversion to the
/art/libartbase/base/
Ddumpable.h34 explicit Dumpable(const T& value) : value_(value) { in Dumpable() argument
Ddchecked_vector.h40 static_assert(!std::is_same<T, bool>::value, "Not implemented for bool.");
65 const value_type& value,
67 : Base(n, value, alloc) { } in Base() argument
150 iterator insert(const_iterator position, const value_type& value) { in insert() argument
152 return Base::insert(position, value); in insert()
154 iterator insert(const_iterator position, size_type n, const value_type& value) { in insert() argument
156 return Base::insert(position, n, value); in insert()
163 iterator insert(const_iterator position, value_type&& value) { in insert() argument
165 return Base::insert(position, std::move(value)); in insert()
Dbounded_fifo.h50 void push_back(const T& value) { in push_back() argument
54 data_[back_index_++ & mask_] = value; in push_back()
/art/runtime/hprof/
Dhprof.cc189 void AddU1(uint8_t value) { in AddU1() argument
190 AddU1List(&value, 1); in AddU1()
192 void AddU2(uint16_t value) { in AddU2() argument
193 AddU2List(&value, 1); in AddU2()
195 void AddU4(uint32_t value) { in AddU4() argument
196 AddU4List(&value, 1); in AddU4()
199 void AddU8(uint64_t value) { in AddU8() argument
200 AddU8List(&value, 1); in AddU8()
203 void AddObjectId(const mirror::Object* value) { in AddObjectId() argument
204 AddU4(PointerToLowMemUInt32(value)); in AddObjectId()
[all …]
/art/test/667-jit-jni-stub/src/
DMain.java157 public static void assertTrue(boolean value) { in assertTrue() argument
158 if (!value) { in assertTrue()
163 public static void assertFalse(boolean value) { in assertFalse() argument
164 if (value) { in assertFalse()
/art/runtime/
Dclass_root-inl.h70 static constexpr ClassRoot value = ClassRoot::name; \
82 return GetClassRoot<kReadBarrierOption>(detail::ClassRootSelector<MirrorType>::value, in GetClassRoot()
89 return GetClassRoot<kReadBarrierOption>(detail::ClassRootSelector<MirrorType>::value, linker); in GetClassRoot()
94 return GetClassRoot<kReadBarrierOption>(detail::ClassRootSelector<MirrorType>::value); in GetClassRoot()
/art/test/646-checker-long-const-to-int/src/
DMain.java39 long value = testField; in test() local
54 return (int)value; in test()
/art/cmdline/
Dcmdline_parser.h73 void SaveToMap(const TVariantMapKey<TArg>& key, TArg& value) { in SaveToMap()
74 variant_map_->Set(key, value); in SaveToMap()
146 ArgumentBuilder<TArg> WithValue(const TArg& value) { in WithValue()
147 return WithValues({ value }); in WithValue()
192 save_value_ = [save_destination, &key](TArg& value) { in IntoKey()
193 save_destination->SaveToMap(key, value); in IntoKey()
195 << detail::ToStringAny(value) << "'" << std::endl; in IntoKey()
199 TArg& value = save_destination->GetOrCreateFromMap(key); in IntoKey() local
200 CMDLINE_DEBUG_LOG << "Loaded value from map '" << detail::ToStringAny(value) << "'" in IntoKey()
203 return value; in IntoKey()
[all …]
/art/compiler/optimizing/
Dinduction_var_range.cc103 int64_t value; in SimplifyMax() local
106 IsInt64AndGet(v.instruction->InputAt(1), &value) && v.a_constant == value) { in SimplifyMax()
414 /*out*/ int64_t* value) const { in IsConstant()
420 if (IsInt64AndGet(info->fetch, value)) { in IsConstant()
431 *value = max_val.b_constant; in IsConstant()
434 *value = min_val.b_constant; in IsConstant()
638 int64_t value; in GetFetch() local
639 if (IsInt64AndGet(instruction, &value) && CanLongValueFitIntoInt(value)) { in GetFetch()
641 return Value(static_cast<int32_t>(value)); in GetFetch()
647 if (IsInt64AndGet(instruction->InputAt(0), &value) && CanLongValueFitIntoInt(value)) { in GetFetch()
[all …]
/art/tools/build/
Dvar_cache.py67 value = _var_cache_dict.get(name)
68 if value is None:
72 return value
/art/test/406-fields/src/
DTestCase.java24 public static void assertSame(Object expected, Object value) { in assertSame() argument
25 if (expected != value) { in assertSame()
27 String.valueOf(expected) + ", got " + String.valueOf(value)); in assertSame()
31 public static void assertNotSame(Object expected, Object value) { in assertNotSame() argument
32 if (expected == value) { in assertNotSame()
/art/test/412-new-array/src/
DTestCase.java24 public static void assertSame(Object expected, Object value) { in assertSame() argument
25 if (expected != value) { in assertSame()
27 String.valueOf(expected) + ", got " + String.valueOf(value)); in assertSame()
31 public static void assertNotSame(Object expected, Object value) { in assertNotSame() argument
32 if (expected == value) { in assertNotSame()
/art/test/414-static-fields/src/
DTestCase.java24 public static void assertSame(Object expected, Object value) { in assertSame() argument
25 if (expected != value) { in assertSame()
27 String.valueOf(expected) + ", got " + String.valueOf(value)); in assertSame()
31 public static void assertNotSame(Object expected, Object value) { in assertNotSame() argument
32 if (expected == value) { in assertNotSame()
/art/test/407-arrays/src/
DTestCase.java24 public static void assertSame(Object expected, Object value) { in assertSame() argument
25 if (expected != value) { in assertSame()
27 String.valueOf(expected) + ", got " + String.valueOf(value)); in assertSame()
31 public static void assertNotSame(Object expected, Object value) { in assertNotSame() argument
32 if (expected == value) { in assertNotSame()
/art/runtime/verifier/
Dreg_type_cache-inl.h40 inline const ConstantType& RegTypeCache::FromCat1Const(int32_t value, bool precise) { in FromCat1Const() argument
42 DCHECK(value != 0 || precise); in FromCat1Const()
43 if (precise && (value >= kMinSmallConstant) && (value <= kMaxSmallConstant)) { in FromCat1Const()
44 return *small_precise_constants_[value - kMinSmallConstant]; in FromCat1Const()
46 return FromCat1NonSmallConstant(value, precise); in FromCat1Const()
/art/compiler/utils/arm/
Dassembler_arm_vixl.cc99 void ArmVIXLAssembler::LoadImmediate(vixl32::Register rd, int32_t value) { in LoadImmediate() argument
101 if (!ShifterOperandCanAlwaysHold(value) && ShifterOperandCanAlwaysHold(~value)) { in LoadImmediate()
102 ___ Mvn(rd, ~value); in LoadImmediate()
104 ___ Mov(rd, value); in LoadImmediate()
425 void ArmVIXLAssembler::AddConstant(vixl32::Register rd, int32_t value) { in AddConstant() argument
426 AddConstant(rd, rd, value); in AddConstant()
432 int32_t value) { in AddConstant() argument
435 if (value == 0) { in AddConstant()
441 ___ Add(rd, rn, value); in AddConstant()
447 int32_t value, in AddConstantInIt() argument
[all …]
/art/runtime/base/
Dmutator_locked_dumpable.h28 explicit MutatorLockedDumpable(T& value) REQUIRES_SHARED(Locks::mutator_lock_) : value_(value) {} in MutatorLockedDumpable() argument
/art/tools/dexfuzz/src/dexfuzz/rawdex/
DEncodedArray.java49 for (EncodedValue value : values) { in incrementIndex()
50 value.incrementIndex(kind, insertedIdx); in incrementIndex()
/art/runtime/mirror/
Darray-inl.h74 inline void PrimitiveArray<T>::Set(int32_t i, T value) { in Set() argument
76 Set<true>(i, value); in Set()
78 Set<false>(i, value); in Set()
84 inline void PrimitiveArray<T>::Set(int32_t i, T value) { in Set() argument
86 SetWithoutChecks<kTransactionActive, kCheckTransaction>(i, value); in Set()
94 inline void PrimitiveArray<T>::SetWithoutChecks(int32_t i, T value) { in SetWithoutChecks() argument
102 GetData()[i] = value; in SetWithoutChecks()
245 uint64_t value = in GetElementPtrSizeUnchecked() local
247 return (T) dchecked_integral_cast<ConversionType>(value); in GetElementPtrSizeUnchecked()
249 uint32_t value = in GetElementPtrSizeUnchecked() local
[all …]
/art/test/1939-proxy-frames/
Dexpected.txt2 …stract void art.Test1939$Foo.InterfaceProxyMethod(java.lang.Runnable) got value: Proxy for [interf…
6 …on" on public abstract void art.Test1939$Foo.InterfaceProxyMethod(java.lang.Runnable) got value: -1
8 …stract void art.Test1939$Foo.InterfaceProxyMethod(java.lang.Runnable) got value: public final void…
/art/test/548-checker-inlining-and-dce/src/
DMain.java28 private void inlinedForFalse(boolean value, Iterable it) { in inlinedForFalse() argument
29 if (value) { in inlinedForFalse()
/art/runtime/arch/x86/
Dcontext_x86.cc77 void X86Context::SetGPR(uint32_t reg, uintptr_t value) { in SetGPR() argument
81 *gprs_[reg] = value; in SetGPR()
84 void X86Context::SetFPR(uint32_t reg, uintptr_t value) { in SetFPR() argument
88 *fprs_[reg] = value; in SetFPR()
/art/test/1967-get-set-local-bad-slot/
Dexpected.txt11 …blic static void art.Test1967.IntMethod(java.lang.Runnable) failed to set value 2147483647 due to …
14 …blic static void art.Test1967.IntMethod(java.lang.Runnable) failed to set value 922337203685477580…
17 …blic static void art.Test1967.IntMethod(java.lang.Runnable) failed to set value NEW_FOR_SET due to…
29 …blic static void art.Test1967.IntMethod(java.lang.Runnable) failed to set value 2147483647 due to …
32 …blic static void art.Test1967.IntMethod(java.lang.Runnable) failed to set value 922337203685477580…
35 …blic static void art.Test1967.IntMethod(java.lang.Runnable) failed to set value NEW_FOR_SET due to…
47 …lic static void art.Test1967.LongMethod(java.lang.Runnable) failed to set value 2147483647 due to …
50 …lic static void art.Test1967.LongMethod(java.lang.Runnable) failed to set value 922337203685477580…
53 …lic static void art.Test1967.LongMethod(java.lang.Runnable) failed to set value NEW_FOR_SET due to…
65 …lic static void art.Test1967.LongMethod(java.lang.Runnable) failed to set value 2147483647 due to …
[all …]
/art/test/411-optimizing-arith/src/
DRemTest.java179 public static void expectDivisionByZero(int value) { in expectDivisionByZero() argument
181 $opt$Rem(value, 0); in expectDivisionByZero()
186 $opt$RemZero(value); in expectDivisionByZero()
192 public static void expectDivisionByZero(long value) { in expectDivisionByZero() argument
194 $opt$Rem(value, 0L); in expectDivisionByZero()
199 $opt$RemZero(value); in expectDivisionByZero()

12345678910>>...24