Lines Matching defs:value
54 void PropertyArray::set(int index, Object value) {
59 RELAXED_WRITE_FIELD(*this, offset, value);
60 WRITE_BARRIER(*this, offset, value);
63 void PropertyArray::set(int index, Object value, WriteBarrierMode mode) {
67 RELAXED_WRITE_FIELD(*this, offset, value);
68 CONDITIONAL_WRITE_BARRIER(*this, offset, value, mode);
71 void PropertyArray::set(int index, Object value, SeqCstAccessTag tag) {
75 DCHECK(value.IsShared());
77 SEQ_CST_WRITE_FIELD(*this, offset, value);
84 Object PropertyArray::Swap(int index, Object value, SeqCstAccessTag tag) {
86 return Swap(cage_base, index, value, tag);
89 Object PropertyArray::Swap(PtrComprCageBase cage_base, int index, Object value,
94 DCHECK(value.IsShared());
96 OffsetOfElementAt(index), value);
121 int value = length_and_hash();
122 value = HashField::update(value, hash);
123 set_length_and_hash(value, kReleaseStore);