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:PAYLOAD_MASK
(Results
1 - 5
of
5
) sorted by relevance
/arkcompiler/runtime_core/libpandabase/utils/
H
A
D
leb128.h
28
constexpr size_t
PAYLOAD_MASK
= 0x7f;
member
44
uint8_t byte = data[i] &
PAYLOAD_MASK
;
in DecodeUnsigned()
70
if (UNLIKELY(result >
PAYLOAD_MASK
)) {
in DecodeUnsigned()
73
result = (result &
PAYLOAD_MASK
) | ((byte &
PAYLOAD_MASK
) << LEB128_BYTE2_SHIFT);
in DecodeUnsigned()
74
if (byte >
PAYLOAD_MASK
) {
in DecodeUnsigned()
77
result |= (byte &
PAYLOAD_MASK
) << LEB128_BYTE3_SHIFT;
in DecodeUnsigned()
78
if (byte >
PAYLOAD_MASK
) {
in DecodeUnsigned()
81
result |= (byte &
PAYLOAD_MASK
) << LEB128_BYTE4_SHIFT;
in DecodeUnsigned()
82
if (byte >
PAYLOAD_MASK
) {
in DecodeUnsigned()
[all...]
/arkcompiler/runtime_core/static_core/libpandabase/utils/
H
A
D
leb128.h
28
constexpr size_t
PAYLOAD_MASK
= 0x7f;
member
44
uint8_t byte = data[i] &
PAYLOAD_MASK
;
in DecodeUnsigned()
71
if (UNLIKELY(result >
PAYLOAD_MASK
)) {
in DecodeUnsigned()
74
result = (result &
PAYLOAD_MASK
) | ((byte &
PAYLOAD_MASK
) << LEB128_BYTE2_SHIFT);
in DecodeUnsigned()
76
if (byte <=
PAYLOAD_MASK
) {
in DecodeUnsigned()
81
result |= (byte &
PAYLOAD_MASK
) << LEB128_BYTE3_SHIFT;
in DecodeUnsigned()
82
if (byte <=
PAYLOAD_MASK
) {
in DecodeUnsigned()
87
result |= (byte &
PAYLOAD_MASK
) << LEB128_BYTE4_SHIFT;
in DecodeUnsigned()
88
if (byte <=
PAYLOAD_MASK
) {
in DecodeUnsigned()
[all...]
/arkcompiler/runtime_core/static_core/verification/util/
H
A
D
mem.h
55
uintptr_t constexpr
PAYLOAD_MASK
= ~(POINTER_CHECK_MASK | TAG_MASK);
member
76
return x &
PAYLOAD_MASK
;
in GetPayload()
/arkcompiler/runtime_core/static_core/libpandafile/
H
A
D
helpers.h
99
if ((*sp)[0U] <= leb128::
PAYLOAD_MASK
) {
in SkipULeb128()
104
if ((*sp)[1U] <= leb128::
PAYLOAD_MASK
) {
in SkipULeb128()
109
if ((*sp)[2U] <= leb128::
PAYLOAD_MASK
) {
in SkipULeb128()
114
ASSERT((*sp)[3U] <= leb128::
PAYLOAD_MASK
);
in SkipULeb128()
/arkcompiler/runtime_core/libpandafile/
H
A
D
helpers.h
135
if (sp->Size() > 0U && (*sp)[0U] <= leb128::
PAYLOAD_MASK
) {
in SkipULeb128()
140
if (sp->Size() > 1U && (*sp)[1U] <= leb128::
PAYLOAD_MASK
) {
in SkipULeb128()
145
if (sp->Size() > 2U && (*sp)[2U] <= leb128::
PAYLOAD_MASK
) {
in SkipULeb128()
150
if (sp->Size() > 3U && (*sp)[3U] <= leb128::
PAYLOAD_MASK
) {
in SkipULeb128()
Completed in 2 milliseconds