• Home
  • Raw
  • Download

Lines Matching refs:sta

343 #define THROW_ERROR_RETURN_FAILURE_ON_DETACHED(isolate, sta, method_name)      \  argument
345 if (V8_UNLIKELY(sta->WasDetached())) { \
361 CONVERT_ARG_HANDLE_CHECKED(JSTypedArray, sta, 0); in GetModifySetValueInBuffer()
365 uint8_t* source = static_cast<uint8_t*>(sta->GetBuffer()->backing_store()) + in GetModifySetValueInBuffer()
366 sta->byte_offset(); in GetModifySetValueInBuffer()
368 if (sta->type() >= kExternalBigInt64Array) { in GetModifySetValueInBuffer()
373 THROW_ERROR_RETURN_FAILURE_ON_DETACHED(isolate, sta, method_name); in GetModifySetValueInBuffer()
375 CHECK_LT(index, sta->length()); in GetModifySetValueInBuffer()
376 if (sta->type() == kExternalBigInt64Array) { in GetModifySetValueInBuffer()
379 DCHECK(sta->type() == kExternalBigUint64Array); in GetModifySetValueInBuffer()
387 THROW_ERROR_RETURN_FAILURE_ON_DETACHED(isolate, sta, method_name); in GetModifySetValueInBuffer()
389 CHECK_LT(index, sta->length()); in GetModifySetValueInBuffer()
391 switch (sta->type()) { in GetModifySetValueInBuffer()
409 CONVERT_ARG_HANDLE_CHECKED(JSTypedArray, sta, 0); in RUNTIME_FUNCTION()
412 uint8_t* source = static_cast<uint8_t*>(sta->GetBuffer()->backing_store()) + in RUNTIME_FUNCTION()
413 sta->byte_offset(); in RUNTIME_FUNCTION()
415 DCHECK(sta->type() == kExternalBigInt64Array || in RUNTIME_FUNCTION()
416 sta->type() == kExternalBigUint64Array); in RUNTIME_FUNCTION()
417 DCHECK(!sta->WasDetached()); in RUNTIME_FUNCTION()
418 CHECK_LT(index, sta->length()); in RUNTIME_FUNCTION()
419 if (sta->type() == kExternalBigInt64Array) { in RUNTIME_FUNCTION()
422 DCHECK(sta->type() == kExternalBigUint64Array); in RUNTIME_FUNCTION()
429 CONVERT_ARG_HANDLE_CHECKED(JSTypedArray, sta, 0); in RUNTIME_FUNCTION()
433 uint8_t* source = static_cast<uint8_t*>(sta->GetBuffer()->backing_store()) + in RUNTIME_FUNCTION()
434 sta->byte_offset(); in RUNTIME_FUNCTION()
440 THROW_ERROR_RETURN_FAILURE_ON_DETACHED(isolate, sta, "Atomics.store"); in RUNTIME_FUNCTION()
442 DCHECK(sta->type() == kExternalBigInt64Array || in RUNTIME_FUNCTION()
443 sta->type() == kExternalBigUint64Array); in RUNTIME_FUNCTION()
444 CHECK_LT(index, sta->length()); in RUNTIME_FUNCTION()
445 if (sta->type() == kExternalBigInt64Array) { in RUNTIME_FUNCTION()
449 DCHECK(sta->type() == kExternalBigUint64Array); in RUNTIME_FUNCTION()
461 CONVERT_ARG_HANDLE_CHECKED(JSTypedArray, sta, 0); in RUNTIME_FUNCTION()
465 CHECK_LT(index, sta->length()); in RUNTIME_FUNCTION()
467 uint8_t* source = static_cast<uint8_t*>(sta->GetBuffer()->backing_store()) + in RUNTIME_FUNCTION()
468 sta->byte_offset(); in RUNTIME_FUNCTION()
470 if (sta->type() >= kExternalBigInt64Array) { in RUNTIME_FUNCTION()
478 THROW_ERROR_RETURN_FAILURE_ON_DETACHED(isolate, sta, in RUNTIME_FUNCTION()
481 CHECK_LT(index, sta->length()); in RUNTIME_FUNCTION()
482 if (sta->type() == kExternalBigInt64Array) { in RUNTIME_FUNCTION()
486 DCHECK(sta->type() == kExternalBigUint64Array); in RUNTIME_FUNCTION()
498 THROW_ERROR_RETURN_FAILURE_ON_DETACHED(isolate, sta, in RUNTIME_FUNCTION()
501 switch (sta->type()) { in RUNTIME_FUNCTION()