/art/runtime/mirror/ |
object.h | 176 T GetFieldObject(MemberOffset field_offset, bool is_volatile) const { 177 T result = reinterpret_cast<T>(GetField32(field_offset, is_volatile)); 182 void SetFieldObject(MemberOffset field_offset, const Object* new_value, bool is_volatile, 185 SetField32(field_offset, reinterpret_cast<uint32_t>(new_value), is_volatile, this_is_valid); 187 CheckFieldAssignment(field_offset, new_value); 188 WriteBarrierField(this, field_offset, new_value); 192 uint32_t GetField32(MemberOffset field_offset, bool is_volatile) const { 194 const byte* raw_addr = reinterpret_cast<const byte*>(this) + field_offset.Int32Value(); 203 void SetField32(MemberOffset field_offset, uint32_t new_value, bool is_volatile, 208 byte* raw_addr = reinterpret_cast<byte*>(this) + field_offset.Int32Value() [all...] |
object.cc | 71 MemberOffset field_offset = field->GetOffset(); local 72 const Object* ref = copy->GetFieldObject<const Object*>(field_offset, false); 73 heap->WriteBarrierField(copy.get(), field_offset, ref); 85 void Object::CheckFieldAssignmentImpl(MemberOffset field_offset, const Object* new_value) { 98 if (field->GetOffset().Int32Value() == field_offset.Int32Value()) { 116 if (field->GetOffset().Int32Value() == field_offset.Int32Value()) { 125 << " of type " << PrettyDescriptor(c) << " at offset " << field_offset;
|
object-inl.h | 241 inline uint64_t Object::GetField64(MemberOffset field_offset, bool is_volatile) const { 243 const byte* raw_addr = reinterpret_cast<const byte*>(this) + field_offset.Int32Value(); 254 inline void Object::SetField64(MemberOffset field_offset, uint64_t new_value, bool is_volatile) { 256 byte* raw_addr = reinterpret_cast<byte*>(this) + field_offset.Int32Value(); 267 inline void Object::WriteBarrierField(const Object* dst, MemberOffset field_offset, 269 Runtime::Current()->GetHeap()->WriteBarrierField(dst, field_offset, new_value);
|
/external/qemu/distrib/sdl-1.2.15/src/video/windx5/ |
directx.h | 66 #ifndef FIELD_OFFSET 67 #define FIELD_OFFSET(type, field) ((LONG)&(((type *)0)->field)) 89 #define DIMOFS_BUTTON4 (FIELD_OFFSET(DIMOUSESTATE2, rgbButtons) + 4) 90 #define DIMOFS_BUTTON5 (FIELD_OFFSET(DIMOUSESTATE2, rgbButtons) + 5) 91 #define DIMOFS_BUTTON6 (FIELD_OFFSET(DIMOUSESTATE2, rgbButtons) + 6) 92 #define DIMOFS_BUTTON7 (FIELD_OFFSET(DIMOUSESTATE2, rgbButtons) + 7)
|
/external/smali/smali/src/test/resources/LexerTest/ |
MiscTest.tokens | 56 FIELD_OFFSET("field@0xABCD") 57 FIELD_OFFSET("field@0x0123") 58 FIELD_OFFSET("field@0x0123ABCD")
|
/external/qemu/distrib/sdl-1.2.15/src/audio/windx5/ |
directx.h | 66 #ifndef FIELD_OFFSET 67 #define FIELD_OFFSET(type, field) ((LONG)&(((type *)0)->field))
|
/art/runtime/gc/collector/ |
mark_sweep-inl.h | 126 MemberOffset field_offset = CLASS_OFFSET_FROM_CLZ(right_shift); local 127 const mirror::Object* ref = obj->GetFieldObject<const mirror::Object*>(field_offset, false); 128 visitor(obj, ref, field_offset, is_static); 145 MemberOffset field_offset = field->GetOffset(); local 146 const mirror::Object* ref = obj->GetFieldObject<const mirror::Object*>(field_offset, false); 147 visitor(obj, ref, field_offset, is_static);
|
/dalvik/dx/src/com/android/dx/io/ |
IndexType.java | 51 FIELD_OFFSET;
|
/external/dexmaker/src/dx/java/com/android/dx/io/ |
IndexType.java | 51 FIELD_OFFSET;
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
lower_ubo_reference.cpp | 210 unsigned int field_offset = 0; local 219 field_offset = 220 align(field_offset, 223 emit_ubo_loads(field_deref, base_offset, deref_offset + field_offset); 225 field_offset += field->type->std140_size(ubo_var->RowMajor);
|
/external/mesa3d/src/glsl/ |
lower_ubo_reference.cpp | 210 unsigned int field_offset = 0; local 219 field_offset = 220 align(field_offset, 223 emit_ubo_loads(field_deref, base_offset, deref_offset + field_offset); 225 field_offset += field->type->std140_size(ubo_var->RowMajor);
|
/external/chromium_org/courgette/ |
types_win_pe.h | 54 // This is FIELD_OFFSET(IMAGE_DOS_HEADER, e_lfanew):
|
/art/compiler/dex/ |
dex_to_dex_compiler.cc | 217 int field_offset; local 219 bool fast_path = driver_.ComputeInstanceFieldInfo(field_idx, &unit_, field_offset, 221 if (fast_path && !is_volatile && IsUint(16, field_offset)) { 225 << " by field offset " << field_offset 231 inst->SetVRegC_22c(static_cast<uint16_t>(field_offset));
|
/development/host/windows/usb/api/ |
adb_api_private_defines.h | 69 return static_cast<ULONG>(FIELD_OFFSET(AdbInterfaceInfo, device_name) +
|
/art/compiler/dex/quick/ |
gen_common.cc | 336 int field_offset; local 341 field_idx, mir_graph_->GetCurrentDexCompilationUnit(), field_offset, ssb_index, 344 DCHECK_GE(field_offset, 0); 398 StoreBaseDispWide(rBase, field_offset, rl_src.low_reg, 401 StoreWordDisp(rBase, field_offset, rl_src.low_reg); 422 int field_offset; local 427 field_idx, mir_graph_->GetCurrentDexCompilationUnit(), field_offset, ssb_index, 430 DCHECK_GE(field_offset, 0); 475 LoadBaseDispWide(rBase, field_offset, rl_result.low_reg, 478 LoadWordDisp(rBase, field_offset, rl_result.low_reg) 648 int field_offset; local 709 int field_offset; local [all...] |
/external/chromium_org/v8/src/ |
heap-snapshot-generator.h | 428 int field_offset); 441 int field_offset = -1); 446 int field_offset = -1); 455 int field_offset); 461 int field_offset = -1);
|
heap-snapshot-generator.cc | [all...] |
/art/compiler/ |
image_writer.cc | 632 MemberOffset field_offset = field->GetOffset(); local 633 const Object* ref = orig->GetFieldObject<const Object*>(field_offset, false); 635 copy->SetFieldPtr(field_offset, GetImageAddress(ref), false); 642 MemberOffset field_offset = field->GetOffset(); local 643 const Object* ref = orig->GetFieldObject<const Object*>(field_offset, false); 645 copy->SetFieldPtr(field_offset, GetImageAddress(ref), false);
|
/art/compiler/llvm/ |
gbc_expander.cc | 1121 int field_offset = local 1144 int field_offset = local 1168 int field_offset = local 1189 int field_offset = local 1630 int field_offset; local 1692 int field_offset; local 1894 int field_offset; local 1978 int field_offset; local [all...] |
/external/chromium_org/content/browser/gamepad/ |
gamepad_platform_data_fetcher_win.cc | 126 {0, FIELD_OFFSET(JoyData, axes) + 4 * i, \ 129 {&GUID_Button, FIELD_OFFSET(JoyData, buttons) + i, \ 132 {&GUID_POV, FIELD_OFFSET(JoyData, pov), DIDFT_POV | DIDFT_OPTIONAL, 0}
|
/art/compiler/dex/quick/arm/ |
call_arm.cc | 130 int field_offset; local 133 bool fast_path = FastInstance(field_idx, field_offset, is_volatile, false); 155 int field_offset; local 158 bool fast_path = FastInstance(field_idx, field_offset, is_volatile, false);
|
/external/chromium_org/chrome_frame/ |
function_stub_unittest.cc | 26 FIELD_OFFSET(TestFunctionStub, signature_);
|
/external/v8/src/ |
profile-generator.h | 962 int field_offset = -1); 967 int field_offset = -1); 976 int field_offset); 982 int field_offset = -1); [all...] |
/art/compiler/driver/ |
compiler_driver.h | 174 int& field_offset, bool& is_volatile, bool is_put) 180 int& field_offset, int& ssb_index,
|
/development/host/windows/usb/winusb/ |
adb_winusb_interface.cpp | 198 FIELD_OFFSET(USB_STRING_DESCRIPTOR, bString)) /
|