Home
last modified time | relevance | path

Searched refs:growth (Results 1 – 25 of 58) sorted by relevance

123

/external/v8/src/
Dcollector.h142 int growth = current_length * (growth_factor - 1); in Grow() local
143 if (growth > max_growth) { in Grow()
144 growth = max_growth; in Grow()
146 new_capacity = current_length + growth; in Grow()
148 new_capacity = min_capacity + growth; in Grow()
/external/google-breakpad/src/client/
Dminidump_file_writer.cc226 size_t growth = aligned_size; in Allocate() local
230 if (growth < minimal_growth) in Allocate()
231 growth = minimal_growth; in Allocate()
233 size_t new_size = size_ + growth; in Allocate()
/external/libcxxabi/test/
Dtest_fallback_malloc.pass.cpp30 container alloc_series ( size_t sz, float growth ) { in alloc_series() argument
36 sz *= growth; in alloc_series()
/external/python/cpython3/Objects/
Dbytearrayobject.c447 Py_ssize_t growth = bytes_len - avail; in bytearray_setslice_linear() local
451 if (growth < 0) { in bytearray_setslice_linear()
457 self->ob_start -= growth; in bytearray_setslice_linear()
476 Py_SIZE(self) + growth) < 0) { in bytearray_setslice_linear()
487 self->ob_start += growth; in bytearray_setslice_linear()
492 Py_SIZE(self) += growth; in bytearray_setslice_linear()
497 else if (growth > 0) { in bytearray_setslice_linear()
498 if (Py_SIZE(self) > (Py_ssize_t)PY_SSIZE_T_MAX - growth) { in bytearray_setslice_linear()
504 Py_SIZE(self) + growth) < 0) { in bytearray_setslice_linear()
/external/e2fsprogs/tests/r_ext4_big_expand/
Dscript3 test_description="very large fs growth using ext4"
/external/e2fsprogs/tests/r_64bit_big_expand/
Dscript3 test_description="very large fs growth using ext4 w/64bit"
/external/python/cpython3/Modules/_ctypes/libffi/
Dfficonfig.h.in161 direction of stack growth for your system; otherwise it will be
165 STACK_DIRECTION = 0 => direction of growth unknown */
/external/python/cpython2/Modules/_ctypes/libffi/
Dfficonfig.h.in161 direction of stack growth for your system; otherwise it will be
165 STACK_DIRECTION = 0 => direction of growth unknown */
/external/pcre/pcrecpp/
Dpcrecpp_unittest.cc120 const double growth = double(final_size - initial_size) / final_size;
121 printf("Growth: %0.2f%%", growth * 100);
122 CHECK(growth < 0.02); // Allow < 2% growth
/external/jsoncpp/src/lib_json/
Djson_internalmap.inl189 bool ValueInternalMap::reserveDelta(BucketIndex growth) { argument
190 return reserve(itemCount_ + growth);
/external/llvm/test/CodeGen/Hexagon/
Dopt-addr-mode.ll2 …exagon-small-data-threshold=0 -disable-hexagon-amodeopt=0 -hexagon-amode-growth-limit=4 < %s | Fil…
/external/llvm/test/Transforms/Inline/
Dinline-tail.ll38 ; to prevent unbounded stack growth.
/external/jsoncpp/include/json/
Dvalue.h695 bool reserveDelta(BucketIndex growth);
/external/valgrind/docs/internals/
Dsegments-seginfos.txt18 * stack growth
/external/tensorflow/tensorflow/docs_src/programmers_guide/
Dusing_gpu.md83 ## Allowing GPU memory growth
/external/deqp/doc/testspecs/GLES31/
Dfunctional.tessellation.txt83 segment length growth, and the requirement that two edges with identical clamped
/external/e2fsprogs/lib/
Dconfig.h.in673 direction of stack growth for your system; otherwise it will be
677 STACK_DIRECTION = 0 => direction of growth unknown */
/external/vixl/doc/aarch32/design/
Dcode-generation-aarch32.md202 // - No automatic buffer growth, but does check that there is space. (In
/external/python/cpython2/Objects/
Ddictnotes.txt110 rather than growth.
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DACBTree.m167 /* check for growth at the root */
/external/swiftshader/docs/
DReactor.md37 … specialize at every opportunity because it would result in an explosive growth of the amount of g…
/external/tensorflow/tensorflow/docs_src/tutorials/
Dwide.md251 early stage of one's career, then the growth may slow at some point, and finally
/external/harfbuzz_ng/
DNEWS562 * Bound buffer growth during shaping to 32x,
563 * Fix assertions and other issues at OOM / buffer max-growth.
/external/jemalloc/
DChangeLog744 growth-triggered heap profile dumps.
755 interval- and growth-triggered heap profiles.
/external/flac/libFLAC/
Dmetadata_iterators.c1092 const unsigned growth = FLAC__STREAM_METADATA_HEADER_LENGTH + node->next->data->length; in chain_merge_adjacent_padding_() local
1093 …node->data->length += growth; /* new block size can be greater than max metadata block size, but i… in chain_merge_adjacent_padding_()

123