/third_party/mindspore/patches/ |
D | 0009-adapt-nnrt-v2_0.patch | 197 + std::vector<int8_t> ret(reinterpret_cast<const int8_t *>(data.GetData()), 198 + reinterpret_cast<const int8_t *>(data.GetData()) + data.GetDataSize(… 216 + std::vector<int8_t> ret(reinterpret_cast<const int8_t *>(data.GetData()), 217 + reinterpret_cast<const int8_t *>(data.GetData()) + data.GetDataSize(… 238 + std::vector<int8_t> ret(reinterpret_cast<const int8_t *>(data.GetData()), 239 + reinterpret_cast<const int8_t *>(data.GetData()) + data.GetDataSize(… 285 + std::vector<int8_t> ret(reinterpret_cast<const int8_t *>(data.GetData()), 286 + reinterpret_cast<const int8_t *>(data.GetData()) + data.GetDataSize(… 324 + std::vector<int8_t> ret(reinterpret_cast<const int8_t *>(data.GetData()), 325 + reinterpret_cast<const int8_t *>(data.GetData()) + data.GetDataSize(… [all …]
|
D | 0003-implement-mindir-module-and-support-nnrt-delegate.patch | 5724 + std::vector<int8_t> ret(reinterpret_cast<const int8_t *>(data.GetData()), 5725 + reinterpret_cast<const int8_t *>(data.GetData()) + data.GetDataSize(… 5743 + std::vector<int8_t> ret(reinterpret_cast<const int8_t *>(data.GetData()), 5744 + reinterpret_cast<const int8_t *>(data.GetData()) + data.GetDataSize(… 5765 + std::vector<int8_t> ret(reinterpret_cast<const int8_t *>(data.GetData()), 5766 + reinterpret_cast<const int8_t *>(data.GetData()) + data.GetDataSize(… 5812 + std::vector<int8_t> ret(reinterpret_cast<const int8_t *>(data.GetData()), 5813 + reinterpret_cast<const int8_t *>(data.GetData()) + data.GetDataSize(… 5851 + std::vector<int8_t> ret(reinterpret_cast<const int8_t *>(data.GetData()), 5852 + reinterpret_cast<const int8_t *>(data.GetData()) + data.GetDataSize(… [all …]
|
/third_party/skia/third_party/externals/brotli/csharp/org/brotli/dec/ |
D | Dictionary.cs | 32 internal static string GetData() in GetData() method in Org.Brotli.Dec.Dictionary.DataHolder0 40 internal static string GetData() in GetData() method in Org.Brotli.Dec.Dictionary.DataHolder1 48 internal static string GetData() in GetData() method in Org.Brotli.Dec.Dictionary.DataHolder2 61 ….Dictionary.DataHolder0.GetData(), Org.Brotli.Dec.Dictionary.DataHolder1.GetData(), Org.Brotli.Dec… in DataHolder() 82 internal static byte[] GetData() in GetData() method in Org.Brotli.Dec.Dictionary
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
D | Query11.cpp | 230 context->GetData(queryState->query.get(), &numPixels, sizeof(numPixels), 0); in testQuery() 246 context->GetData(queryState->query.get(), &soStats, sizeof(soStats), 0); in testQuery() 264 context->GetData(queryState->query.get(), &timeStats, sizeof(timeStats), 0); in testQuery() 270 HRESULT beginRes = context->GetData(queryState->beginTimestamp.get(), in testQuery() 276 HRESULT endRes = context->GetData(queryState->endTimestamp.get(), &endTime, in testQuery() 326 context->GetData(queryState->query.get(), &completed, sizeof(completed), 0); in testQuery()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
D | Query11.cpp | 230 context->GetData(queryState->query.get(), &numPixels, sizeof(numPixels), 0); in testQuery() 246 context->GetData(queryState->query.get(), &soStats, sizeof(soStats), 0); in testQuery() 264 context->GetData(queryState->query.get(), &timeStats, sizeof(timeStats), 0); in testQuery() 270 HRESULT beginRes = context->GetData(queryState->beginTimestamp.get(), in testQuery() 276 HRESULT endRes = context->GetData(queryState->endTimestamp.get(), &endTime, in testQuery() 326 context->GetData(queryState->query.get(), &completed, sizeof(completed), 0); in testQuery()
|
/third_party/vk-gl-cts/external/amber/src/src/ |
D | script.cc | 38 shader->GetData(), shader_info->GetShaderOptimizations(), in GetShaderInfo() 39 shader->GetTargetEnv(), shader_info->GetData()}); in GetShaderInfo() 49 shader->GetData(), in GetShaderInfo()
|
D | shader_compiler.cc | 123 Result r = ParseHex(shader->GetData(), &results); in Compile() 143 if (!tools.Assemble(shader->GetData(), &results, in Compile() 248 compiler.CompileGlslToSpv(shader->GetData(), kind, "-", options); in CompileGlsl() 279 return dxchelper::Compile(shader->GetData(), "main", target, spv_env_, in CompileHlsl()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
D | inlined_vector.h | 206 AllocatorTraits::deallocate(GetAllocator(), GetData(), GetCapacity()); in ~AllocationTransaction() 214 Pointer& GetData() { return alloc_data_.template get<1>(); } in GetData() function 217 bool DidAllocate() { return GetData() != nullptr; } in DidAllocate() 219 GetData() = AllocatorTraits::allocate(GetAllocator(), capacity); in Allocate() 221 return GetData(); in Allocate() 225 GetData() = nullptr; in Reset() 247 GetData(), GetSize()); in ~ConstructionTransaction() 255 Pointer& GetData() { return alloc_data_.template get<1>(); } in GetData() function 258 bool DidConstruct() { return GetData() != nullptr; } in DidConstruct() 263 GetData() = data; in Construct() [all …]
|
/third_party/vk-gl-cts/external/amber/src/src/amberscript/ |
D | parser_shader_test.cc | 39 EXPECT_EQ(kPassThroughShader, shader->GetData()); in TEST_F() 150 EXPECT_EQ(shader_result, shader->GetData()); in TEST_F() 303 auto source = shader->GetData(); in TEST_F() 304 ASSERT_EQ("My shader source\n", shader->GetData()); in TEST_F() 367 EXPECT_EQ(shader_result, shader->GetData()); in TEST_P() 413 EXPECT_EQ(shader_result, shader->GetData()); in TEST_P()
|
/third_party/skia/third_party/externals/dawn/src/dawn_wire/client/ |
D | ClientMemoryTransferService_mock.cpp | 38 const void* MockMemoryTransferService::MockReadHandle::GetData() { in GetData() function in dawn_wire::client::MockMemoryTransferService::MockReadHandle 69 void* MockMemoryTransferService::MockWriteHandle::GetData() { in GetData() function in dawn_wire::client::MockMemoryTransferService::MockWriteHandle
|
D | Buffer.cpp | 98 buffer->mMappedData = writeHandle->GetData(); in Create() 240 mMappedData = const_cast<void*>(mReadHandle->GetData()); in OnMapAsyncCallback() 248 mMappedData = mWriteHandle->GetData(); in OnMapAsyncCallback() 329 mMappedData = const_cast<void*>(mReadHandle->GetData()); in Unmap()
|
D | ClientMemoryTransferService_mock.h | 34 const void* GetData() override; 51 void* GetData() override;
|
D | ClientInlineMemoryTransferService.cpp | 40 const void* GetData() override { in GetData() function in dawn_wire::client::InlineMemoryTransferService::ReadHandleImpl 81 void* GetData() override { in GetData() function in dawn_wire::client::InlineMemoryTransferService::WriteHandleImpl
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
D | glcRobustBufferAccessBehaviorTests.cpp | 712 void Texture::GetData(const glw::Functions& gl, glw::GLint level, glw::GLenum target, glw::GLenum f… in GetData() function in glcts::RobustBufferAccessBehavior::Texture 730 void Texture::GetData(const glw::Functions& gl, glw::GLuint id, glw::GLint level, glw::GLuint width… in GetData() function in glcts::RobustBufferAccessBehavior::Texture 1291 …Texture::GetData(gl, texture_id, 0 /* level */, width, height, GL_RGBA_INTEGER, GL_UNSIGNED_INT, &… in verifyResults() 1878 Texture::GetData(gl, 0 /* level */, GL_TEXTURE_2D, GL_RGBA, GL_UNSIGNED_BYTE, &pixels[0]); in verifyInvalidResults() 1909 Texture::GetData(gl, 0 /* level */, GL_TEXTURE_2D, GL_RGBA, GL_BYTE, &pixels[0]); in verifyInvalidResults() 1950 Texture::GetData(gl, 0 /* level */, GL_TEXTURE_2D, GL_RGBA, GL_FLOAT, &pixels[0]); in verifyInvalidResults() 1996 …Texture::GetData(gl, texture_id, 1 /* level */, width, height, GL_RGBA_INTEGER, GL_UNSIGNED_INT, &… in verifyInvalidResults() 2081 Texture::GetData(gl, 0 /* level */, GL_TEXTURE_2D, GL_RGBA_INTEGER, GL_UNSIGNED_INT, &pixels[0]); in verifyInvalidResults() 2130 …Texture::GetData(gl, texture_id, 0 /* level */, width, height, GL_RGBA, GL_UNSIGNED_BYTE, &pixels[… in verifyValidResults() 2161 Texture::GetData(gl, texture_id, 0 /* level */, width, height, GL_RGBA, GL_BYTE, &pixels[0]); in verifyValidResults() [all …]
|
/third_party/flutter/skia/third_party/externals/spirv-tools/source/util/ |
D | bit_stream.h | 265 virtual const uint8_t* GetData() const { in GetData() function 293 const uint8_t* GetData() const override { in GetData() function 298 return std::vector<uint8_t>(GetData(), GetData() + GetDataSizeBytes()); in GetDataCopy()
|
/third_party/skia/third_party/externals/dawn/src/include/dawn_wire/ |
D | WireClient.h | 115 virtual const void* GetData() = 0; 147 virtual void* GetData() = 0;
|
/third_party/skia/third_party/externals/piex/src/ |
D | tiff_parser.cc | 296 if (stream->GetData(offset, 2, data) == kOk) { in Get16u() 311 if (stream->GetData(offset, 4, data) == kOk) { in Get32u() 325 std::vector<std::uint8_t> GetData(const size_t offset, const size_t length, in GetData() function 339 *error = stream->GetData(offset + processed_data, chunk_length, in GetData() 352 if (stream->GetData(tiff_offset, sizeof(tiff_endian), &tiff_endian[0]) != in GetEndianness() 518 GetData(value_offset, byte_count, stream, &error); in ParseDirectory()
|
/third_party/flutter/skia/third_party/externals/piex/src/ |
D | tiff_parser.cc | 296 if (stream->GetData(offset, 2, data) == kOk) { in Get16u() 311 if (stream->GetData(offset, 4, data) == kOk) { in Get32u() 325 std::vector<std::uint8_t> GetData(const size_t offset, const size_t length, in GetData() function 339 *error = stream->GetData(offset + processed_data, chunk_length, in GetData() 352 if (stream->GetData(tiff_offset, sizeof(tiff_endian), &tiff_endian[0]) != in GetEndianness() 518 GetData(value_offset, byte_count, stream, &error); in ParseDirectory()
|
/third_party/cef/tests/ceftests/ |
D | image_unittest.cc | 80 value->GetData(&data[0], data_size, 0U); in VerifySaveAsBitmap() 107 value->GetData(&data[0], data_size, 0U); in VerifySaveAsPNG() 131 value->GetData(&data[0], data_size, 0U); in VerifySaveAsJPEG()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/ |
D | span.h | 49 constexpr auto GetData(C& c) noexcept // NOLINT(runtime/references) 67 std::is_convertible<absl::decay_t<decltype(GetData(std::declval<C&>()))>*,
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/video/ |
D | vktVideoSessionFfmpegUtils.cpp | 54 virtual int GetData (uint8_t* pBuf, int nBuf); 67 int DataProviderImpl::GetData (uint8_t* pBuf, int nBuf) in GetData() function in vkt::video::DataProviderImpl
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/video/ |
D | vktVideoSessionFfmpegUtils.cpp | 54 virtual int GetData (uint8_t* pBuf, int nBuf); 67 int DataProviderImpl::GetData (uint8_t* pBuf, int nBuf) in GetData() function in vkt::video::DataProviderImpl
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
D | Query9.cpp | 132 result = mQuery->GetData(&numPixels, sizeof(numPixels), D3DGETDATA_FLUSH); in testQuery() 144 result = mQuery->GetData(&completed, sizeof(completed), D3DGETDATA_FLUSH); in testQuery()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
D | Query9.cpp | 132 result = mQuery->GetData(&numPixels, sizeof(numPixels), D3DGETDATA_FLUSH); in testQuery() 144 result = mQuery->GetData(&completed, sizeof(completed), D3DGETDATA_FLUSH); in testQuery()
|
/third_party/cef/libcef/browser/ |
D | stream_impl.h | 72 void* GetData() { return data_; } in GetData() function 98 void* GetData() { return data_; } in GetData() function
|