Searched refs:CapRelativeIndex (Results 1 – 1 of 1) sorted by relevance
/external/v8/src/builtins/ |
D | builtins-typed-array.cc | 28 int64_t CapRelativeIndex(Handle<Object> num, int64_t minimum, int64_t maximum) { in CapRelativeIndex() function 65 to = CapRelativeIndex(num, 0, len); in BUILTIN() 70 from = CapRelativeIndex(num, 0, len); in BUILTIN() 76 final = CapRelativeIndex(num, 0, len); in BUILTIN() 138 start = CapRelativeIndex(num, 0, len); in BUILTIN() 144 end = CapRelativeIndex(num, 0, len); in BUILTIN() 184 index = CapRelativeIndex(num, 0, len); in BUILTIN() 216 index = CapRelativeIndex(num, 0, len); in BUILTIN() 249 index = std::min<int64_t>(CapRelativeIndex(num, -1, len), len - 1); in BUILTIN()
|