Home
last modified time | relevance | path

Searched refs:FIELD_ADDR (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/objects/
Dembedder-data-slot-inl.h23 : SlotBase(FIELD_ADDR(array, in EmbedderDataSlot()
27 : SlotBase(FIELD_ADDR( in EmbedderDataSlot()
59 ObjectSlot(FIELD_ADDR(array, slot_offset + kTaggedPayloadOffset)) in store_tagged()
64 ObjectSlot(FIELD_ADDR(array, slot_offset + kRawPayloadOffset)) in store_tagged()
73 ObjectSlot(FIELD_ADDR(object, slot_offset + kTaggedPayloadOffset)) in store_tagged()
79 ObjectSlot(FIELD_ADDR(object, slot_offset + kRawPayloadOffset)) in store_tagged()
Dobject-macros.h346 #define FIELD_ADDR(p, offset) ((p).ptr() + offset - kHeapObjectTag) macro
465 reinterpret_cast<const base::Atomic32*>(FIELD_ADDR(p, offset))))
468 base::Relaxed_Store(reinterpret_cast<base::Atomic8*>(FIELD_ADDR(p, offset)), \
472 reinterpret_cast<const base::Atomic8*>(FIELD_ADDR(p, offset))))
476 reinterpret_cast<const base::Atomic16*>(FIELD_ADDR(p, offset))))
480 reinterpret_cast<base::Atomic16*>(FIELD_ADDR(p, offset)), \
485 reinterpret_cast<const base::Atomic32*>(FIELD_ADDR(p, offset))))
489 reinterpret_cast<base::Atomic32*>(FIELD_ADDR(p, offset)), \
494 reinterpret_cast<const base::Atomic32*>(FIELD_ADDR(p, offset))))
498 reinterpret_cast<base::Atomic32*>(FIELD_ADDR(p, offset)), \
[all …]
Dobject-macros-undef.h51 #undef FIELD_ADDR
Ddescriptor-array-inl.h52 FIELD_ADDR(*this, kRawNumberOfMarkedDescriptorsOffset)), in CompareAndSwapRawNumberOfMarkedDescriptors()
/external/v8/src/wasm/
Dwasm-objects-inl.h74 return base::ReadUnalignedValue<type>(FIELD_ADDR(*this, offset)); \
76 return *reinterpret_cast<type const*>(FIELD_ADDR(*this, offset)); \
86 base::WriteUnalignedValue<type>(FIELD_ADDR(*this, offset), value); \
88 *reinterpret_cast<type*>(FIELD_ADDR(*this, offset)) = value; \
423 return ObjectSlot(FIELD_ADDR(*this, offset)); in RawField()