Searched refs:Value (Results 1 - 18 of 18) sorted by last modified time

/art/cmdline/
H A Dmemory_representation.h39 Memory() : Value(0u) {}
40 Memory(size_t value) : Value(value) { // NOLINT [runtime/explicit] [5]
43 operator size_t() const { return Value; }
46 return Value;
58 size_t Value; member in struct:art::Memory
63 return stream << memory.Value << '*' << kDivisor;
/art/compiler/optimizing/
H A Dbounds_check_elimination.cc1289 InductionVarRange::Value v1;
1290 InductionVarRange::Value v2;
H A Dinduction_var_range.cc64 static InductionVarRange::Value SimplifyMax(InductionVarRange::Value v) {
71 return InductionVarRange::Value(v.instruction->InputAt(0), 1, v.b_constant);
79 static InductionVarRange::Value CorrectForType(InductionVarRange::Value v, Primitive::Type type) {
90 : InductionVarRange::Value();
99 static bool IsConstantValue(InductionVarRange::Value v) {
104 static bool IsSameConstantValue(InductionVarRange::Value v1, InductionVarRange::Value v2) {
128 /*out*/Value* min_va
[all...]
H A Dinduction_var_range.h40 * Value() denotes an unknown lower and upper bound. Although range analysis could yield
44 struct Value { struct in class:art::InductionVarRange
45 Value() : instruction(nullptr), a_constant(0), b_constant(0), is_known(false) {} function in struct:art::InductionVarRange::Value
46 Value(HInstruction* i, int32_t a, int32_t b) function in struct:art::InductionVarRange::Value
48 explicit Value(int32_t b) : Value(nullptr, 0, b) {} function in struct:art::InductionVarRange::Value
67 /*out*/ Value* min_val,
68 /*out*/ Value* max_val,
72 bool RefineOuter(/*in-out*/ Value* min_val,
73 /*in-out*/ Value* max_va
[all...]
H A Dinduction_var_range_test.cc26 using Value = InductionVarRange::Value;
44 void ExpectEqual(Value v1, Value v2) {
199 Value GetMin(HInductionVarAnalysis::InductionInfo* info,
204 Value GetMax(HInductionVarAnalysis::InductionInfo* info,
209 Value GetMul(HInductionVarAnalysis::InductionInfo* info1,
215 Value GetDiv(HInductionVarAnalysis::InductionInfo* info1,
233 Value AddValue(Value v
[all...]
/art/runtime/arch/mips64/
H A Dquick_entrypoints_mips64.S61 .cfi_rel_offset 28, 136 # Value from gp is pushed, so set the cfi offset accordingly.
118 .cfi_rel_offset 28, 56 # Value from gp is pushed, so set the cfi offset accordingly.
205 .cfi_rel_offset 28, 184 # Value from gp is pushed, so set the cfi offset accordingly.
384 .cfi_rel_offset 28, 80 # Value from gp is pushed, so set the cfi offset accordingly.
/art/runtime/base/
H A Darena_containers.h70 typename Value,
71 typename EmptyFn = DefaultEmptyFn<std::pair<Key, Value>>,
75 Value,
79 ArenaAllocatorAdapter<std::pair<Key, Value>>>;
H A Dhash_map.h30 template <class Key, class Value>
31 size_t operator()(const std::pair<Key, Value>& pair) const {
38 template <class Key, class Value>
39 bool operator()(const std::pair<Key, Value>& a, const std::pair<Key, Value>& b) const {
42 template <class Key, class Value, class Element>
43 bool operator()(const std::pair<Key, Value>& a, const Element& element) const {
51 template <class Key, class Value, class EmptyFn,
53 class Alloc = std::allocator<std::pair<Key, Value>>>
54 class HashMap : public HashSet<std::pair<Key, Value>,
[all...]
H A Dhistogram-inl.h33 template <class Value> inline void Histogram<Value>::AddValue(Value value) {
34 CHECK_GE(value, static_cast<Value>(0));
36 Value new_max = ((value + 1) / bucket_width_ + 1) * bucket_width_;
43 template <class Value> inline void Histogram<Value>::AdjustAndAddValue(Value value) {
47 template <class Value> inline Histogram<Value>
[all...]
H A Dhistogram.h31 template <class Value> class Histogram {
37 friend class Histogram<Value>;
46 Histogram(const char* name, Value initial_bucket_width, size_t max_buckets = 100);
47 void AddValue(Value);
48 void AdjustAndAddValue(Value); // Add a value after dividing it by kAdjust.
65 Value GetRange(size_t bucket_idx) const;
72 Value Sum() const {
76 Value AdjustedSum() const {
80 Value Min() const {
84 Value Ma
[all...]
/art/runtime/
H A Ddex_file.h47 template <class Key, class Value, class EmptyFn, class HashFn, class Pred, class Alloc>
1599 jvalue jval_; // Value of current encoded value.
/art/test/122-npe/src/
H A DMain.java68 ((Value) null).objectField.toString();
75 useInt(((Value) null).intField);
82 useFloat(((Value) null).floatField);
89 useLong(((Value) null).longField);
96 useDouble(((Value) null).doubleField);
103 ((Value) null).objectField = "Fisk";
110 ((Value) null).intField = 42;
117 ((Value) null).floatField = 42.0F;
124 ((Value) null).longField = 42L;
131 ((Value) nul
603 static class Value { class in class:Main
[all...]
/art/tools/ahat/src/
H A DDominatedList.java74 return Value.render(mSnapshot, element);
H A DNativeAllocationsHandler.java72 Value.render(mSnapshot, alloc.referent));
H A DObjectHandler.java62 doc.big(Value.render(mSnapshot, inst));
70 doc.description(DocString.text("Class"), Value.render(mSnapshot, cls));
106 doc.table(new Column("Type"), new Column("Name"), new Column("Value"));
113 Value.render(snapshot, field.getValue()));
122 doc.table(new Column("Index", Column.Align.RIGHT), new Column("Value"));
127 doc.row(DocString.format("%d", i), Value.render(snapshot, elem));
139 Value.render(snapshot, clsobj.getSuperClassObj()));
141 Value.render(snapshot, clsobj.getClassLoader()));
145 doc.table(new Column("Type"), new Column("Name"), new Column("Value"));
154 Value
[all...]
H A DObjectsHandler.java63 Value.render(mSnapshot, inst));
H A DSiteHandler.java104 Value.render(mSnapshot, info.classObj));
H A DValue.java26 class Value { class

Completed in 510 milliseconds