Home | History | Annotate | Download | only in src

Lines Matching full:estimate_result_length

1223   uint32_t estimate_result_length = 0;
1251 if (JSObject::kMaxElementCount - estimate_result_length < length_estimate) {
1252 estimate_result_length = JSObject::kMaxElementCount;
1254 estimate_result_length += length_estimate;
1266 bool fast_case = (estimate_nof_elements * 2) >= estimate_result_length;
1270 isolate->factory()->NewFixedDoubleArray(estimate_result_length);
1273 if (estimate_result_length > 0) {
1355 isolate->factory()->NewFixedArrayWithHoles(estimate_result_length);