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;
1315 * within the time limit.
1376 * and requires higher heap limit.
1381 * Restores the original heap limit after IncreaseHeapLimitForDebugging().
1386 * Returns true if the heap limit was increased for debugging and the
1387 * original heap limit was not restored yet.
1417 * Modifies the stack limit for this Isolate.
1422 * while setting the stack limit and you must set a non-default stack
1423 * limit separately for each thread.
1479 * Add a callback to invoke in case the heap size is close to the heap limit.
1486 * Remove the given callback and restore the heap limit to the
1487 * given limit. If the given limit is zero, then it is ignored.
1488 * If the current heap size is greater than the given limit,
1489 * then the heap limit is restored to the minimal limit that
1496 * If the heap limit was changed by the NearHeapLimitCallback, then the
1497 * initial heap limit will be restored once the heap size falls below the
1498 * given threshold percentage of the initial heap limit.