Lines Matching defs:limit
21 // StackGuard contains the handling of the limits that are used to limit the
33 void SetStackLimit(uintptr_t limit);
145 // The stack limit is split into a JavaScript and a C++ stack limit. These
148 // values. The one with the real_ prefix is the actual stack limit
150 // the actual stack limit except when there is an interruption (e.g. debug
155 // Actual JavaScript stack limit set for the VM.
157 // Actual C++ stack limit set for the VM.
168 void set_jslimit(uintptr_t limit) {
170 static_cast<base::AtomicWord>(limit));
175 void set_climit(uintptr_t limit) {
177 static_cast<base::AtomicWord>(limit));