Searched refs:raw_bytes (Results 1 – 4 of 4) sorted by relevance
126 base::Vector<RegExpInstruction> AsInstructionSequence(ByteArray raw_bytes) { in AsInstructionSequence() argument128 reinterpret_cast<RegExpInstruction*>(raw_bytes.GetDataStartAddress()); in AsInstructionSequence()129 int inst_num = raw_bytes.length() / sizeof(RegExpInstruction); in AsInstructionSequence()130 DCHECK_EQ(sizeof(RegExpInstruction) * inst_num, raw_bytes.length()); in AsInstructionSequence()
59 ByteArray raw_bytes, const DisallowGarbageCollection& no_gc) { in ToInstructionVector() argument61 reinterpret_cast<RegExpInstruction*>(raw_bytes.GetDataStartAddress()); in ToInstructionVector()62 int inst_num = raw_bytes.length() / sizeof(RegExpInstruction); in ToInstructionVector()63 DCHECK_EQ(sizeof(RegExpInstruction) * inst_num, raw_bytes.length()); in ToInstructionVector()
117 WasmValue(byte* raw_bytes, ValueType type) : type_(type), bit_pattern_{} { in WasmValue() argument119 memcpy(bit_pattern_, raw_bytes, type.value_kind_size());
710 const unsigned char* raw_bytes = value->raw_data(); in PrintLiteral() local712 Print(format, raw_bytes[i]); in PrintLiteral()