Lines Matching refs:byte
55 void WasmFunctionBuilder::EmitByte(byte val) { body_.write_u8(val); }
91 void WasmFunctionBuilder::EmitCode(const byte* code, uint32_t code_size) {
108 void WasmFunctionBuilder::EmitWithU8(WasmOpcode opcode, const byte immediate) {
113 void WasmFunctionBuilder::EmitWithU8U8(WasmOpcode opcode, const byte imm1,
114 const byte imm2) {
170 byte placeholder_bytes[kMaxVarInt32Size] = {0};
180 // We only want to emit one mapping per byte offset.
232 byte** ptr = buffer->pos_ptr();
256 // Offset of the recorded byte offsets.
298 void WasmModuleBuilder::AddDataSegment(const byte* data, uint32_t size,
300 data_segments_.push_back({ZoneVector<byte>(zone()), dest});
301 ZoneVector<byte>& vec = data_segments_.back().data;
514 buffer->write_u8(static_cast<byte>(kSimdPrefix));
515 buffer->write_u8(static_cast<byte>(kExprS128Const & 0xff));
788 // The initial byte is one of 0x05, 0x06, and 0x07.