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:byteLen
(Results
1 - 6
of
6
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/builtins/
H
A
D
builtins_sendable_arraybuffer.cpp
297
int32_t
byteLen
= static_cast<int32_t>(byteArrayBuf->GetByteLength());
in CloneArrayBuffer()
local
300
// 6. Let cloneLength be (srcLength – srcByteOffset) *
byteLen
.
in CloneArrayBuffer()
301
cloneLen = static_cast<int32_t>(srcLen - srcByteOffset) *
byteLen
;
in CloneArrayBuffer()
302
srcByteOffset *= static_cast<uint32_t>(
byteLen
);
in CloneArrayBuffer()
H
A
D
builtins_dataview.cpp
73
JSTaggedNumber
byteLen
= JSTaggedValue::ToIndex(thread, byteLenHandle);
in DataViewConstructor()
local
76
viewByteLen = static_cast<uint32_t>(
byteLen
.ToInt32());
in DataViewConstructor()
H
A
D
builtins_arraybuffer.cpp
304
int32_t
byteLen
= static_cast<int32_t>(byteArrayBuf->GetByteLength());
in CloneArrayBuffer()
local
307
// 6. Let cloneLength be (srcLength – srcByteOffset) *
byteLen
.
in CloneArrayBuffer()
308
cloneLen = static_cast<int32_t>(srcLen - srcByteOffset) *
byteLen
;
in CloneArrayBuffer()
309
srcByteOffset *= static_cast<uint32_t>(
byteLen
);
in CloneArrayBuffer()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H
A
D
cgfunc.cpp
527
uint32
byteLen
= GetPrimTypeSize(primType);
in CGFunc()
local
528
if (
byteLen
< k4ByteSize) {
in CGFunc()
529
byteLen
= k4ByteSize;
in CGFunc()
531
new (&GetVirtualRegNodeFromPseudoRegIdx(i)) VirtualRegNode(GetRegTyFromPrimTy(primType),
byteLen
);
in CGFunc()
local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/
H
A
D
aarch64_cgfunc.h
186
RegOperand &CreateRegisterOperandOfType(RegType regType, uint32
byteLen
);
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
H
A
D
aarch64_cgfunc.cpp
3226
RegOperand &AArch64CGFunc::CreateRegisterOperandOfType(RegType regty, uint32
byteLen
)
3230
if (
byteLen
< k4ByteSize) {
3231
byteLen
= k4ByteSize;
3233
regno_t vRegNO = NewVReg(regty,
byteLen
);
Completed in 14 milliseconds