Lines Matching refs:store

1661       TaggedField<Object>::store(result, offset, *elements[i].to_ref());
1703 TaggedField<Object>::store(result, offset, *args[i].to_ref());
2460 // Initial size of the backing store to avoid resize of the storage during
2487 // Allocate the global object and initialize it with the backing store.
3171 // If there's a start_position, then there's no need to store the
3575 FixedArray store =
3578 store.set(JSRegExp::kTagIndex, Smi::FromInt(JSRegExp::ATOM));
3579 store.set(JSRegExp::kSourceIndex, *source, SKIP_WRITE_BARRIER);
3580 store.set(JSRegExp::kFlagsIndex, Smi::FromInt(flags));
3581 store.set(JSRegExp::kAtomPatternIndex, *data, SKIP_WRITE_BARRIER);
3582 regexp->set_data(store);
3590 FixedArray store =
3597 store.set(JSRegExp::kTagIndex, Smi::FromInt(JSRegExp::IRREGEXP));
3598 store.set(JSRegExp::kSourceIndex, *source, SKIP_WRITE_BARRIER);
3599 store.set(JSRegExp::kFlagsIndex, Smi::FromInt(flags));
3600 store.set(JSRegExp::kIrregexpLatin1CodeIndex, uninitialized);
3601 store.set(JSRegExp::kIrregexpUC16CodeIndex, uninitialized);
3602 store.set(JSRegExp::kIrregexpLatin1BytecodeIndex, uninitialized);
3603 store.set(JSRegExp::kIrregexpUC16BytecodeIndex, uninitialized);
3604 store.set(JSRegExp::kIrregexpMaxRegisterCountIndex, Smi::zero());
3605 store.set(JSRegExp::kIrregexpCaptureCountIndex, Smi::FromInt(capture_count));
3606 store.set(JSRegExp::kIrregexpCaptureNameMapIndex, uninitialized);
3607 store.set(JSRegExp::kIrregexpTicksUntilTierUpIndex, ticks_until_tier_up);
3608 store.set(JSRegExp::kIrregexpBacktrackLimit, Smi::FromInt(backtrack_limit));
3609 regexp->set_data(store);
3616 FixedArray store =
3621 store.set(JSRegExp::kTagIndex, Smi::FromInt(JSRegExp::EXPERIMENTAL));
3622 store.set(JSRegExp::kSourceIndex, *source, SKIP_WRITE_BARRIER);
3623 store.set(JSRegExp::kFlagsIndex, Smi::FromInt(flags));
3624 store.set(JSRegExp::kIrregexpLatin1CodeIndex, uninitialized);
3625 store.set(JSRegExp::kIrregexpUC16CodeIndex, uninitialized);
3626 store.set(JSRegExp::kIrregexpLatin1BytecodeIndex, uninitialized);
3627 store.set(JSRegExp::kIrregexpUC16BytecodeIndex, uninitialized);
3628 store.set(JSRegExp::kIrregexpMaxRegisterCountIndex, uninitialized);
3629 store.set(JSRegExp::kIrregexpCaptureCountIndex, Smi::FromInt(capture_count));
3630 store.set(JSRegExp::kIrregexpCaptureNameMapIndex, uninitialized);
3631 store.set(JSRegExp::kIrregexpTicksUntilTierUpIndex, uninitialized);
3632 store.set(JSRegExp::kIrregexpBacktrackLimit, uninitialized);
3633 regexp->set_data(store);