Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:GetU8
(Results
1 - 13
of
13
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/tests/
H
A
D
assembler_x64_test.cpp
136
uint32_t value = masm.
GetU8
(current++);
in HWTEST_F_L0()
139
value = masm.
GetU8
(current++);
in HWTEST_F_L0()
141
value = masm.
GetU8
(current++);
in HWTEST_F_L0()
144
value = masm.
GetU8
(current++);
in HWTEST_F_L0()
148
value = masm.
GetU8
(current++);
in HWTEST_F_L0()
150
value = masm.
GetU8
(current++);
in HWTEST_F_L0()
152
value = masm.
GetU8
(current++);
in HWTEST_F_L0()
155
value = masm.
GetU8
(current++);
in HWTEST_F_L0()
157
value = masm.
GetU8
(current++);
in HWTEST_F_L0()
159
value = masm.
GetU8
(curren
in HWTEST_F_L0()
[all...]
/arkcompiler/ets_runtime/ecmascript/regexp/tests/
H
A
D
dyn_chunk_test.cpp
64
uint32_t val1 = dynChunk.
GetU8
(0);
in HWTEST_F_L0()
80
uint32_t val1 = dynChunk.
GetU8
(0);
in HWTEST_F_L0()
81
uint32_t val2 = dynChunk.
GetU8
(1);
in HWTEST_F_L0()
93
uint32_t val1 = dynChunk.
GetU8
(0);
in HWTEST_F_L0()
94
uint32_t val2 = dynChunk.
GetU8
(1);
in HWTEST_F_L0()
95
uint32_t val3 = dynChunk.
GetU8
(2);
in HWTEST_F_L0()
96
uint32_t val4 = dynChunk.
GetU8
(3);
in HWTEST_F_L0()
/arkcompiler/runtime_core/static_core/runtime/tests/
H
A
D
dyn_buffer_test.cpp
64
uint32_t val1 = dynChunk.
GetU8
(0U);
in TEST_F()
81
uint32_t val1 = dynChunk.
GetU8
(0);
in TEST_F()
82
uint32_t val2 = dynChunk.
GetU8
(1);
in TEST_F()
94
uint32_t val1 = dynChunk.
GetU8
(0U);
in TEST_F()
95
uint32_t val2 = dynChunk.
GetU8
(1U);
in TEST_F()
96
uint32_t val3 = dynChunk.
GetU8
(2U);
in TEST_F()
97
uint32_t val4 = dynChunk.
GetU8
(3U);
in TEST_F()
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/
H
A
D
assembler.h
252
return static_cast<int8_t>(buffer_.
GetU8
(offset));
in GetI8()
255
uint8_t
GetU8
(size_t offset) const
in GetU8()
function in panda::ecmascript::Assembler
257
return buffer_.
GetU8
(offset);
in GetU8()
/arkcompiler/ets_runtime/ecmascript/regexp/
H
A
D
regexp_opcode.cpp
100
uint8_t opCode = buf.
GetU8
(pc);
in GetRegExpOpCode()
134
<< "save_start\t" << buf.
GetU8
(offset + 1) << std::endl;
in DumpOpCode()
149
<< "save_end\t" << buf.
GetU8
(offset + 1) << std::endl;
in DumpOpCode()
350
<< "save_reset\t" << buf.
GetU8
(offset + RegExpOpCode::OP_SIZE_ONE) << "\t"
in DumpOpCode()
351
<< buf.
GetU8
(offset + RegExpOpCode::OP_SIZE_TWO) << std::endl;
in DumpOpCode()
584
<< "backreference\t" << buf.
GetU8
(offset + 1) << std::endl;
in DumpOpCode()
599
<< "backward_backreference\t" << buf.
GetU8
(offset + 1) << std::endl;
in DumpOpCode()
H
A
D
regexp_executor.h
175
uint32_t captureIndex = byteCode.
GetU8
(GetCurrentPC() + 1);
in HandleOpSaveStart()
187
uint32_t captureIndex = byteCode.
GetU8
(GetCurrentPC() + 1);
in HandleOpSaveEnd()
199
uint32_t catpureStartIndex = byteCode.
GetU8
(GetCurrentPC() + SAVE_RESET_START);
in HandleOpSaveReset()
200
uint32_t catpureEndIndex = byteCode.
GetU8
(GetCurrentPC() + SAVE_RESET_END);
in HandleOpSaveReset()
367
uint32_t captureIndex = byteCode.
GetU8
(GetCurrentPC() + 1);
in HandleOpBackReference()
H
A
D
regexp_parser.cpp
102
uint8_t opCode = buffer_.
GetU8
(ptr);
in Parse()
161
uint8_t opCode = buffer_.
GetU8
(ptr);
in ParseDisjunction()
171
uint8_t opCodeChar = buffer_.
GetU8
(branch);
in ParseDisjunction()
856
uint8_t firstOp = buffer_.
GetU8
(atomBcStart);
in ParseQuantifier()
H
A
D
regexp_executor.cpp
88
uint8_t opCode = byteCode.
GetU8
(GetCurrentPC());
in ExecuteInternal()
/arkcompiler/runtime_core/static_core/runtime/regexp/ecmascript/
H
A
D
regexp_opcode.cpp
94
uint8_t opCode = buf.
GetU8
(pc);
in GetRegExpOpCode()
128
<< "save_start\t" << buf.
GetU8
(offset + 1) << std::endl;
in DumpOpCode()
143
<< "save_end\t" << buf.
GetU8
(offset + 1) << std::endl;
in DumpOpCode()
330
<< "save_reset\t" << buf.
GetU8
(offset + RegExpOpCode::OP_SIZE_ONE) << "\t"
in DumpOpCode()
331
<< buf.
GetU8
(offset + RegExpOpCode::OP_SIZE_TWO) << std::endl;
in DumpOpCode()
548
<< "backreference\t" << buf.
GetU8
(offset + 1) << std::endl;
in DumpOpCode()
563
<< "backward_backreference\t" << buf.
GetU8
(offset + 1) << std::endl;
in DumpOpCode()
H
A
D
regexp_executor.h
189
uint32_t captureIndex = byteCode.
GetU8
(GetCurrentPC() + 1);
in HandleOpSaveStart()
199
uint32_t captureIndex = byteCode.
GetU8
(GetCurrentPC() + 1);
209
uint32_t catpureStartIndex = byteCode.
GetU8
(GetCurrentPC() + SAVE_RESET_START);
210
uint32_t catpureEndIndex = byteCode.
GetU8
(GetCurrentPC() + SAVE_RESET_END);
H
A
D
regexp_executor.cpp
114
uint8_t opCode = byteCode.
GetU8
(GetCurrentPC());
in ExecuteInternal()
531
uint32_t captureIndex = byteCode.
GetU8
(GetCurrentPC() + 1);
in HandleOpBackReference()
/arkcompiler/ets_runtime/ecmascript/mem/
H
A
D
dyn_chunk.h
118
inline uint32_t
GetU8
(size_t offset) const
in GetU8()
function in panda::ecmascript::DynChunk
/arkcompiler/runtime_core/static_core/runtime/regexp/ecmascript/mem/
H
A
D
dyn_chunk.h
131
inline uint32_t
GetU8
(size_t offset) const
in GetU8()
function in ark::DynChunk
Completed in 13 milliseconds