/aosp12/build/soong/symbol_inject/ |
H A D | pe_symboldata_test.go | 61 &pe.Symbol{Name: "envp", Value: 0x18, SectionNumber: 6, Type: 0x0, StorageClass: 0x3}, 62 &pe.Symbol{Name: "argv", Value: 0x20, SectionNumber: 6, Type: 0x0, StorageClass: 0x3}, 63 &pe.Symbol{Name: "argc", Value: 0x28, SectionNumber: 6, Type: 0x0, StorageClass: 0x3}, 75 &pe.Symbol{Name: ".text", Value: 0x0, SectionNumber: 1, Type: 0x0, StorageClass: 0x3}, 76 &pe.Symbol{Name: ".data", Value: 0x0, SectionNumber: 2, Type: 0x0, StorageClass: 0x3}, 77 &pe.Symbol{Name: ".bss", Value: 0x0, SectionNumber: 6, Type: 0x0, StorageClass: 0x3}, 78 &pe.Symbol{Name: ".xdata", Value: 0x0, SectionNumber: 5, Type: 0x0, StorageClass: 0x3}, 79 &pe.Symbol{Name: ".pdata", Value: 0x0, SectionNumber: 4, Type: 0x0, StorageClass: 0x3}, 94 &pe.Symbol{Name: ".bss", Value: 0x30, SectionNumber: 6, Type: 0x0, StorageClass: 0x3}, 100 &pe.Symbol{Name: ".bss", Value: 0x30, SectionNumber: 6, Type: 0x0, StorageClass: 0x3}, [all …]
|
H A D | elf_symboldata_test.go | 64 …elf.Symbol{Name: "", Info: 0x3, Other: 0x0, Section: elf.SHN_UNDEF + 1, Value: 0x400238, Size: 0x0… 65 …elf.Symbol{Name: "", Info: 0x3, Other: 0x0, Section: elf.SHN_UNDEF + 2, Value: 0x400254, Size: 0x0… 66 …elf.Symbol{Name: "", Info: 0x3, Other: 0x0, Section: elf.SHN_UNDEF + 3, Value: 0x400278, Size: 0x0… 88 elf.Symbol{Name: "", Info: 0x3, Other: 0x0, Section: elf.SHN_UNDEF + 25, Value: 0x0, Size: 0x0}, 89 …elf.Symbol{Name: "crtstuff.c", Info: 0x4, Other: 0x0, Section: elf.SHN_ABS, Value: 0x0, Size: 0x0}, 98 elf.Symbol{Name: "test.c", Info: 0x4, Other: 0x0, Section: elf.SHN_ABS, Value: 0x0, Size: 0x0}, 99 …elf.Symbol{Name: "crtstuff.c", Info: 0x4, Other: 0x0, Section: elf.SHN_ABS, Value: 0x0, Size: 0x0}, 102 elf.Symbol{Name: "", Info: 0x4, Other: 0x0, Section: elf.SHN_ABS, Value: 0x0, Size: 0x0}, 201 elf.Symbol{Name: "", Info: 0x3, Other: 0x0, Section: elf.SHN_UNDEF + 25, Value: 0x0, Size: 0x0}, 211 elf.Symbol{Name: "test2.c", Info: 0x4, Other: 0x0, Section: elf.SHN_ABS, Value: 0x0, Size: 0x0}, [all …]
|
/aosp12/art/compiler/optimizing/ |
H A D | induction_var_range_test.cc | 27 using Value = InductionVarRange::Value; typedef 608 ExpectEqual(Value(110), AddValue(Value(10), Value(100))); in TEST_F() 620 ExpectEqual(Value(-90), SubValue(Value(10), Value(100))); in TEST_F() 632 ExpectEqual(Value(1000), MulValue(Value(10), Value(100))); in TEST_F() 654 ExpectEqual(Value(-1), MulValue(Value(1), Value(-1))); in TEST_F() 655 ExpectEqual(Value(1), MulValue(Value(-1), Value(-1))); in TEST_F() 659 ExpectEqual(Value(25), DivValue(Value(100), Value(4))); in TEST_F() 680 ExpectEqual(Value(-1), DivValue(Value(1), Value(-1))); in TEST_F() 681 ExpectEqual(Value(1), DivValue(Value(-1), Value(-1))); in TEST_F() 685 ExpectEqual(Value(10), MinValue(Value(10), Value(100))); in TEST_F() [all …]
|
H A D | induction_var_range.h | 45 struct Value { struct 47 Value(HInstruction* i, int32_t a, int32_t b) in Value() function 49 explicit Value(int32_t b) : Value(nullptr, 0, b) {} in Value() function 244 Value GetFetch(HInstruction* instruction, 267 Value MulRangeAndConstant(int64_t value, 272 Value DivRangeAndConstant(int64_t value, 278 Value AddValue(Value v1, Value v2) const; 279 Value SubValue(Value v1, Value v2) const; 280 Value MulValue(Value v1, Value v2) const; 281 Value DivValue(Value v1, Value v2) const; [all …]
|
/aosp12/frameworks/base/rs/java/android/renderscript/ |
H A D | Sampler.java | 35 public enum Value { enum in Sampler 50 Value mMin; 51 Value mMag; 52 Value mWrapS; 53 Value mWrapT; 54 Value mWrapR; 319 Value mMin; 320 Value mMag; 348 if (v == Value.NEAREST || v == Value.LINEAR) { in setMagnification() 356 if (v == Value.WRAP || v == Value.CLAMP || v == Value.MIRRORED_REPEAT) { in setWrapS() [all …]
|
/aosp12/frameworks/rs/support/java/src/androidx/renderscript/ |
H A D | Sampler.java | 48 public enum Value { enum in Sampler 63 Value mMin; 64 Value mMag; 65 Value mWrapS; 66 Value mWrapT; 67 Value mWrapR; 275 Value mMin; 276 Value mMag; 304 if (v == Value.NEAREST || v == Value.LINEAR) { in setMagnification() 312 if (v == Value.WRAP || v == Value.CLAMP || v == Value.MIRRORED_REPEAT) { in setWrapS() [all …]
|
/aosp12/build/blueprint/parser/ |
H A D | parser_test.go | 72 Value: &String{ 101 Value: &Bool{ 131 Value: &Int64{ 133 Value: 4, 162 Value: &List{ 223 Value: &List{ 307 Value: &List{ 369 Value: &Map{ 563 Value: &String{ 793 Value: &Int64{ [all …]
|
/aosp12/frameworks/base/media/mca/filterfw/native/core/ |
H A D | value.h | 32 } Value; typedef 35 int GetIntValue(Value value); 36 float GetFloatValue(Value value); 44 int ValueIsNull(Value value); 45 int ValueIsInt(Value value); 46 int ValueIsFloat(Value value); 47 int ValueIsString(Value value); 48 int ValueIsBuffer(Value value); 53 Value MakeNullValue(); 54 Value MakeIntValue(int value); [all …]
|
H A D | value.cpp | 34 POD GetPODValue(Value value) { in GetPODValue() 39 PTR GetPtrValue(Value value) { in GetPtrValue() 44 Value MakePODValue(POD value) { in MakePODValue() 45 Value result; in MakePODValue() 55 Value result; in MakePtrValue() 92 int GetIntValue(Value value) { in GetIntValue() 126 int ValueIsInt(Value value) { in ValueIsInt() 150 Value MakeNullValue() { in MakeNullValue() 151 Value result; in MakeNullValue() 175 Value result; in MakeBufferValueNoCopy() [all …]
|
/aosp12/system/chre/util/tests/ |
H A D | unique_ptr_test.cc | 11 struct Value { struct 16 ~Value() { in ~Value() argument 20 Value &operator=(Value &&other) { in operator =() argument 32 UniquePtr<Value> myInt = MakeUnique<Value>(0xcafe); in TEST() 56 UniquePtr<Value> myInt = MakeUnique<Value>(0xcafe); in TEST() 69 UniquePtr<Value> myInt = MakeUnique<Value>(0xcafe); in TEST() 73 UniquePtr<Value> myMovedInt = MakeUnique<Value>(0); in TEST() 90 UniquePtr<Value> myInt = MakeUnique<Value>(0xcafe); in TEST() 111 UniquePtr<Value> myInt = MakeUnique<Value>(0xcafe); in TEST() 119 UniquePtr<Value> myInt2 = MakeUnique<Value>(0xface); in TEST() [all …]
|
/aosp12/art/libartbase/base/ |
H A D | histogram-inl.h | 35 template <class Value> inline void Histogram<Value>::AddValue(Value value) { in AddValue() 45 template <class Value> inline void Histogram<Value>::AdjustAndAddValue(Value value) { in AdjustAndAddValue() 49 template <class Value> inline Histogram<Value>::Histogram(const char* name) in Histogram() 57 template <class Value> 71 inline void Histogram<Value>::GrowBuckets(Value new_max) { in GrowBuckets() 94 template <class Value> inline size_t Histogram<Value>::FindBucket(Value val) const { in FindBucket() 106 inline void Histogram<Value>::BucketiseValue(Value val) { in BucketiseValue() 116 template <class Value> inline void Histogram<Value>::Initialize() { in Initialize() 128 template <class Value> inline void Histogram<Value>::Reset() { in Reset() 139 template <class Value> inline Value Histogram<Value>::GetRange(size_t bucket_idx) const { in GetRange() [all …]
|
H A D | histogram.h | 50 void AddValue(Value); 75 Value Sum() const { in Sum() 83 Value Min() const { in Min() 87 Value Max() const { in Max() 113 Value bucket_width_; 118 Value sum_; 120 Value min_; 122 Value max_; 124 Value sum_of_squares_; 126 Value min_value_added_; [all …]
|
H A D | hiddenapi_flags.h | 87 enum class Value : uint32_t { enum 131 static_assert(helper::ToUint(Value::kMax) < helper::ToUint(Value::kInvalid)); 173 Value GetValue() const { in GetValue() 178 return Value::kInvalid; in GetValue() 181 return Value::kUnsupported; in GetValue() 226 static_assert(helper::ToUint(Value::kMax) + 1 < helper::ToUint(Value::kInvalid)); in FromName() 280 const Value val1 = GetValue(); in CanCombineWith() 282 return (val1 == val2) || (val1 == Value::kInvalid) || (val2 == Value::kInvalid); in CanCombineWith() 292 const Value val1 = GetValue(); 373 static_assert(Value::kMin == helper::GetEnumAt<Value>(0)); [all …]
|
H A D | hash_map.h | 26 template <typename Key, typename Value, typename HashFn> 41 template <typename Key, typename Value, typename PredFn> 44 bool operator()(const std::pair<Key, Value>& a, const std::pair<Key, Value>& b) const { in operator() 57 template <typename Key, typename Value> 60 void MakeEmpty(std::pair<Key, Value>& item) const { in MakeEmpty() 61 item = std::pair<Key, Value>(); in MakeEmpty() 63 bool IsEmpty(const std::pair<Key, Value>& item) const { in IsEmpty() 69 class Value, 70 class EmptyFn = DefaultMapEmptyFn<Key, Value>, 74 class HashMap : public HashSet<std::pair<Key, Value>, [all …]
|
/aosp12/system/bpf/libbpf_android/include/bpf/ |
H A D | BpfMap.h | 44 template <class Key, class Value> 47 BpfMap<Key, Value>() {}; in BpfMap() 57 explicit BpfMap<Key, Value>(const char* pathname) : BpfMap<Key, Value>(pathname, 0) {} 88 Value value; in readValue() 131 BpfMap<Key, Value>& operator=(const BpfMap<Key, Value>& other) { 137 BpfMap<Key, Value>& operator=(BpfMap<Key, Value>&& other) noexcept { 180 template <class Key, class Value> 189 template <class Key, class Value> 204 template <class Key, class Value> 221 template <class Key, class Value> [all …]
|
/aosp12/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/ |
H A D | UT_sampler.java | 36 b.setMinification(Sampler.Value.NEAREST); in getDefaultBuilder() 37 b.setMagnification(Sampler.Value.NEAREST); in getDefaultBuilder() 38 b.setWrapS(Sampler.Value.CLAMP); in getDefaultBuilder() 39 b.setWrapT(Sampler.Value.CLAMP); in getDefaultBuilder() 46 b.setMinification(Sampler.Value.LINEAR_MIP_LINEAR); in initializeGlobals() 50 b.setMagnification(Sampler.Value.LINEAR); in initializeGlobals() 54 b.setWrapS(Sampler.Value.WRAP); in initializeGlobals() 58 b.setWrapT(Sampler.Value.WRAP); in initializeGlobals() 108 wrapS.getWrapS() == Sampler.Value.WRAP); in testJavaSide() 110 wrapS.getWrapT() == Sampler.Value.CLAMP); in testJavaSide() [all …]
|
/aosp12/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/ |
H A D | UT_sampler.java | 38 b.setMinification(Sampler.Value.NEAREST); in getDefaultBuilder() 39 b.setMagnification(Sampler.Value.NEAREST); in getDefaultBuilder() 40 b.setWrapS(Sampler.Value.CLAMP); in getDefaultBuilder() 41 b.setWrapT(Sampler.Value.CLAMP); in getDefaultBuilder() 48 b.setMinification(Sampler.Value.LINEAR_MIP_LINEAR); in initializeGlobals() 52 b.setMagnification(Sampler.Value.LINEAR); in initializeGlobals() 56 b.setWrapS(Sampler.Value.WRAP); in initializeGlobals() 60 b.setWrapT(Sampler.Value.WRAP); in initializeGlobals() 110 wrapS.getWrapS() == Sampler.Value.WRAP); in testJavaSide() 112 wrapS.getWrapT() == Sampler.Value.CLAMP); in testJavaSide() [all …]
|
/aosp12/art/compiler/utils/ |
H A D | atomic_dex_ref_map-inl.h | 31 template <typename DexFileReferenceType, typename Value> 51 template <typename DexFileReferenceType, typename Value> 66 template <typename DexFileReferenceType, typename Value> 77 template <typename DexFileReferenceType, typename Value> 88 template <typename DexFileReferenceType, typename Value> 93 template <typename DexFileReferenceType, typename Value> 94 inline void AtomicDexRefMap<DexFileReferenceType, Value>::AddDexFiles( in AddDexFiles() 103 template <typename DexFileReferenceType, typename Value> 110 template <typename DexFileReferenceType, typename Value> 128 template <typename DexFileReferenceType, typename Value> [all …]
|
/aosp12/art/tools/ahat/src/main/com/android/ahat/heapdump/ |
H A D | AhatArrayInstance.java | 39 private List<Value> mValues; 53 mValues = new AbstractList<Value>() { in initialize() 59 return Value.pack(bools[index]); in initialize() 69 mValues = new AbstractList<Value>() { in initialize() 75 return Value.pack(chars[index]); in initialize() 84 mValues = new AbstractList<Value>() { in initialize() 121 return Value.pack(bytes[index]); in initialize() 151 return Value.pack(ints[index]); in initialize() 211 public List<Value> getValues() { in getValues() 222 public Value getValue(int index) { in getValue() [all …]
|
H A D | Value.java | 26 public abstract class Value { class 27 Value() { } in Value() method in Value 55 public static Value pack(char value) { in pack() 65 public static Value pack(float value) { in pack() 85 public static Value pack(byte value) { in pack() 95 public static Value pack(short value) { in pack() 105 public static Value pack(int value) { in pack() 115 public static Value pack(long value) { in pack() 215 Value getBaseline() { in getBaseline() 227 public static Value getBaseline(Value value) { in getBaseline() [all …]
|
/aosp12/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
H A D | UT_sampler.java | 39 b.setMinification(Sampler.Value.NEAREST); in getDefaultBuilder() 40 b.setMagnification(Sampler.Value.NEAREST); in getDefaultBuilder() 41 b.setWrapS(Sampler.Value.CLAMP); in getDefaultBuilder() 42 b.setWrapT(Sampler.Value.CLAMP); in getDefaultBuilder() 49 b.setMinification(Sampler.Value.LINEAR_MIP_LINEAR); in initializeGlobals() 53 b.setMagnification(Sampler.Value.LINEAR); in initializeGlobals() 57 b.setWrapS(Sampler.Value.WRAP); in initializeGlobals() 61 b.setWrapT(Sampler.Value.WRAP); in initializeGlobals() 112 wrapS.getWrapS() == Sampler.Value.WRAP); in testJavaSide() 114 wrapS.getWrapT() == Sampler.Value.CLAMP); in testJavaSide() [all …]
|
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/ |
H A D | valuetest.cpp | 22 Value x; in TEST() 55 static_assert(std::is_assignable<Value,Value>::value, ""); in TEST() 79 Value x((Value(kArrayType))); in TEST() 102 Value y; in TEST() 285 Value x; in TEST() 326 Value z; in TEST() 352 Value z; in TEST() 401 Value z; in TEST() 435 Value z; in TEST() 481 Value z; in TEST() [all …]
|
/aosp12/frameworks/base/startop/view_compiler/ |
H A D | dex_builder.h | 115 class Value { 117 static constexpr Value Local(size_t id) { return Value{id, Kind::kLocalRegister}; } in Local() 118 static constexpr Value Parameter(size_t id) { return Value{id, Kind::kParameter}; } in Parameter() 120 static constexpr Value String(size_t value) { return Value{value, Kind::kString}; } in String() 121 static constexpr Value Label(size_t id) { return Value{id, Kind::kLabel}; } in Label() 122 static constexpr Value Type(size_t id) { return Value{id, Kind::kType}; } in Type() 159 operator const Value() const { return Value::Local(*index_); } in Value() function 212 static inline Instruction Cast(Value val, Value type) { in Cast() 277 static inline Instruction GetField(size_t field_id, Value dest, Value object) { in GetField() 281 static inline Instruction SetField(size_t field_id, Value object, Value value) { in SetField() [all …]
|
/aosp12/bootable/recovery/edify/include/edify/ |
H A D | expr.h | 57 struct Value { struct 63 Value(Type type, std::string str) : type(type), data(std::move(str)) {} in Value() function 71 using Function = Value* (*)(const char* name, State* state, argument 88 Value* EvaluateValue(State* state, const std::unique_ptr<Expr>& expr); 96 Value* Literal(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv); 138 std::vector<std::unique_ptr<Value>>* args); 140 std::vector<std::unique_ptr<Value>>* args, size_t start, size_t len); 144 Value* ErrorAbort(State* state, const char* format, ...) 149 Value* ErrorAbort(State* state, CauseCode cause_code, const char* format, ...) 153 Value* StringValue(const char* str); [all …]
|
/aosp12/packages/apps/Dialer/java/com/android/dialer/calllog/model/ |
H A D | coalesced_row.proto | 16 // Value in column CoalescedAnnotatedCallLog._ID 19 // Value in column CoalescedAnnotatedCallLog.TIMESTAMP 22 // Value in column CoalescedAnnotatedCallLog.NUMBER 25 // Value in column CoalescedAnnotatedCallLog.FORMATTED_NUMBER 31 // Value in column CoalescedAnnotatedCallLog.IS_READ 34 // Value in column CoalescedAnnotatedCallLog.NEW 37 // Value in column CoalescedAnnotatedCallLog.GEOCODED_LOCATION 43 // Value in column CoalescedAnnotatedCallLog.PHONE_ACCOUNT_ID 46 // Value in column CoalescedAnnotatedCallLog.FEATURES 49 // Value in column CoalescedAnnotatedCallLog.CALL_TYPE [all …]
|