Home
last modified time | relevance | path

Searched refs:bytes_copy (Results 1 – 6 of 6) sorted by relevance

/third_party/node/deps/v8/src/wasm/
Dmodule-compiler.h126 std::unique_ptr<byte[]> bytes_copy, size_t length,
Dwasm-engine.h374 std::unique_ptr<byte[]> bytes_copy, size_t length,
Dwasm-engine.cc648 ModuleWireBytes bytes_copy(copy.get(), copy.get() + bytes.length()); in AsyncCompile() local
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() argument
922 isolate, enabled, std::move(bytes_copy), length, context, in CreateAsyncCompileJob()
Dwasm-js.cc656 i::wasm::ModuleWireBytes bytes_copy(copy.get(), in WebAssemblyValidate() local
659 i_isolate, enabled_features, bytes_copy); in WebAssemblyValidate()
718 i::wasm::ModuleWireBytes bytes_copy(copy.get(), in WebAssemblyModule() local
721 i_isolate, enabled_features, &thrower, bytes_copy); in WebAssemblyModule()
Dmodule-compiler.cc2003 std::unique_ptr<byte[]> bytes_copy, size_t length, Handle<Context> context, in AsyncCompileJob() argument
2014 bytes_copy_(std::move(bytes_copy)), in AsyncCompileJob()
/third_party/astc-encoder/Source/
Dstb_image.h1215 size_t bytes_copy = (bytes_left < sizeof(temp)) ? bytes_left : sizeof(temp); in stbi__vertical_flip() local
1216 memcpy(temp, row0, bytes_copy); in stbi__vertical_flip()
1217 memcpy(row0, row1, bytes_copy); in stbi__vertical_flip()
1218 memcpy(row1, temp, bytes_copy); in stbi__vertical_flip()
1219 row0 += bytes_copy; in stbi__vertical_flip()
1220 row1 += bytes_copy; in stbi__vertical_flip()
1221 bytes_left -= bytes_copy; in stbi__vertical_flip()