Home
last modified time | relevance | path

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

/external/v8/src/builtins/
Dbuiltins-array.cc1171 uint32_t estimate_result_length = 0; in Slow_ArrayConcat() local
1195 if (JSObject::kMaxElementCount - estimate_result_length < length_estimate) { in Slow_ArrayConcat()
1196 estimate_result_length = JSObject::kMaxElementCount; in Slow_ArrayConcat()
1198 estimate_result_length += length_estimate; in Slow_ArrayConcat()
1211 (estimate_nof * 2) >= estimate_result_length && in Slow_ArrayConcat()
1216 isolate->factory()->NewFixedDoubleArray(estimate_result_length); in Slow_ArrayConcat()
1219 if (estimate_result_length > 0) { in Slow_ArrayConcat()
1297 isolate->factory()->NewFixedArrayWithHoles(estimate_result_length); in Slow_ArrayConcat()