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:CONST_2
(Results
1 - 5
of
5
) sorted by relevance
/arkcompiler/runtime_core/libpandabase/utils/
H
A
D
utf.cpp
28
constexpr size_t
CONST_2
= 2;
member
66
if (max_bytes <
CONST_2
) {
in ConvertMUtf8ToUtf16Pair()
77
uint8_t d2 = sp[
CONST_2
];
in ConvertMUtf8ToUtf16Pair()
79
return {((d0 & MASK_4BIT) << (DATA_WIDTH *
CONST_2
)) | ((d1 & MASK_6BIT) << DATA_WIDTH) | (d2 & MASK_6BIT),
in ConvertMUtf8ToUtf16Pair()
87
uint32_t code_point = ((d0 & MASK_4BIT) << (DATA_WIDTH * CONST_3)) | ((d1 & MASK_6BIT) << (DATA_WIDTH *
CONST_2
)) |
in ConvertMUtf8ToUtf16Pair()
119
return {
CONST_2
, {MUTF8_2B_FIRST, MUTF8_2B_SECOND}};
in ConvertUtf16ToMUtf8()
127
return {
CONST_2
, {ch0, ch1}};
in ConvertUtf16ToMUtf8()
139
auto ch1 = static_cast<uint8_t>(((codePoint >> (DATA_WIDTH *
CONST_2
)) & MASK_6BIT) | MASK1);
in ConvertUtf16ToMUtf8()
332
res += pair > MAX_U16 ?
CONST_2
: 1;
in MUtf8ToUtf16Size()
347
res += pair > MAX_U16 ?
CONST_2
in MUtf8ToUtf16Size()
[all...]
/arkcompiler/runtime_core/static_core/libpandabase/utils/
H
A
D
utf.cpp
60
if (maxBytes <
CONST_2
) {
in ConvertMUtf8ToUtf16Pair()
71
uint8_t d2 = sp[
CONST_2
];
in ConvertMUtf8ToUtf16Pair()
73
return {((d0 & MASK_4BIT) << (DATA_WIDTH *
CONST_2
)) | ((d1 & MASK_6BIT) << DATA_WIDTH) | (d2 & MASK_6BIT),
in ConvertMUtf8ToUtf16Pair()
81
uint32_t codePoint = ((d0 & MASK_4BIT) << (DATA_WIDTH * CONST_3)) | ((d1 & MASK_6BIT) << (DATA_WIDTH *
CONST_2
)) |
in ConvertMUtf8ToUtf16Pair()
266
res += pair > MAX_U16 ?
CONST_2
: 1;
in MUtf8ToUtf16Size()
281
res += pair > MAX_U16 ?
CONST_2
: 1;
in MUtf8ToUtf16Size()
H
A
D
utf.h
89
constexpr size_t
CONST_2
= 2;
variable
/arkcompiler/ets_runtime/ecmascript/base/
H
A
D
utf_helper.cpp
361
if (utf8Len >=
CONST_2
&& utf8[utf8Len -
CONST_2
] >= 0xE0) {
in FixUtf8Len()
363
trimSize =
CONST_2
;
in FixUtf8Len()
387
res +=
CONST_2
;
in Utf8ToUtf16Size()
401
in_pos +=
CONST_2
;
in Utf8ToUtf16Size()
H
A
D
utf_helper.h
27
static constexpr size_t
CONST_2
= 2;
member
Completed in 5 milliseconds