Home
last modified time | relevance | path

Searched refs:old_ (Results 1 – 3 of 3) sorted by relevance

/third_party/node/deps/v8/src/heap/
Darray-buffer-sweeper.cc82 old_(std::move(old)), in SweepingJob()
94 ArrayBufferList old_; member
105 ReleaseAll(&old_); in ~ArrayBufferSweeper()
153 if (young_.IsEmpty() && (old_.IsEmpty() || type == SweepingType::kYoung)) in RequestSweep()
186 job_ = std::make_unique<SweepingJob>(std::move(young_), std::move(old_), in Prepare()
189 old_ = ArrayBufferList(); in Prepare()
199 old_.Append(&job_->old_); in Finalize()
226 old_.Append(extension); in Append()
249 DCHECK_GE(old_.bytes_, bytes); in Detach()
250 old_.bytes_ -= bytes; in Detach()
[all …]
Darray-buffer-sweeper.h63 const ArrayBufferList& old() const { return old_; } in old()
95 ArrayBufferList old_; variable
/third_party/vixl/src/aarch32/
Dassembler-aarch32.h79 bool old_; variable
83 : assembler_(assembler), old_(assembler->allow_unpredictable_) { in AllowUnpredictableScope()
86 ~AllowUnpredictableScope() { assembler_->allow_unpredictable_ = old_; } in ~AllowUnpredictableScope()
90 bool old_; variable
94 : assembler_(assembler), old_(assembler->allow_strongly_discouraged_) { in AllowStronglyDiscouragedScope()
98 assembler_->allow_strongly_discouraged_ = old_; in ~AllowStronglyDiscouragedScope()