Home
last modified time | relevance | path

Searched refs:interrupt_budget (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/objects/
Dcode-inl.h656 int BytecodeArray::interrupt_budget() const { in interrupt_budget() function
660 void BytecodeArray::set_interrupt_budget(int interrupt_budget) { in set_interrupt_budget() argument
661 DCHECK_GE(interrupt_budget, 0); in set_interrupt_budget()
662 WRITE_INT_FIELD(this, kInterruptBudgetOffset, interrupt_budget); in set_interrupt_budget()
Dcode.h736 inline int interrupt_budget() const;
737 inline void set_interrupt_budget(int interrupt_budget);
/external/v8/src/
Dflag-definitions.h337 DEFINE_INT(interrupt_budget, 144 * KB,
/external/v8/src/heap/
Dfactory.cc2754 copy->set_interrupt_budget(bytecode_array->interrupt_budget()); in CopyBytecodeArray()