Home
last modified time | relevance | path

Searched refs:estimate_result_length (Results 1 - 1 of 1) sorted by relevance

/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-array.cc1270 uint32_t estimate_result_length = 0; in Slow_ArrayConcat() local
1297 if (JSArray::kMaxArrayLength - estimate_result_length < length_estimate) { in Slow_ArrayConcat()
1298 estimate_result_length = JSArray::kMaxArrayLength; in Slow_ArrayConcat()
1300 estimate_result_length += length_estimate; in Slow_ArrayConcat()
1313 (estimate_nof * 2) >= estimate_result_length && in Slow_ArrayConcat()
1318 isolate->factory()->NewFixedDoubleArray(estimate_result_length); in Slow_ArrayConcat()
1321 if (estimate_result_length > 0) { in Slow_ArrayConcat()
1405 isolate->factory()->NewFixedArrayWithHoles(estimate_result_length); in Slow_ArrayConcat()

Completed in 3 milliseconds