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:ComputeSizeUtf8
(Results
1 - 9
of
9
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/
H
A
D
ecma_string-inl.h
109
size_t size = IsUtf8() ? LineEcmaString::
ComputeSizeUtf8
(newLength) : LineEcmaString::ComputeSizeUtf16(newLength);
in TrimLineString()
140
size_t size = compressed ? LineEcmaString::
ComputeSizeUtf8
(length) : LineEcmaString::ComputeSizeUtf16(length);
in CreateLineString()
150
size_t size = compressed ? LineEcmaString::
ComputeSizeUtf8
(length) : LineEcmaString::ComputeSizeUtf16(length);
in CreateLineStringNoGC()
163
size_t size = compressed ? LineEcmaString::
ComputeSizeUtf8
(length) : LineEcmaString::ComputeSizeUtf16(length);
in CreateLineStringWithSpaceType()
H
A
D
ecma_string.h
778
static size_t
ComputeSizeUtf8
(uint32_t utf8Len)
791
return str->IsUtf16() ? ComputeSizeUtf16(length) :
ComputeSizeUtf8
(length);
/arkcompiler/ets_runtime/ecmascript/compiler/
H
A
D
hcr_circuit_builder.h
131
GateRef CircuitBuilder::
ComputeSizeUtf8
(GateRef length)
in ComputeSizeUtf8()
function in panda::ecmascript::kungfu::CircuitBuilder
H
A
D
circuit_builder.h
749
inline GateRef
ComputeSizeUtf8
(GateRef length);
H
A
D
stub_builder.h
972
GateRef
ComputeSizeUtf8
(GateRef length);
H
A
D
new_object_stub_builder.cpp
1621
size_ = AlignUp(
ComputeSizeUtf8
(ZExtInt32ToPtr(length)),
in AllocLineStringObject()
H
A
D
stub_builder-inl.h
3553
inline GateRef StubBuilder::
ComputeSizeUtf8
(GateRef length)
in ComputeSizeUtf8()
function in panda::ecmascript::kungfu::StubBuilder
H
A
D
typed_hcr_lowering.cpp
2104
size = builder_.AlignUp(builder_.
ComputeSizeUtf8
(builder_.ZExtInt32ToPtr(length)),
in AllocateLineString()
/arkcompiler/ets_runtime/ecmascript/tests/
H
A
D
ecma_string_accessor_test.cpp
27
* @tc.name:
ComputeSizeUtf8
28
* @tc.desc: Check whether the value returned through calling
ComputeSizeUtf8
function is within expectations.
32
HWTEST_F_L0(LineEcmaStringTest,
ComputeSizeUtf8
)
in HWTEST_F_L0()
37
EXPECT_EQ(LineEcmaString::
ComputeSizeUtf8
(length), length + LineEcmaString::SIZE);
in HWTEST_F_L0()
Completed in 32 milliseconds