Home
last modified time | relevance | path

Searched defs:ModuleWireBytes (Results 1 – 1 of 1) sorted by relevance

/external/v8/src/wasm/
Dwasm-module.h173 struct V8_EXPORT_PRIVATE ModuleWireBytes { struct
174 ModuleWireBytes(Vector<const byte> module_bytes) in ModuleWireBytes() argument
176 ModuleWireBytes(const byte* start, const byte* end) in ModuleWireBytes() argument
196 bool BoundsCheck(uint32_t offset, uint32_t length) const { in BoundsCheck()
201 Vector<const byte> GetFunctionBytes(const WasmFunction* function) const { in GetFunctionBytes()
206 Vector<const byte> module_bytes() const { return module_bytes_; } in module_bytes()
207 const byte* start() const { return module_bytes_.start(); } in start()
208 const byte* end() const { return module_bytes_.end(); } in end()
209 size_t length() const { return module_bytes_.length(); } in length()