Lines Matching defs:limit

54  * setting the stack limit and you must set a non-default stack limit separately
66 * provided heap size limit. The heap size includes both the young and
76 * \param maximum_heap_size_in_bytes The hard limit for the heap size.
77 * When the heap size approaches this limit, V8 will perform series of
79 * collections do not help and the callback does not increase the limit,
92 * device, in bytes, or zero, if there is no limit.
113 void set_code_range_size_in_bytes(size_t limit) { code_range_size_ = limit; }
117 * When the old generation approaches this limit, V8 will perform series of
120 * increase the limit, then V8 will crash with V8::FatalProcessOutOfMemory.
125 void set_max_old_generation_size_in_bytes(size_t limit) {
126 max_old_generation_size_ = limit;
137 void set_max_young_generation_size_in_bytes(size_t limit) {
138 max_young_generation_size_ = limit;
1293 * within the time limit.
1358 * and requires higher heap limit.
1363 * Restores the original heap limit after IncreaseHeapLimitForDebugging().
1368 * Returns true if the heap limit was increased for debugging and the
1369 * original heap limit was not restored yet.
1399 * Modifies the stack limit for this Isolate.
1404 * while setting the stack limit and you must set a non-default stack
1405 * limit separately for each thread.
1461 * Add a callback to invoke in case the heap size is close to the heap limit.
1468 * Remove the given callback and restore the heap limit to the
1469 * given limit. If the given limit is zero, then it is ignored.
1470 * If the current heap size is greater than the given limit,
1471 * then the heap limit is restored to the minimal limit that
1478 * If the heap limit was changed by the NearHeapLimitCallback, then the
1479 * initial heap limit will be restored once the heap size falls below the
1480 * given threshold percentage of the initial heap limit.