#include "src/builtins/builtins-utils-inl.h"
#include "src/builtins/builtins.h"
#include "src/logging/counters.h"
#include "src/objects/elements.h"
#include "src/objects/heap-number-inl.h"
#include "src/objects/js-array-buffer-inl.h"
#include "src/objects/objects-inl.h"
namespace v8 {
namespace internal {
BUILTIN(TypedArrayPrototypeBuffer) { … }
namespace {
int64_t CapRelativeIndex(DirectHandle<Object> num, int64_t minimum,
int64_t maximum) { … }
}
BUILTIN(TypedArrayPrototypeCopyWithin) { … }
BUILTIN(TypedArrayPrototypeFill) { … }
BUILTIN(TypedArrayPrototypeIncludes) { … }
BUILTIN(TypedArrayPrototypeIndexOf) { … }
BUILTIN(TypedArrayPrototypeLastIndexOf) { … }
BUILTIN(TypedArrayPrototypeReverse) { … }
}
}