Lines Matching defs:source
2 // Use of this source code is governed by a BSD-style license that can be
360 uint8_t* source = static_cast<uint8_t*>(sta->GetBuffer()->backing_store()) +
366 return DoCompareExchange<ctype>(isolate, source, index, oldobj, newobj);
372 return DoCompareExchangeUint8Clamped(isolate, source, index, oldobj,
393 uint8_t* source = static_cast<uint8_t*>(sta->GetBuffer()->backing_store()) +
399 return DoAdd<ctype>(isolate, source, index, value);
405 return DoAddUint8Clamped(isolate, source, index, value);
425 uint8_t* source = static_cast<uint8_t*>(sta->GetBuffer()->backing_store()) +
431 return DoSub<ctype>(isolate, source, index, value);
437 return DoSubUint8Clamped(isolate, source, index, value);
457 uint8_t* source = static_cast<uint8_t*>(sta->GetBuffer()->backing_store()) +
463 return DoAnd<ctype>(isolate, source, index, value);
469 return DoAndUint8Clamped(isolate, source, index, value);
489 uint8_t* source = static_cast<uint8_t*>(sta->GetBuffer()->backing_store()) +
495 return DoOr<ctype>(isolate, source, index, value);
501 return DoOrUint8Clamped(isolate, source, index, value);
521 uint8_t* source = static_cast<uint8_t*>(sta->GetBuffer()->backing_store()) +
527 return DoXor<ctype>(isolate, source, index, value);
533 return DoXorUint8Clamped(isolate, source, index, value);
553 uint8_t* source = static_cast<uint8_t*>(sta->GetBuffer()->backing_store()) +
559 return DoExchange<ctype>(isolate, source, index, value);
565 return DoExchangeUint8Clamped(isolate, source, index, value);