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:LINE_BASE
(Results
1 - 12
of
12
) sorted by relevance
/arkcompiler/runtime_core/static_core/libpandafile/tests/
H
A
D
file_items_test.cpp
32
constexpr int32_t LINE_MAX_INC = LineNumberProgramItem::LINE_RANGE + LineNumberProgramItem::
LINE_BASE
- 1;
in TEST()
33
constexpr int32_t LINE_MIN_INC = LineNumberProgramItem::
LINE_BASE
;
in TEST()
44
data.push_back((line_inc - LineNumberProgramItem::
LINE_BASE
) + (pc_inc * LineNumberProgramItem::LINE_RANGE) +
in TEST()
/arkcompiler/runtime_core/libpandafile/tests/
H
A
D
file_items_test.cpp
33
constexpr int32_t LINE_MAX_INC = LineNumberProgramItem::LINE_RANGE + LineNumberProgramItem::
LINE_BASE
- 1;
in HWTEST()
34
constexpr int32_t LINE_MIN_INC = LineNumberProgramItem::
LINE_BASE
;
in HWTEST()
45
data.push_back((line_inc - LineNumberProgramItem::
LINE_BASE
) + (pc_inc * LineNumberProgramItem::LINE_RANGE) +
in HWTEST()
/arkcompiler/runtime_core/libpandafile/
H
A
D
line_number_program.h
282
int32_t line_offset = adjust_opcode % LineNumberProgramItem::LINE_RANGE + LineNumberProgramItem::
LINE_BASE
;
in HandleSpecialOpcode()
H
A
D
file_items.cpp
1532
if (line_inc <
LINE_BASE
|| (line_inc -
LINE_BASE
) >= LINE_RANGE) {
in EmitSpecialOpcode()
1536
auto opcode = static_cast<size_t>(line_inc -
LINE_BASE
) + static_cast<size_t>(pc_inc * LINE_RANGE) + OPCODE_BASE;
in EmitSpecialOpcode()
H
A
D
file_items.h
635
static constexpr int32_t
LINE_BASE
= -4;
member in panda::panda_file::ClassTag::MethodTag::FieldTag::FunctionKind::ItemRank::LineNumberProgramItem
H
A
D
file_reader.cpp
1271
adjust_opcode % LineNumberProgramItem::LINE_RANGE + LineNumberProgramItem::
LINE_BASE
;
in UpdateDebugInfo()
/arkcompiler/runtime_core/static_core/libpandafile/
H
A
D
line_number_program.h
291
int32_t lineOffset = adjustOpcode % LineNumberProgramItem::LINE_RANGE + LineNumberProgramItem::
LINE_BASE
;
in HandleSpecialOpcode()
H
A
D
file_items.cpp
1472
if (lineInc <
LINE_BASE
|| (lineInc -
LINE_BASE
) >= LINE_RANGE) {
in EmitSpecialOpcode()
1476
auto opcode = static_cast<size_t>(lineInc -
LINE_BASE
) + static_cast<size_t>(pcInc * LINE_RANGE) + OPCODE_BASE;
in EmitSpecialOpcode()
H
A
D
file_items.h
624
static constexpr int32_t
LINE_BASE
= -4;
member in ark::panda_file::ClassTag::MethodTag::FieldTag::LineNumberProgramItemBase
/arkcompiler/runtime_core/assembler/tests/
H
A
D
emitter_test.cpp
184
return (line_inc - panda_file::LineNumberProgramItem::
LINE_BASE
) +
in GetSpecialOpcode()
H
A
D
assembler_emitter_test.cpp
50
return static_cast<uint8_t>(line_inc - panda_file::LineNumberProgramItem::
LINE_BASE
) +
in GetSpecialOpcode()
/arkcompiler/runtime_core/static_core/assembler/tests/
H
A
D
emitter_test.cpp
187
return (lineInc - panda_file::LineNumberProgramItem::
LINE_BASE
) +
in GetSpecialOpcode()
Completed in 20 milliseconds