HomeSort by relevance Sort by last modified time
    Searched defs:start_from (Results 1 - 2 of 2) sorted by null

  /external/v8/src/runtime/
runtime-array.cc 484 int start_from = Smi::cast(*from_index)->value(); local
485 if (start_from < 0) {
486 index = std::max<int64_t>(len + start_from, 0);
488 index = start_from;
492 double start_from = from_index->Number(); local
493 if (start_from >= len) return isolate->heap()->false_value();
494 if (V8_LIKELY(std::isfinite(start_from))) {
495 if (start_from < 0) {
496 index = static_cast<int64_t>(std::max<double>(start_from + len, 0));
498 index = start_from;
    [all...]
  /external/v8/src/builtins/
builtins-array.cc 1685 Node* const start_from = Parameter(2); local
1996 Node* start_from = assembler.Parameter(2); local
    [all...]

Completed in 61 milliseconds