Searched defs:value (Results 1 - 25 of 178) sorted by relevance

12345678

/art/test/068-classloader/src-ex/
H A DMutationTarget.java21 public static int value = 0; field in class:MutationTarget
/art/test/078-polymorphic-virtual/src/
H A DBase.java18 int value; field in class:Base
30 return value;
/art/test/112-double-math/src/
H A DMain.java18 public static double cond_neg_double(double value, boolean cond) { argument
19 return cond ? -value : value;
/art/test/455-set-vreg/
H A Dset_vreg_jni.cc40 uint32_t value = 0; local
41 CHECK(GetVReg(m, 1, kReferenceVReg, &value));
42 CHECK_EQ(reinterpret_cast<mirror::Object*>(value), this_value_);
50 uint32_t value = 0; local
51 CHECK(GetVReg(m, 3, kReferenceVReg, &value));
52 CHECK_EQ(reinterpret_cast<mirror::Object*>(value), this_value_);
60 uint32_t value = 0; local
61 CHECK(GetVReg(m, 1, kReferenceVReg, &value));
62 CHECK_EQ(reinterpret_cast<mirror::Object*>(value), this_value_);
70 uint32_t value local
87 Java_Main_doNativeCallSetVReg(JNIEnv*, jobject value) argument
[all...]
/art/test/456-baseline-array-set/src/
H A DMain.java22 public static void doArrayAccess(Integer value, int index) { argument
28 array[index] = value;
/art/runtime/base/
H A Dto_str.h29 explicit ToStr(const T& value) { argument
31 os << value; local
H A Dbit_field.h32 // Tells whether the provided value fits into the bit field.
33 static bool IsValid(T value) { argument
34 return (static_cast<uintptr_t>(value) & ~((kUintPtrTOne << size) - 1)) == 0;
59 // Returns a uword with the bit field value encoded.
60 static uintptr_t Encode(T value) { argument
61 DCHECK(IsValid(value));
62 return static_cast<uintptr_t>(value) << position;
65 // Extracts the bit field from the value.
66 static T Decode(uintptr_t value) { argument
67 return static_cast<T>((value >> positio
73 Update(T value, uintptr_t original) argument
[all...]
H A Dbounded_fifo.h49 void push_back(const T& value) { argument
53 data_[back_index_++ & mask_] = value;
H A Ddumpable.h34 explicit Dumpable(const T& value) : value_(value) { argument
/art/test/436-shift-constant/src/
H A DMain.java23 public static int doShiftInt(int value) { argument
24 return value << 0xFFFF;
27 public static long doShiftLong(long value) { argument
28 return value << 0xFFFF;
/art/test/447-checker-inliner3/src/
H A DMain.java30 private static int foo(boolean value) { argument
31 if (value) {
/art/test/461-get-reference-vreg/
H A Dget_reference_vreg_jni.cc42 uint32_t value = 0; local
43 CHECK(GetVReg(m, 1, kReferenceVReg, &value));
44 CHECK_EQ(reinterpret_cast<mirror::Object*>(value), this_value_);
48 uint32_t value = 0; local
49 CHECK(GetVReg(m, 1, kReferenceVReg, &value));
52 uint32_t value = 0; local
53 CHECK(GetVReg(m, 1, kReferenceVReg, &value));
56 uint32_t value = 0; local
57 CHECK(GetVReg(m, 0, kReferenceVReg, &value));
70 extern "C" JNIEXPORT jint JNICALL Java_Main_doNativeCallRef(JNIEnv*, jobject value) { argument
[all...]
/art/test/466-get-live-vreg/
H A Dget_live_vreg_jni.cc39 uint32_t value = 0; local
40 CHECK(GetVReg(m, 0, kIntVReg, &value));
41 CHECK_EQ(value, 42u);
44 uint32_t value = 0; local
46 CHECK_EQ(GetVReg(m, 0, kIntVReg, &value), false);
48 CHECK(GetVReg(m, 0, kIntVReg, &value));
49 CHECK_EQ(value, 1u);
/art/test/469-condition-materialization-regression/src/
H A DMain.java24 private static int useValue(boolean value) { argument
/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DEncodedArrayItem.java22 public EncodedArray value; field in class:EncodedArrayItem
27 (value = new EncodedArray()).read(file);
33 value.write(file);
H A DOpcodeInfo.java29 public final int value; field in class:OpcodeInfo
38 this.value = opcodeValue;
/art/cmdline/detail/
H A Dcmdline_parser_detail.h30 // SupportsInsertionOperator<T, TStream>::value will evaluate to a boolean,
31 // whose value is true if the TStream class supports the << operator against T,
37 static std::true_type InsertionOperatorTest(TStream& os, const T& value,
38 std::remove_reference<decltype(os << value)>* = 0); // NOLINT [whitespace/operators] [3]
44 static constexpr bool value = member in struct:art::detail::SupportsInsertionOperator
45 decltype(InsertionOperatorTest(FakeReference<TStream2>(), std::declval<T2>()))::value;
62 static constexpr bool value = member in struct:art::detail::SupportsEqualityOperatorImpl
63 decltype(EqualityOperatorTest(std::declval<TLeft>(), std::declval<TRight>()))::value;
72 static constexpr bool value = true; member in struct:art::detail::SupportsEqualityOperatorImpl
75 // SupportsEqualityOperatorImpl<T1, T2>::value wil
91 ToStringAny(const T& value, typename std::enable_if< SupportsInsertionOperator<T>::value>::type* = 0) argument
95 stream << value; local
100 ToStringAny(const std::vector<T> value, typename std::enable_if< SupportsInsertionOperator<T>::value>::type* = 0) argument
[all...]
/art/cmdline/
H A Dmemory_representation.h29 // The underlying runtime size_t value is guaranteed to be a multiple of Divisor.
40 Memory(size_t value) : Value(value) { // NOLINT [runtime/explicit] [5] argument
41 assert(value % kDivisor == 0);
/art/compiler/optimizing/
H A Dlocations.cc59 int64_t value = instruction->AsConstant()->AsLongConstant()->GetValue(); local
61 return IsInt<32>(value)
/art/runtime/
H A Datomic.cc51 void QuasiAtomic::SwapMutexWrite64(volatile int64_t* addr, int64_t value) { argument
53 *addr = value;
H A Dmonitor_android.cc37 static char* EventLogWriteInt(char* dst, int value) { argument
39 Set4LE(reinterpret_cast<uint8_t*>(dst), value); local
43 static char* EventLogWriteString(char* dst, const char* value, size_t len) { argument
48 memcpy(dst, value, len);
/art/test/421-exceptions/src/
H A DMain.java55 public static void $opt$foo(int value) { argument
56 System.out.println(value);
57 if (value == barState) {
/art/test/425-invoke-super/src/
H A DMain.java35 static void assertEquals(int expected, int value) { argument
36 if (expected != value) {
37 throw new Error("Expected " + expected + ", got " + value);
/art/test/438-volatile/src/
H A DMain.java41 public static void checkVolatileUpdate(long value) { argument
42 if (value != $opt$update(value)) {
43 throw new RuntimeException("Volatile update failed for long:" + value);
47 public static void checkVolatileUpdate(double value) { argument
48 if (value != $opt$update(value)) {
49 throw new RuntimeException("Volatile update failed for double:" + value);
/art/test/454-get-vreg/
H A Dget_vreg_jni.cc42 uint32_t value = 0; local
44 CHECK(GetVReg(m, 0, kIntVReg, &value));
45 CHECK_EQ(value, 42u);
47 bool success = GetVReg(m, 1, kIntVReg, &value);
50 success = GetVReg(m, 2, kIntVReg, &value);
53 CHECK(GetVReg(m, 3, kReferenceVReg, &value));
54 CHECK_EQ(reinterpret_cast<mirror::Object*>(value), this_value_);
56 CHECK(GetVReg(m, 4, kIntVReg, &value));
57 CHECK_EQ(value, 1u);
59 CHECK(GetVReg(m, 5, kFloatVReg, &value));
76 uint64_t value = 0; local
114 Java_Main_doNativeCall(JNIEnv*, jobject value) argument
[all...]

Completed in 6041 milliseconds

12345678