Home
last modified time | relevance | path

Searched refs:raw_bytes (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/regexp/experimental/
Dexperimental.cc126 base::Vector<RegExpInstruction> AsInstructionSequence(ByteArray raw_bytes) { in AsInstructionSequence() argument
128 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()
Dexperimental-interpreter.cc59 ByteArray raw_bytes, const DisallowGarbageCollection& no_gc) { in ToInstructionVector() argument
61 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()
/third_party/node/deps/v8/src/wasm/
Dwasm-value.h117 WasmValue(byte* raw_bytes, ValueType type) : type_(type), bit_pattern_{} { in WasmValue() argument
119 memcpy(bit_pattern_, raw_bytes, type.value_kind_size());
/third_party/node/deps/v8/src/ast/
Dprettyprinter.cc710 const unsigned char* raw_bytes = value->raw_data(); in PrintLiteral() local
712 Print(format, raw_bytes[i]); in PrintLiteral()