Lines Matching refs:f

1558 static void GetSetBooleanStatic(ArtField* f, Thread* self,  in GetSetBooleanStatic()  argument
1567 test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetBooleanStatic()
1574 size_t res = test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetBooleanStatic()
1583 UNUSED(f, self, referrer, test); in GetSetBooleanStatic()
1589 static void GetSetByteStatic(ArtField* f, Thread* self, ArtMethod* referrer, in GetSetByteStatic() argument
1597 test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetByteStatic()
1604 size_t res = test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetByteStatic()
1612 UNUSED(f, self, referrer, test); in GetSetByteStatic()
1620 static void GetSetBooleanInstance(Handle<mirror::Object>* obj, ArtField* f, Thread* self, in GetSetBooleanInstance() argument
1628 test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetBooleanInstance()
1635 uint8_t res = f->GetBoolean(obj->Get()); in GetSetBooleanInstance()
1638 f->SetBoolean<false>(obj->Get(), res); in GetSetBooleanInstance()
1640 size_t res2 = test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetBooleanInstance()
1649 UNUSED(obj, f, self, referrer, test); in GetSetBooleanInstance()
1655 static void GetSetByteInstance(Handle<mirror::Object>* obj, ArtField* f, in GetSetByteInstance() argument
1663 test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetByteInstance()
1670 int8_t res = f->GetByte(obj->Get()); in GetSetByteInstance()
1672 f->SetByte<false>(obj->Get(), ++res); in GetSetByteInstance()
1674 size_t res2 = test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetByteInstance()
1683 UNUSED(obj, f, self, referrer, test); in GetSetByteInstance()
1690 static void GetSetCharStatic(ArtField* f, Thread* self, ArtMethod* referrer, in GetSetCharStatic() argument
1698 test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetCharStatic()
1705 size_t res = test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetCharStatic()
1714 UNUSED(f, self, referrer, test); in GetSetCharStatic()
1720 static void GetSetShortStatic(ArtField* f, Thread* self, in GetSetShortStatic() argument
1728 test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetShortStatic()
1735 size_t res = test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetShortStatic()
1744 UNUSED(f, self, referrer, test); in GetSetShortStatic()
1751 static void GetSetCharInstance(Handle<mirror::Object>* obj, ArtField* f, in GetSetCharInstance() argument
1759 test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetCharInstance()
1766 uint16_t res = f->GetChar(obj->Get()); in GetSetCharInstance()
1768 f->SetChar<false>(obj->Get(), ++res); in GetSetCharInstance()
1770 size_t res2 = test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetCharInstance()
1779 UNUSED(obj, f, self, referrer, test); in GetSetCharInstance()
1785 static void GetSetShortInstance(Handle<mirror::Object>* obj, ArtField* f, in GetSetShortInstance() argument
1793 test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetShortInstance()
1800 int16_t res = f->GetShort(obj->Get()); in GetSetShortInstance()
1802 f->SetShort<false>(obj->Get(), ++res); in GetSetShortInstance()
1804 size_t res2 = test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSetShortInstance()
1813 UNUSED(obj, f, self, referrer, test); in GetSetShortInstance()
1820 static void GetSet32Static(ArtField* f, Thread* self, ArtMethod* referrer, in GetSet32Static() argument
1828 test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSet32Static()
1835 size_t res = test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSet32Static()
1848 UNUSED(f, self, referrer, test); in GetSet32Static()
1856 static void GetSet32Instance(Handle<mirror::Object>* obj, ArtField* f, in GetSet32Instance() argument
1864 test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSet32Instance()
1871 int32_t res = f->GetInt(obj->Get()); in GetSet32Instance()
1875 f->SetInt<false>(obj->Get(), res); in GetSet32Instance()
1877 size_t res2 = test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSet32Instance()
1886 UNUSED(obj, f, self, referrer, test); in GetSet32Instance()
1917 static void GetSetObjStatic(ArtField* f, Thread* self, ArtMethod* referrer, in GetSetObjStatic() argument
1922 set_and_check_static(f->GetDexFieldIndex(), nullptr, self, referrer, test); in GetSetObjStatic()
1926 set_and_check_static(f->GetDexFieldIndex(), str, self, referrer, test); in GetSetObjStatic()
1928 set_and_check_static(f->GetDexFieldIndex(), nullptr, self, referrer, test); in GetSetObjStatic()
1930 UNUSED(f, self, referrer, test); in GetSetObjStatic()
1940 static void set_and_check_instance(ArtField* f, mirror::Object* trg, in set_and_check_instance() argument
1944 test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in set_and_check_instance()
1951 size_t res = test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in set_and_check_instance()
1960 EXPECT_EQ(val, f->GetObj(trg)); in set_and_check_instance()
1964 static void GetSetObjInstance(Handle<mirror::Object>* obj, ArtField* f, in GetSetObjInstance() argument
1969 set_and_check_instance(f, obj->Get(), nullptr, self, referrer, test); in GetSetObjInstance()
1973 set_and_check_instance(f, obj->Get(), str, self, referrer, test); in GetSetObjInstance()
1975 set_and_check_instance(f, obj->Get(), nullptr, self, referrer, test); in GetSetObjInstance()
1977 UNUSED(obj, f, self, referrer, test); in GetSetObjInstance()
1987 static void GetSet64Static(ArtField* f, Thread* self, ArtMethod* referrer, in GetSet64Static() argument
1995 test->Invoke3UWithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSet64Static()
2001 size_t res = test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSet64Static()
2010 UNUSED(f, self, referrer, test); in GetSet64Static()
2018 static void GetSet64Instance(Handle<mirror::Object>* obj, ArtField* f, in GetSet64Instance() argument
2026 test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSet64Instance()
2033 int64_t res = f->GetLong(obj->Get()); in GetSet64Instance()
2037 f->SetLong<false>(obj->Get(), res); in GetSet64Instance()
2039 size_t res2 = test->Invoke3WithReferrer(static_cast<size_t>(f->GetDexFieldIndex()), in GetSet64Instance()
2048 UNUSED(obj, f, self, referrer, test); in GetSet64Instance()
2077 ArtField* f = &fields[i]; in TestFields() local
2078 Primitive::Type type = f->GetTypeAsPrimitiveType(); in TestFields()
2084 GetSetBooleanStatic(f, self, m, test); in TestFields()
2087 GetSetByteStatic(f, self, m, test); in TestFields()
2090 GetSetCharStatic(f, self, m, test); in TestFields()
2093 GetSetShortStatic(f, self, m, test); in TestFields()
2096 GetSet32Static(f, self, m, test); in TestFields()
2099 GetSet64Static(f, self, m, test); in TestFields()
2103 if (f->GetTypeDescriptor()[0] != '[') { in TestFields()
2104 GetSetObjStatic(f, self, m, test); in TestFields()
2116 ArtField* f = &fields[i]; in TestFields() local
2117 Primitive::Type type = f->GetTypeAsPrimitiveType(); in TestFields()
2123 GetSetBooleanInstance(&obj, f, self, m, test); in TestFields()
2126 GetSetByteInstance(&obj, f, self, m, test); in TestFields()
2129 GetSetCharInstance(&obj, f, self, m, test); in TestFields()
2132 GetSetShortInstance(&obj, f, self, m, test); in TestFields()
2135 GetSet32Instance(&obj, f, self, m, test); in TestFields()
2138 GetSet64Instance(&obj, f, self, m, test); in TestFields()
2142 if (f->GetTypeDescriptor()[0] != '[') { in TestFields()
2143 GetSetObjInstance(&obj, f, self, m, test); in TestFields()