/external/libchrome/mojo/public/java/system/ |
D | core_impl.cc | 33 const void* buffer_start = env->GetDirectBufferAddress(options_buffer); in JNI_CoreImpl_CreateMessagePipe() local 34 DCHECK(buffer_start); in JNI_CoreImpl_CreateMessagePipe() 35 DCHECK_EQ(reinterpret_cast<const uintptr_t>(buffer_start) % 8, 0u); in JNI_CoreImpl_CreateMessagePipe() 38 options = static_cast<const MojoCreateMessagePipeOptions*>(buffer_start); in JNI_CoreImpl_CreateMessagePipe() 53 const void* buffer_start = env->GetDirectBufferAddress(options_buffer); in JNI_CoreImpl_CreateDataPipe() local 54 DCHECK(buffer_start); in JNI_CoreImpl_CreateDataPipe() 55 DCHECK_EQ(reinterpret_cast<const uintptr_t>(buffer_start) % 8, 0u); in JNI_CoreImpl_CreateDataPipe() 58 options = static_cast<const MojoCreateDataPipeOptions*>(buffer_start); in JNI_CoreImpl_CreateDataPipe() 74 const void* buffer_start = env->GetDirectBufferAddress(options_buffer); in JNI_CoreImpl_CreateSharedBuffer() local 75 DCHECK(buffer_start); in JNI_CoreImpl_CreateSharedBuffer() [all …]
|
/external/v8/src/objects/ |
D | backing-store.cc | 60 void* buffer_start, in GetReservedRegion() argument 70 Address start = reinterpret_cast<Address>(buffer_start); in GetReservedRegion() 79 return base::AddressRegion(reinterpret_cast<Address>(buffer_start), in GetReservedRegion() 214 void* buffer_start = nullptr; in Allocate() local 230 void* buffer_start = allocator->Allocate(byte_length); in Allocate() local 231 if (buffer_start) { in Allocate() 238 DebugCheckZero(buffer_start, byte_length); in Allocate() 241 return buffer_start; in Allocate() 244 buffer_start = isolate->heap()->AllocateExternalBackingStore( in Allocate() 247 if (buffer_start == nullptr) { in Allocate() [all …]
|
D | backing-store.h | 77 void* buffer_start() const { return buffer_start_; } in buffer_start() function 146 BackingStore(void* buffer_start, size_t byte_length, size_t byte_capacity, in BackingStore() argument 149 : buffer_start_(buffer_start), in BackingStore() 228 static std::shared_ptr<BackingStore> Lookup(void* buffer_start,
|
D | js-array-buffer.cc | 65 set_backing_store(isolate, backing_store->buffer_start()); in Attach() 177 memcpy(backing_store->buffer_start(), self->DataPtr(), byte_length); in GetBuffer()
|
/external/libvpx/libvpx/vpx_dsp/ |
D | bitreader.c | 41 const uint8_t *buffer_start = buffer; in vpx_reader_fill() local 52 buffer_start = r->clear_buffer; in vpx_reader_fill() 88 r->buffer += buffer - buffer_start; in vpx_reader_fill()
|
/external/u-boot/drivers/net/ldpaa_eth/ |
D | ldpaa_eth.c | 329 u64 buffer_start; in ldpaa_eth_tx() local 345 &buffer_start, 1); in ldpaa_eth_tx() 353 debug("TX data: malloc buffer start=0x%p\n", (u64 *)buffer_start); in ldpaa_eth_tx() 355 memcpy(((uint8_t *)(buffer_start) + data_offset), buf, len); in ldpaa_eth_tx() 357 flush_dcache_range(buffer_start, buffer_start + in ldpaa_eth_tx() 360 ldpaa_fd_set_addr(&fd, (u64)buffer_start); in ldpaa_eth_tx() 394 err = qbman_swp_release(swp, &releasedesc, &buffer_start, 1); in ldpaa_eth_tx()
|
/external/deqp/external/openglcts/modules/gl/ |
D | gl4cDirectStateAccessXFBTests.cpp | 380 glw::GLint64 buffer_start = -1; in testBuffersDimensions() local 382 m_gl_getTransformFeedbacki64_v(m_xfb_dsa, GL_TRANSFORM_FEEDBACK_BUFFER_START, i, &buffer_start); in testBuffersDimensions() 385 if (-1 == buffer_start) in testBuffersDimensions() 397 if (0 != buffer_start) in testBuffersDimensions() 402 << buffer_start << ", however 0 is expected." << tcu::TestLog::EndMessage; in testBuffersDimensions() 827 glw::GLint64 buffer_start = -1; in testStart() local 829 …m_gl_getTransformFeedbacki64_v(m_xfb_dsa, GL_TRANSFORM_FEEDBACK_BUFFER_START, index, &buffer_start… in testStart() 833 if (-1 == buffer_start) in testStart() 844 if (expected_value != buffer_start) in testStart() 849 << buffer_start << ", however " << expected_value << " is expected. As a consequence function " in testStart()
|
/external/v8/src/codegen/ |
D | code-desc.cc | 17 desc->buffer = assembler->buffer_start(); in Initialize()
|
D | assembler.h | 276 byte* buffer_start() const { return buffer_->start(); } in buffer_start() function
|
/external/v8/src/diagnostics/ |
D | unwinding-info-win64.cc | 173 memcpy(&record->exception_thunk[0], masm.buffer_start(), in InitUnwindingRecord() 451 memcpy(&record->exception_thunk[0], masm.buffer_start(), in InitUnwindingRecord()
|
/external/v8/src/parsing/ |
D | scanner.h | 144 Utf16CharacterStream(const uint16_t* buffer_start, in Utf16CharacterStream() argument 147 : buffer_start_(buffer_start), in Utf16CharacterStream()
|
/external/v8/src/snapshot/ |
D | deserializer.cc | 421 backing_store = backing_stores_[store_index]->buffer_start(); in PostProcessNewObject() 442 ? reinterpret_cast<byte*>(backing_store->buffer_start()) in PostProcessNewObject() 1008 source_.CopyRaw(backing_store->buffer_start(), byte_length); in ReadSingleBytecodeData()
|
/external/v8/src/execution/ |
D | futex-emulation.cc | 36 return static_cast<int8_t*>(backing_store->buffer_start()) + addr; in ToWaitLocation() 545 static_cast<int8_t*>(backing_store->buffer_start()) + addr); in WaitAsync()
|
/external/v8/src/api/ |
D | api.cc | 3813 return reinterpret_cast<const i::BackingStore*>(this)->buffer_start(); in Data() 7421 backing_store->buffer_start(), backing_store->byte_length()); in BackingStoreDeleter() 7430 backing_store->buffer_start(), backing_store->byte_length()); in MakeDeleterData() 7557 BufferType::Contents contents(backing_store->buffer_start(), // -- in GetContents() 7559 backing_store->buffer_start(), // -- in GetContents() 7897 BufferType::Contents contents(backing_store->buffer_start(), // -- in GetContents() 7899 backing_store->buffer_start(), // -- in GetContents()
|