Home
last modified time | relevance | path

Searched refs:uploadHandle (Results 1 – 21 of 21) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/dawn/src/dawn_native/
H A DDynamicUploader.cpp38 UploadHandle uploadHandle; in AllocateInternal() local
43 return uploadHandle; in AllocateInternal()
89 UploadHandle uploadHandle; in AllocateInternal() local
91 uploadHandle.mappedBuffer = in AllocateInternal()
93 uploadHandle.startOffset = startOffset; in AllocateInternal()
95 return uploadHandle; in AllocateInternal()
119 UploadHandle uploadHandle; in Allocate() local
120 DAWN_TRY_ASSIGN(uploadHandle, in Allocate()
123 Align(uploadHandle.startOffset, offsetAlignment) - uploadHandle.startOffset; in Allocate()
124 uploadHandle.mappedBuffer = in Allocate()
[all …]
H A DQueue.cpp101 UploadHandle uploadHandle; in UploadTextureDataAligningBytesPerRowAndOffset() local
105 ASSERT(uploadHandle.mappedBuffer != nullptr); in UploadTextureDataAligningBytesPerRowAndOffset()
124 return uploadHandle; in UploadTextureDataAligningBytesPerRowAndOffset()
232 UploadHandle uploadHandle; in WriteBufferImpl() local
233 DAWN_TRY_ASSIGN(uploadHandle, device->GetDynamicUploader()->Allocate( in WriteBufferImpl()
236 ASSERT(uploadHandle.mappedBuffer != nullptr); in WriteBufferImpl()
238 memcpy(uploadHandle.mappedBuffer, data, size); in WriteBufferImpl()
242 return device->CopyFromStagingToBuffer(uploadHandle.stagingBuffer, uploadHandle.startOffset, in WriteBufferImpl()
288 UploadHandle uploadHandle; in WriteTextureImpl() local
289 DAWN_TRY_ASSIGN(uploadHandle, in WriteTextureImpl()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/dawn/src/dawn_native/
H A DDynamicUploader.cpp37 UploadHandle uploadHandle; in Allocate() local
38 uploadHandle.mappedBuffer = static_cast<uint8_t*>(stagingBuffer->GetMappedPointer()); in Allocate()
39 uploadHandle.stagingBuffer = stagingBuffer.get(); in Allocate()
42 return uploadHandle; in Allocate()
88 UploadHandle uploadHandle; in Allocate() local
89 uploadHandle.stagingBuffer = targetRingBuffer->mStagingBuffer.get(); in Allocate()
90 uploadHandle.mappedBuffer = in Allocate()
91 static_cast<uint8_t*>(uploadHandle.stagingBuffer->GetMappedPointer()) + startOffset; in Allocate()
92 uploadHandle.startOffset = startOffset; in Allocate()
94 return uploadHandle; in Allocate()
H A DBuffer.cpp277 UploadHandle uploadHandle; in SetSubDataImpl() local
278 DAWN_TRY_ASSIGN(uploadHandle, in SetSubDataImpl()
280 ASSERT(uploadHandle.mappedBuffer != nullptr); in SetSubDataImpl()
282 memcpy(uploadHandle.mappedBuffer, data, count); in SetSubDataImpl()
285 uploadHandle.stagingBuffer, uploadHandle.startOffset, this, start, count)); in SetSubDataImpl()
/dports/graphics/kipi-plugins/kipi-plugins-21.12.3/mediawiki/
H A Dwmtalker.cpp90 QTimer::singleShot(0, this, SLOT(uploadHandle())); in start()
104 void WMTalker::uploadHandle(KJob* j) in uploadHandle() function in KIPIWikiMediaPlugin::WMTalker
112 this, SLOT(uploadHandle(KJob*))); in uploadHandle()
174 this, SLOT(uploadHandle(KJob*))); in uploadHandle()
H A Dwmtalker.h76 void uploadHandle(KJob* j = nullptr);
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/dawn/src/dawn_native/d3d12/
H A DBufferD3D12.cpp442 UploadHandle uploadHandle; in ClearBuffer() local
443 DAWN_TRY_ASSIGN(uploadHandle, in ClearBuffer()
447 memset(uploadHandle.mappedBuffer, clearValue, GetSize()); in ClearBuffer()
449 device->CopyFromStagingToBufferImpl(commandContext, uploadHandle.stagingBuffer, in ClearBuffer()
450 uploadHandle.startOffset, this, 0, GetSize()); in ClearBuffer()
H A DTextureD3D12.cpp961 UploadHandle uploadHandle; in ClearTexture() local
962 DAWN_TRY_ASSIGN(uploadHandle, in ClearTexture()
965 memset(uploadHandle.mappedBuffer, clearColor, bufferSize); in ClearTexture()
974 {0, 0, 0}, copySize, blockInfo, uploadHandle.startOffset, bytesPerRow, in ClearTexture()
993 this, ToBackend(uploadHandle.stagingBuffer)->GetResource(), in ClearTexture()
/dports/net/libmediawiki/libmediawiki-5.37.0/tests/
H A Duploadtest.cpp50 void uploadHandle(KJob* ) { in uploadHandle() function in UploadTest
76 connect(job, SIGNAL(result(KJob*)),this, SLOT(uploadHandle(KJob*))); in uploadSetters()
121 connect(job, SIGNAL(result(KJob*)),this, SLOT(uploadHandle(KJob*))); in error()
/dports/graphics/digikam/digikam-7.4.0/core/tests/mediawiki/
H A Dupload_utest.cpp63 void uploadHandle(KJob*) in uploadHandle() function in UploadTest
92 this, SLOT(uploadHandle(KJob*))); in uploadSetters()
146 this, SLOT(uploadHandle(KJob*))); in error()
/dports/net/libmediawiki/libmediawiki-5.37.0/examples/uploadsample/
H A Dmainwindow.cpp100 this, SLOT(uploadHandle(KJob*))); in loginHandle()
111 void MainWindow::uploadHandle(KJob* job) in uploadHandle() function in MainWindow
114 this, SLOT(uploadHandle(KJob*))); in uploadHandle()
H A Dmainwindow.h62 void uploadHandle(KJob* job);
/dports/graphics/digikam/digikam-7.4.0/core/tests/mediawiki/examples/uploadsample/
H A Dmainwindow.cpp111 this, SLOT(uploadHandle(KJob*))); in loginHandle()
123 void MainWindow::uploadHandle(KJob* job) in uploadHandle() function in MainWindow
126 this, SLOT(uploadHandle(KJob*))); in uploadHandle()
H A Dmainwindow.h64 void uploadHandle(KJob* job);
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/dawn/src/dawn_native/d3d12/
H A DTextureD3D12.cpp703 UploadHandle uploadHandle; in ClearTexture() local
704 DAWN_TRY_ASSIGN(uploadHandle, in ClearTexture()
706 memset(uploadHandle.mappedBuffer, clearColor, bufferSize); in ClearTexture()
714 {0, 0, 0}, copySize, GetFormat(), uploadHandle.startOffset, rowPitch, 0); in ClearTexture()
731 this, ToBackend(uploadHandle.stagingBuffer)->GetResource(), in ClearTexture()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/dawn/src/dawn_native/vulkan/
H A DTextureVk.cpp732 UploadHandle uploadHandle; in ClearTexture() local
733 DAWN_TRY_ASSIGN(uploadHandle, in ClearTexture()
735 memset(uploadHandle.mappedBuffer, clearColor, bufferSize); in ClearTexture()
740 bufferCopy.offset = uploadHandle.startOffset; in ClearTexture()
766 ToBackend(uploadHandle.stagingBuffer)->GetBufferHandle(), GetHandle(), in ClearTexture()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/dawn/src/dawn_native/metal/
H A DTextureMTL.mm487 UploadHandle uploadHandle;
488 DAWN_TRY_ASSIGN(uploadHandle,
490 memset(uploadHandle.mappedBuffer, clearColor, bufferSize);
493 id<MTLBuffer> uploadBuffer = ToBackend(uploadHandle.stagingBuffer)->GetBufferHandle();
523 sourceOffset:uploadHandle.startOffset
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/dawn/src/dawn_native/metal/
H A DTextureMTL.mm530 UploadHandle uploadHandle;
531 DAWN_TRY_ASSIGN(uploadHandle,
534 memset(uploadHandle.mappedBuffer, clearColor, bufferSize);
537 id<MTLBuffer> uploadBuffer = ToBackend(uploadHandle.stagingBuffer)->GetBufferHandle();
556 sourceOffset:uploadHandle.startOffset
/dports/net/megacmd/MEGAcmd-1.4.1_Win/sdk/include/mega/
H A Dmediafileattribute.h134 …tributesForUpload(MediaProperties& vp, uint32_t fakey[4], MegaClient* client, handle uploadHandle);
/dports/net/megacmd/MEGAcmd-1.4.1_Win/sdk/src/
H A Dmediafileattribute.cpp229 …ttributesForUpload(MediaProperties& vp, uint32_t fakey[4], MegaClient* client, handle uploadHandle) in queueMediaPropertiesFileAttributesForUpload() argument
237 q.handle = uploadHandle; in queueMediaPropertiesFileAttributesForUpload()
240 uploadFileAttributes[uploadHandle] = q; in queueMediaPropertiesFileAttributesForUpload()
246 … client->pendingfa[pair<handle, fatype>(uploadHandle, fatype(fa_media))] = pair<handle, int>(0, 0); in queueMediaPropertiesFileAttributesForUpload()
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-transfer-tests/
H A DTransferTests.cpp805 std::shared_ptr<TransferHandle> uploadHandle, downloadHandle; in TEST_F() local
808uploadHandle = transferManager->UploadFile(testFileName, GetTestBucketName(), RandomFileName, "tex… in TEST_F()
809 uploadHandle->WaitUntilFinished(); in TEST_F()
815 ASSERT_EQ(TransferStatus::COMPLETED, uploadHandle->GetStatus()); in TEST_F()