baseAddress       183 Source/bindings/v8/IDBBindingUtilities.cpp         const char* start = static_cast<const char*>(view->baseAddress());
baseAddress       527 Source/bindings/v8/SerializedScriptValue.cpp                static_cast<const uint8_t*>(arrayBufferView.baseAddress()));
baseAddress       175 Source/core/css/FontFace.cpp         fontFace->initCSSFontFace(static_cast<const unsigned char*>(source->baseAddress()), source->byteLength());
baseAddress      1207 Source/core/html/canvas/WebGLRenderingContextBase.cpp     m_context->bufferData(target, data->byteLength(), data->baseAddress(), usage);
baseAddress      1241 Source/core/html/canvas/WebGLRenderingContextBase.cpp     m_context->bufferSubData(target, static_cast<GLintptr>(offset), data->byteLength(), data->baseAddress());
baseAddress      1365 Source/core/html/canvas/WebGLRenderingContextBase.cpp                                               border, data->byteLength(), data->baseAddress());
baseAddress      1395 Source/core/html/canvas/WebGLRenderingContextBase.cpp                                                  width, height, format, data->byteLength(), data->baseAddress());
baseAddress      3067 Source/core/html/canvas/WebGLRenderingContextBase.cpp     void* data = pixels->baseAddress();
baseAddress      3374 Source/core/html/canvas/WebGLRenderingContextBase.cpp     void* data = pixels ? pixels->baseAddress() : 0;
baseAddress      3612 Source/core/html/canvas/WebGLRenderingContextBase.cpp     void* data = pixels->baseAddress();
baseAddress       747 Source/core/xml/XMLHttpRequest.cpp     sendBytesData(body->baseAddress(), body->byteLength(), exceptionState);
baseAddress        75 Source/modules/crypto/Crypto.cpp     cryptographicallyRandomValues(array->baseAddress(), array->byteLength());
baseAddress       496 Source/modules/crypto/NormalizeAlgorithm.cpp     params = adoptPtr(new blink::WebCryptoAesCbcParams(static_cast<unsigned char*>(iv->baseAddress()), iv->byteLength()));
baseAddress       607 Source/modules/crypto/NormalizeAlgorithm.cpp     params = adoptPtr(new blink::WebCryptoRsaKeyGenParams(modulusLength, static_cast<const unsigned char*>(publicExponent->baseAddress()), publicExponent->byteLength()));
baseAddress       627 Source/modules/crypto/NormalizeAlgorithm.cpp     params = adoptPtr(new blink::WebCryptoRsaHashedKeyGenParams(hash, modulusLength, static_cast<const unsigned char*>(publicExponent->baseAddress()), publicExponent->byteLength()));
baseAddress       647 Source/modules/crypto/NormalizeAlgorithm.cpp     params = adoptPtr(new blink::WebCryptoAesCtrParams(length, static_cast<const unsigned char*>(counter->baseAddress()), counter->byteLength()));
baseAddress       674 Source/modules/crypto/NormalizeAlgorithm.cpp     const unsigned char* ivStart = static_cast<const unsigned char*>(iv->baseAddress());
baseAddress       677 Source/modules/crypto/NormalizeAlgorithm.cpp     const unsigned char* additionalDataStart = hasAdditionalData ? static_cast<const unsigned char*>(additionalData->baseAddress()) : 0;
baseAddress        86 Source/modules/crypto/SubtleCrypto.cpp     const unsigned char* data = static_cast<const unsigned char*>(dataBuffer->baseAddress());
baseAddress       100 Source/modules/crypto/SubtleCrypto.cpp         blink::Platform::current()->crypto()->verifySignature(algorithm, key->key(), reinterpret_cast<const unsigned char*>(signature->baseAddress()), signature->byteLength(), data, dataSize, result->result());
baseAddress       184 Source/modules/crypto/SubtleCrypto.cpp     const unsigned char* keyDataBytes = static_cast<unsigned char*>(keyData->baseAddress());
baseAddress       282 Source/modules/crypto/SubtleCrypto.cpp     const unsigned char* wrappedKeyData = static_cast<const unsigned char*>(wrappedKey->baseAddress());
baseAddress        85 Source/modules/encoding/TextDecoder.cpp     const char* start = input ? static_cast<const char*>(input->baseAddress()) : 0;
baseAddress       297 Source/modules/mediasource/SourceBuffer.cpp     appendBufferInternal(static_cast<const unsigned char*>(data->baseAddress()), data->byteLength(), exceptionState);
baseAddress       204 Source/modules/mediastream/RTCDataChannel.cpp     if (!m_handler->sendRawData(static_cast<const char*>(data->baseAddress()), data->byteLength())) {
baseAddress       133 Source/platform/blob/BlobData.cpp     appendBytes(arrayBufferView->baseAddress(), arrayBufferView->byteLength());
baseAddress        51 Source/web/WebArrayBufferView.cpp     return m_private->baseAddress();
baseAddress        62 Source/wtf/ArrayBufferView.h     void* baseAddress() const
baseAddress       154 Source/wtf/ArrayBufferView.h     char* base = static_cast<char*>(baseAddress());
baseAddress       155 Source/wtf/ArrayBufferView.h     memmove(base + byteOffset, array->baseAddress(), array->byteLength());
baseAddress       168 Source/wtf/ArrayBufferView.h     char* base = static_cast<char*>(baseAddress());
baseAddress       182 Source/wtf/ArrayBufferView.h     char* base = static_cast<char*>(baseAddress());
baseAddress        38 Source/wtf/TypedArrayBase.h     T* data() const { return static_cast<T*>(baseAddress()); }
baseAddress        51 public/web/WebArrayBufferView.h     BLINK_EXPORT void* baseAddress() const;