Home
last modified time | relevance | path

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

/ark/js_runtime/ecmascript/regexp/
Dregexp_executor.cpp31 uint32_t size = buffer.GetU32(0); in Execute()
32 nCapture_ = buffer.GetU32(RegExpParser::NUM_CAPTURE__OFFSET); in Execute()
33 nStack_ = buffer.GetU32(RegExpParser::NUM_STACK_OFFSET); in Execute()
34 flags_ = buffer.GetU32(RegExpParser::FLAGS_OFFSET); in Execute()
132 expectedChar = byteCode.GetU32(GetCurrentPC() + 1); in HandleOpChar()
252 uint32_t offset = byteCode.GetU32(GetCurrentPC() + 1); in HandleOpMatch()
260 uint32_t offset = byteCode.GetU32(GetCurrentPC() + 1); in HandleOpSplitFirst()
281 uint32_t quantifyMin = byteCode.GetU32(GetCurrentPC() + LOOP_MIN_OFFSET); in HandleOpLoop()
282 uint32_t quantifyMax = byteCode.GetU32(GetCurrentPC() + LOOP_MAX_OFFSET); in HandleOpLoop()
283 uint32_t pcOffset = byteCode.GetU32(GetCurrentPC() + LOOP_PC_OFFSET); in HandleOpLoop()
[all …]
Dregexp_opcode.cpp176 << "char32\t" << static_cast<char>(buf.GetU32(offset + 1)) << std::endl; in DumpOpCode()
195 << "goto\t" << buf.GetU32(offset + 1) + offset + GetSize() << std::endl; in DumpOpCode()
210 << "split_next\t" << buf.GetU32(offset + 1) + offset + GetSize() << std::endl; in DumpOpCode()
225 << "split_first\t" << buf.GetU32(offset + 1) + offset + GetSize() << std::endl; in DumpOpCode()
241 << "loop\t" << buf.GetU32(offset + 1) + offset + GetSize() << "\t" in DumpOpCode()
242 …<< buf.GetU32(offset + RegExpOpCode::OP_SIZE_FIVE) << "\t" << buf.GetU32(offset + RegExpOpCode::OP… in DumpOpCode()
259 << "greedy_loop\t" << buf.GetU32(offset + 1) + offset + GetSize() << "\t" in DumpOpCode()
260 …<< buf.GetU32(offset + RegExpOpCode::OP_SIZE_FIVE) << "\t" << buf.GetU32(offset + RegExpOpCode::OP… in DumpOpCode()
316 << "check_char\t" << buf.GetU32(offset + 1) + offset + GetSize() << std::endl; in DumpOpCode()
447 << "match_ahead\t" << buf.GetU32(offset + 1) + offset + GetSize() << std::endl; in DumpOpCode()
[all …]
Ddyn_chunk.h87 inline uint32_t GetU32(size_t offset) const in GetU32() function
/ark/js_runtime/ecmascript/regexp/tests/
Ddyn_chunk_test.cpp66 uint32_t val3 = dynChunk.GetU32(4); in HWTEST_F_L0()