Lines Matching refs:bytes
51 bytes: bool, field
126 let bytes = self.read_cwasm()?; in execute() localVariable
129 if Engine::detect_precompiled(&bytes).is_none() { in execute()
134 let elf = ElfFile64::<Endianness>::parse(&bytes)?; in execute()
143 .and_then(|bytes| FrameTable::parse(bytes, text).ok()); in execute()
160 .and_then(|bytes| wasmtime_environ::iterate_address_map(bytes)) in execute()
165 .and_then(|bytes| wasmtime_environ::iterate_traps(bytes)) in execute()
170 .and_then(|bytes| StackMap::iter(bytes)) in execute()
175 .and_then(|bytes| ExceptionTable::parse(bytes).ok()) in execute()
181 .and_then(|bytes| FrameTable::parse(bytes, text).ok()) in execute()
200 let bytes = &text[sym.address() as usize..][..sym.size() as usize]; in execute() localVariable
260 for inst in self.disas(&elf, bytes, sym.address())? { in execute()
266 bytes, in execute()
272 let mut bytes = bytes.iter().map(Some).chain(iter::repeat(None)); in execute() localVariable
294 if self.bytes { in execute()
353 if self.bytes { in execute()
355 for byte in bytes.by_ref().take(inline_bytes) { in execute()
377 if self.bytes { in execute()
380 for byte in bytes { in execute()
476 bytes: inst.bytes().to_vec(), in disas()
514 bytes: func[bytes_range].to_vec(), in disas_pulley()
550 bytes: Vec<u8>, field