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:ALIGN_SIZE
(Results
1 - 5
of
5
) sorted by relevance
/arkcompiler/runtime_core/static_core/platforms/windows/libpandabase/
H
A
D
mem_hooks.cpp
69
constexpr int
ALIGN_SIZE
= 32;
in PandaAllocHook()
local
72
std::cout << std::left << std::setfill(' ') << std::setw(
ALIGN_SIZE
) << "alloc type";
in PandaAllocHook()
73
std::cout << std::left << std::setfill(' ') << std::setw(
ALIGN_SIZE
) << "block type";
in PandaAllocHook()
74
std::cout << std::left << std::setfill(' ') << std::setw(
ALIGN_SIZE
) << "size";
in PandaAllocHook()
75
std::cout << std::left << std::setfill(' ') << std::setw(
ALIGN_SIZE
) << "filename";
in PandaAllocHook()
76
std::cout << std::left << std::setfill(' ') << std::setw(
ALIGN_SIZE
) << "linenumber" << std::endl;
in PandaAllocHook()
83
std::cout << std::left << std::setfill(' ') << std::setw(
ALIGN_SIZE
) << alloctypeName;
in PandaAllocHook()
84
std::cout << std::left << std::setfill(' ') << std::setw(
ALIGN_SIZE
) << blocktypeName;
in PandaAllocHook()
85
std::cout << std::left << std::setfill(' ') << std::setw(
ALIGN_SIZE
) << static_cast<int>(size);
in PandaAllocHook()
86
std::cout << std::left << std::setfill(' ') << std::setw(
ALIGN_SIZE
) << filenam
in PandaAllocHook()
[all...]
/arkcompiler/runtime_core/static_core/compiler/tools/aotdump/
H
A
D
aotdump.cpp
240
constexpr int
ALIGN_SIZE
= 32;
in DumpClassHashTable()
local
241
(*stream_) << std::left << std::setfill(' ') << std::setw(
ALIGN_SIZE
) << "i" << std::left << std::setfill(' ')
in DumpClassHashTable()
242
<< std::setw(
ALIGN_SIZE
) << "next_pos";
in DumpClassHashTable()
243
(*stream_) << std::left << std::setfill(' ') << std::setw(
ALIGN_SIZE
) << "entity_id_offset" << std::left
in DumpClassHashTable()
244
<< std::setfill(' ') << std::setw(
ALIGN_SIZE
) << "descriptor" << std::endl;
in DumpClassHashTable()
251
(*stream_) << std::left << std::setfill(' ') << std::setw(
ALIGN_SIZE
) << (i + 1);
in DumpClassHashTable()
252
(*stream_) << std::left << std::setfill(' ') << std::dec << std::setw(
ALIGN_SIZE
) << entityPair.nextPos;
in DumpClassHashTable()
253
(*stream_) << std::left << std::setfill(' ') << std::dec << std::setw(
ALIGN_SIZE
)
in DumpClassHashTable()
255
(*stream_) << std::left << std::setfill(' ') << std::setw(
ALIGN_SIZE
) << descriptor << std::endl;
in DumpClassHashTable()
257
(*stream_) << std::left << std::setfill(' ') << std::setw(
ALIGN_SIZE
) << (
in DumpClassHashTable()
[all...]
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
H
A
D
pgo_utils.h
30
static constexpr Alignment
ALIGN_SIZE
= Alignment::LOG_ALIGN_4;
member
H
A
D
pgo_profiler_layout.h
352
return sizeof(PGOLayoutDescInfo) + AlignUp(len, GetAlignmentInBytes(
ALIGN_SIZE
));
in Size()
H
A
D
pgo_profiler_info.h
140
return sizeof(PGOMethodInfo) + AlignUp(length, GetAlignmentInBytes(
ALIGN_SIZE
));
in Size()
Completed in 8 milliseconds