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:code_unit_bits
(Results
1 - 1
of
1
) sorted by relevance
/third_party/jerryscript/jerry-core/lit/
H
A
D
lit-strings.c
223
ecma_char_t
code_unit_bits
;
in convert_code_point_to_low_surrogate()
local
224
code_unit_bits
= (ecma_char_t) (code_point & LIT_UTF16_LAST_10_BITS_MASK);
in convert_code_point_to_low_surrogate()
226
return (ecma_char_t) (LIT_UTF16_LOW_SURROGATE_MARKER |
code_unit_bits
);
in convert_code_point_to_low_surrogate()
240
ecma_char_t
code_unit_bits
;
in convert_code_point_to_high_surrogate()
local
241
code_unit_bits
= (ecma_char_t) ((code_point - LIT_UTF16_FIRST_SURROGATE_CODE_POINT) >> LIT_UTF16_BITS_IN_SURROGATE);
in convert_code_point_to_high_surrogate()
243
return (LIT_UTF16_HIGH_SURROGATE_MARKER |
code_unit_bits
);
in convert_code_point_to_high_surrogate()
681
uint32_t
code_unit_bits
= code_unit;
in lit_code_unit_to_utf8()
local
682
lit_utf8_byte_t second_byte_bits = (lit_utf8_byte_t) (
code_unit_bits
& LIT_UTF8_LAST_6_BITS_MASK);
in lit_code_unit_to_utf8()
683
code_unit_bits
>>= LIT_UTF8_BITS_IN_EXTRA_BYTES;
in lit_code_unit_to_utf8()
685
lit_utf8_byte_t first_byte_bits = (lit_utf8_byte_t) (
code_unit_bits
in lit_code_unit_to_utf8()
694
uint32_t
code_unit_bits
= code_unit;
lit_code_unit_to_utf8()
local
[all...]
Completed in 2 milliseconds