Home
last modified time | relevance | path

Searched refs:GetB (Results 1 – 9 of 9) sorted by relevance

/aosp12/packages/apps/Gallery2/jni/filters/
H A Dfilters.h29 #define GetB(color) (((color) >> 16) & 0xFF) macro
/aosp12/art/runtime/
H A Djvalue.h38 int8_t GetB() const { return b; } in PACKED()
H A Dreflection_test.cc156 EXPECT_EQ(0, result.GetB()); in InvokeIdentityByteMethod()
160 EXPECT_EQ(-1, result.GetB()); in InvokeIdentityByteMethod()
164 EXPECT_EQ(SCHAR_MAX, result.GetB()); in InvokeIdentityByteMethod()
169 EXPECT_EQ(SCHAR_MIN, result.GetB()); in InvokeIdentityByteMethod()
H A Dcommon_dex_operations.h197 field->SetByte<transaction_active>(obj, value.GetB()); in DoFieldPutCommon()
/aosp12/art/runtime/native/
H A Djava_lang_reflect_Field.cc242 return GetPrimitiveField<Primitive::kPrimByte>(env, javaField, javaObj).GetB(); in Field_getByte()
288 o->SetFieldBooleanVolatile<false>(offset, new_value.GetB()); in SetFieldValue()
290 o->SetFieldBoolean<false>(offset, new_value.GetB()); in SetFieldValue()
/aosp12/art/runtime/jni/
H A Djni_internal.cc994 return result.GetB(); in CallByteMethod()
1001 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetB(); in CallByteMethodV()
1008 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetB(); in CallByteMethodA()
1251 return result.GetB(); in CallNonvirtualByteMethod()
1259 return InvokeWithVarArgs(soa, obj, mid, args).GetB(); in CallNonvirtualByteMethodV()
1267 return InvokeWithJValues(soa, obj, mid, args).GetB(); in CallNonvirtualByteMethodA()
1727 return result.GetB(); in CallStaticByteMethod()
1733 return InvokeWithVarArgs(soa, nullptr, mid, args).GetB(); in CallStaticByteMethodV()
1739 return InvokeWithJValues(soa, nullptr, mid, args).GetB(); in CallStaticByteMethodA()
/aosp12/art/runtime/interpreter/
H A Dinterpreter_common.h528 shadow_frame.SetVReg(vregA, result.GetB()); in DoFieldGet()
H A Dunstarted_runtime_test.cc241 EXPECT_EQ(result.GetB(), static_cast<int8_t>(base_array[i])); in TEST_F()
/aosp12/art/runtime/dex/
H A Ddex_file_annotations.cc617 i, new_annotation_value.value_.GetB()); in ProcessAnnotationValue()