Home
last modified time | relevance | path

Searched defs:typedArray (Results 1 – 23 of 23) sorted by relevance

/arkcompiler/ets_runtime/test/fuzztest/jsvaluerefisarray_fuzzer/
Djsvaluerefisarray_fuzzer.cpp35 Local<JSValueRef> typedArray = Int8ArrayRef::New(vm, arrayBuffer, 0, (int32_t)size); in IsInt8ArrayFuzztest() local
51 Local<JSValueRef> typedArray = Uint8ArrayRef::New(vm, arrayBuffer, 0, (int32_t)size); in IsUint8ArrayFuzztest() local
67 Local<JSValueRef> typedArray = Uint8ClampedArrayRef::New(vm, arrayBuffer, 0, (int32_t)size); in IsUint8ClampedArrayFuzztest() local
84 Local<JSValueRef> typedArray = Int16ArrayRef::New(vm, arrayBuffer, 0, length); in IsInt16ArrayFuzztest() local
101 Local<JSValueRef> typedArray = Uint16ArrayRef::New(vm, arrayBuffer, 0, length); in IsUint16ArrayFuzztest() local
/arkcompiler/ets_runtime/test/moduletest/typedarrayjoin/
Dtypedarrayjoin.js31 let typedArray; variable
41 typedArray = new constructor(arr); variable
/arkcompiler/ets_runtime/ecmascript/base/
Datomic_helper.cpp22 …Value AtomicHelper::ValidateIntegerTypedArray(JSThread *thread, JSHandle<JSTaggedValue> typedArray, in ValidateIntegerTypedArray()
58 …32_t AtomicHelper::ValidateAtomicAccess(JSThread *thread, const JSHandle<JSTaggedValue> typedArray, in ValidateAtomicAccess()
90 JSTaggedValue AtomicHelper::AtomicStore(JSThread *thread, const JSHandle<JSTaggedValue> &typedArray, in AtomicStore()
117 JSTaggedValue AtomicHelper::AtomicLoad(JSThread *thread, const JSHandle<JSTaggedValue> &typedArray, in AtomicLoad()
/arkcompiler/ets_runtime/test/fuzztest/jsvaluerefisbig64array_fuzzer/
Djsvaluerefisbig64array_fuzzer.cpp48 … Local<BigInt64ArrayRef> typedArray = BigInt64ArrayRef::New(vm, ref, (int32_t)size, (int32_t)size); in JSValueRefIsBigInt64ArrayFuzzTest() local
75 …Local<BigUint64ArrayRef> typedArray = BigUint64ArrayRef::New(vm, ref, (int32_t)size, (int32_t)size… in JSValueRefIsBigUint64ArrayRefNewFuzzTest() local
/arkcompiler/ets_runtime/test/aottest/mono_builtin/
Dmono_builtin.ts37 const typedArray = new Int8Array(8); variable
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_atomics.cpp39 JSHandle<JSTaggedValue> typedArray = GetCallArg(argv, 0); in Sub() local
50 JSHandle<JSTaggedValue> typedArray = GetCallArg(argv, 0); in Add() local
61 JSHandle<JSTaggedValue> typedArray = GetCallArg(argv, 0); in And() local
72 JSHandle<JSTaggedValue> typedArray = GetCallArg(argv, 0); in Or() local
83 JSHandle<JSTaggedValue> typedArray = GetCallArg(argv, 0); in Xor() local
94 JSHandle<JSTaggedValue> typedArray = GetCallArg(argv, 0); in CompareExchange() local
105 JSHandle<JSTaggedValue> typedArray = GetCallArg(argv, 0); in Exchange() local
116 JSHandle<JSTaggedValue> typedArray = GetCallArg(argv, 0); in Store() local
128 JSHandle<JSTaggedValue> typedArray = GetCallArg(argv, 0); in Load() local
278 …BuiltinsAtomics::AtomicReadModifyWrite(JSThread *thread, const JSHandle<JSTaggedValue> &typedArray, in AtomicReadModifyWrite()
Dbuiltins_shared_typedarray.cpp362 JSHandle<JSSharedTypedArray> typedArray = JSHandle<JSSharedTypedArray>::Cast(thisHandle); in GetBuffer() local
1217 JSHandle<JSTypedArray> typedArray(argArray); in Set() local
Dbuiltins_typedarray.cpp390 JSHandle<JSTypedArray> typedArray = JSHandle<JSTypedArray>::Cast(thisHandle); in GetBuffer() local
1320 JSHandle<JSTypedArray> typedArray(argArray); in Set() local
/arkcompiler/ets_runtime/test/fuzztest/uint32arrayrefbytelength_fuzzer/
Duint32arrayrefbytelength_fuzzer.cpp48 Local<Uint32ArrayRef> typedArray = Uint32ArrayRef::New(vm, ref, (int32_t)size, (int32_t)size); in Uint32ArrayRefByteLengthFuzzTest() local
/arkcompiler/ets_runtime/ecmascript/
Djs_typed_array.cpp434 bool JSTypedArray::IsValidIntegerIndex(const JSHandle<JSTaggedValue> &typedArray, JSTaggedValue ind… in IsValidIntegerIndex()
510 …l JSTypedArray::FastCopyElementToArray(JSThread *thread, const JSHandle<JSTaggedValue> &typedArray, in FastCopyElementToArray()
730 JSTaggedValue JSTypedArray::GetOffHeapBuffer(JSThread *thread, JSHandle<JSTypedArray> &typedArray) in GetOffHeapBuffer()
762 …SharedTypedArray::GetSharedOffHeapBuffer(JSThread *thread, JSHandle<JSSharedTypedArray> typedArray) in GetSharedOffHeapBuffer()
794 bool JSTypedArray::FastTypedArrayFill(JSThread *thread, const JSHandle<JSTaggedValue> &typedArray, in FastTypedArrayFill()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_typedarray_stub_builder.cpp183 GateRef BuiltinsTypedArrayStubBuilder::FastCopyElementToArray(GateRef glue, GateRef typedArray, Gat… in FastCopyElementToArray()
477 Label typedArray(env); in LastIndexOf() local
585 Label typedArray(env); in IndexOf() local
685 Label typedArray(env); in Find() local
760 Label typedArray(env); in Includes() local
853 Label typedArray(env); in CopyWithin() local
990 Label typedArray(env); in ReduceRight() local
1098 Label typedArray(env); in Reduce() local
1202 Label typedArray(env); in Every() local
1286 Label typedArray(env); in Some() local
[all …]
/arkcompiler/ets_runtime/ecmascript/napi/test/
Djsnapi_first_tests.cpp390 Local<TypedArrayRef> typedArray = testString1->EncodeIntoUint8Array(vm_); in HWTEST_F_L0() local
401 Local<TypedArrayRef> typedArray = testString1->EncodeIntoUint8Array(vm_); in HWTEST_F_L0() local
844 Local<Int8ArrayRef> typedArray = Int8ArrayRef::New(vm_, arrayBuffer, 5, 6); in HWTEST_F_L0() local
869 Local<Uint8ArrayRef> typedArray = Uint8ArrayRef::New(vm_, arrayBuffer, 5, 6); in HWTEST_F_L0() local
892 Local<Uint8ClampedArrayRef> typedArray = Uint8ClampedArrayRef::New(vm_, arrayBuffer, 5, 6); in HWTEST_F_L0() local
915 Local<Int16ArrayRef> typedArray = Int16ArrayRef::New(vm_, arrayBuffer, 4, 6); in HWTEST_F_L0() local
938 Local<Uint16ArrayRef> typedArray = Uint16ArrayRef::New(vm_, arrayBuffer, 4, 6); in HWTEST_F_L0() local
962 Local<Uint32ArrayRef> typedArray = Uint32ArrayRef::New(vm_, arrayBuffer, 4, 6); in HWTEST_F_L0() local
985 Local<Int32ArrayRef> typedArray = Int32ArrayRef::New(vm_, arrayBuffer, 4, 6); in HWTEST_F_L0() local
1001 Local<Float32ArrayRef> typedArray = Float32ArrayRef::New(vm_, arrayBuffer, 4, 6); in HWTEST_F_L0() local
[all …]
Djsnapi_sendable_tests.cpp675 Local<SharedFloat64ArrayRef> typedArray = SharedFloat64ArrayRef::New(vm_, buffer, 8, 6); in HWTEST_F_L0() local
689 Local<SharedBigInt64ArrayRef> typedArray = SharedBigInt64ArrayRef::New(vm_, buffer, 8, 6); in HWTEST_F_L0() local
703 Local<SharedBigUint64ArrayRef> typedArray = SharedBigUint64ArrayRef::New(vm_, buffer, 8, 6); in HWTEST_F_L0() local
Djsnapi_sample.cpp1839 … Local<Int8ArrayRef> typedArray = Int8ArrayRef::New(vm_, arrayBuffer, byteOffset, int8ArrayLength); in HWTEST_F_L0() local
1864 …Local<Uint8ArrayRef> typedArray = Uint8ArrayRef::New(vm_, arrayBuffer, byteOffset, Uint8ArrayLengt… in HWTEST_F_L0() local
1889 …Local<Uint8ClampedArrayRef> typedArray = Uint8ClampedArrayRef::New(vm_, arrayBuffer, byteOffset, u… in HWTEST_F_L0() local
1914 …Local<Int16ArrayRef> typedArray = Int16ArrayRef::New(vm_, arrayBuffer, byteOffset, int16ArrayLengt… in HWTEST_F_L0() local
1939 …Local<Uint16ArrayRef> typedArray = Uint16ArrayRef::New(vm_, arrayBuffer, byteOffset, uint16ArrayLe… in HWTEST_F_L0() local
1964 …Local<Int32ArrayRef> typedArray = Int32ArrayRef::New(vm_, arrayBuffer, byteOffset, int32ArrayLengt… in HWTEST_F_L0() local
1989 …Local<Uint32ArrayRef> typedArray = Uint32ArrayRef::New(vm_, arrayBuffer, byteOffset, uint32ArrayLe… in HWTEST_F_L0() local
2014 …Local<Float32ArrayRef> typedArray = Float32ArrayRef::New(vm_, arrayBuffer, byteOffset, float32Arra… in HWTEST_F_L0() local
2039 …Local<Float64ArrayRef> typedArray = Float64ArrayRef::New(vm_, arrayBuffer, byteOffset, float64Arra… in HWTEST_F_L0() local
2064 …Local<BigInt64ArrayRef> typedArray = BigInt64ArrayRef::New(vm_, arrayBuffer, byteOffset, bigInt64A… in HWTEST_F_L0() local
[all …]
Dffi_workload.cpp610 Local<Uint32ArrayRef> typedArray = Uint32ArrayRef::New(vm_, arrayBuffer, 4, 6); in HWTEST_F_L0() local
625 Local<Float32ArrayRef> typedArray = Float32ArrayRef::New(vm_, arrayBuffer, 4, 6); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/test/fuzztest/jsvaluereffoundationvalue_fuzzer/
Djsvaluereffoundationvalue_fuzzer.cpp152 Local<Uint32ArrayRef> typedArray = Uint32ArrayRef::New(vm, ref, (int32_t)size, (int32_t)size); in JSValueRefIsTypedArrayValueFuzzTest() local
/arkcompiler/ets_runtime/test/sharedtest/sharedtypedarray/
Dsharedtypedarray.ts241 let typedArray; variable
/arkcompiler/ets_runtime/ecmascript/ic/
Dic_handler.h216 JSHandle<JSTypedArray> typedArray) in LoadTypedArrayElement()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder-inl.h3270 inline void StubBuilder::SetTypedArrayName(GateRef glue, GateRef typedArray, GateRef name, in SetTypedArrayName()
3277 inline void StubBuilder::SetContentType(GateRef glue, GateRef typedArray, GateRef type) in SetContentType()
3283 inline void StubBuilder::SetViewedArrayBufferOrByteArray(GateRef glue, GateRef typedArray, GateRef … in SetViewedArrayBufferOrByteArray()
3290 inline GateRef StubBuilder::GetViewedArrayBufferOrByteArray(GateRef typedArray) in GetViewedArrayBufferOrByteArray()
3296 inline void StubBuilder::SetByteLength(GateRef glue, GateRef typedArray, GateRef byteLength) in SetByteLength()
3302 inline void StubBuilder::SetByteOffset(GateRef glue, GateRef typedArray, GateRef byteOffset) in SetByteOffset()
3308 inline void StubBuilder::SetTypedArrayLength(GateRef glue, GateRef typedArray, GateRef arrayLength) in SetTypedArrayLength()
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_expo.cpp3308 JSHandle<JSTypedArray> typedArray(JSNApiHelper::ToJSHandle(this)); in ByteLength() local
3317 JSHandle<JSTypedArray> typedArray(JSNApiHelper::ToJSHandle(this)); in ByteOffset() local
3326 JSHandle<JSTypedArray> typedArray(JSNApiHelper::ToJSHandle(this)); in ArrayLength() local
3345 JSHandle<ecmascript::JSSharedTypedArray> typedArray(JSNApiHelper::ToJSHandle(this)); in ByteLength() local
3354 JSHandle<ecmascript::JSSharedTypedArray> typedArray(JSNApiHelper::ToJSHandle(this)); in ByteOffset() local
3363 JSHandle<ecmascript::JSSharedTypedArray> typedArray(JSNApiHelper::ToJSHandle(this)); in ArrayLength() local
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_typed_array_test.cpp1415 JSHandle<JSTypedArray> typedArray(int8Array); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs.cpp2822 …JSHandle<JSTaggedValue> typedArray = GetHArg<JSTaggedValue>(argv, argc, 0); // 0: means the zerot… in DEF_RUNTIME_STUBS() local
3961 void RuntimeStubs::SortTypedArray(JSTypedArray *typedArray) in SortTypedArray()
4000 void RuntimeStubs::ReverseTypedArray(JSTypedArray *typedArray) in ReverseTypedArray()
/arkcompiler/jsvm/src/
Djs_native_api_v8.cpp3715 v8::Local<v8::TypedArray> typedArray; in OH_JSVM_CreateTypedarray() local