Searched refs:bytes_copy (Results 1 - 7 of 7) sorted by relevance
/third_party/backends/backend/genesys/ |
H A D | image_buffer.cpp | 42 std::size_t bytes_copy = std::min<std::size_t>(out_data_end - out_data, available()); in get_data() 43 std::memcpy(out_data, buffer_.data() + buffer_offset_, bytes_copy); in get_data() 44 out_data += bytes_copy; in get_data() 45 buffer_offset_ += bytes_copy; in get_data()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | module-compiler.h | 126 std::unique_ptr<byte[]> bytes_copy, size_t length,
|
H A D | wasm-engine.h | 374 std::unique_ptr<byte[]> bytes_copy, size_t length,
|
H A D | wasm-engine.cc | 648 ModuleWireBytes bytes_copy(copy.get(), copy.get() + bytes.length()); in AsyncCompile() 649 module_object = SyncCompile(isolate, enabled, &thrower, bytes_copy); in AsyncCompile() 917 std::unique_ptr<byte[]> bytes_copy, size_t length, Handle<Context> context, in CreateAsyncCompileJob() 922 isolate, enabled, std::move(bytes_copy), length, context, in CreateAsyncCompileJob() 915 CreateAsyncCompileJob( Isolate* isolate, const WasmFeatures& enabled, std::unique_ptr<byte[]> bytes_copy, size_t length, Handle<Context> context, const char* api_method_name, std::shared_ptr<CompilationResultResolver> resolver, int compilation_id) CreateAsyncCompileJob() argument
|
H A D | wasm-js.cc | 656 i::wasm::ModuleWireBytes bytes_copy(copy.get(), in WebAssemblyValidate() 659 i_isolate, enabled_features, bytes_copy); in WebAssemblyValidate() 718 i::wasm::ModuleWireBytes bytes_copy(copy.get(), in WebAssemblyModule() 721 i_isolate, enabled_features, &thrower, bytes_copy); in WebAssemblyModule()
|
H A D | module-compiler.cc | 2003 std::unique_ptr<byte[]> bytes_copy, size_t length, Handle<Context> context, in AsyncCompileJob() 2014 bytes_copy_(std::move(bytes_copy)), in AsyncCompileJob() 2001 AsyncCompileJob( Isolate* isolate, const WasmFeatures& enabled, std::unique_ptr<byte[]> bytes_copy, size_t length, Handle<Context> context, Handle<Context> incumbent_context, const char* api_method_name, std::shared_ptr<CompilationResultResolver> resolver, int compilation_id) AsyncCompileJob() argument
|
/third_party/astc-encoder/Source/ |
H A D | stb_image.h | 1233 size_t bytes_copy = (bytes_left < sizeof(temp)) ? bytes_left : sizeof(temp); in stbi__vertical_flip() local 1234 memcpy(temp, row0, bytes_copy); in stbi__vertical_flip() 1235 memcpy(row0, row1, bytes_copy); in stbi__vertical_flip() 1236 memcpy(row1, temp, bytes_copy); in stbi__vertical_flip() 1237 row0 += bytes_copy; in stbi__vertical_flip() 1238 row1 += bytes_copy; in stbi__vertical_flip() 1239 bytes_left -= bytes_copy; in stbi__vertical_flip()
|
Completed in 26 milliseconds