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:alloc_size
(Results
1 - 2
of
2
) sorted by relevance
/arkcompiler/runtime_core/libpandabase/tests/
H
A
D
arena_test.cpp
52
void GetOccupiedAndFreeSizeTestImplementation(size_t arena_size, size_t
alloc_size
)
in GetOccupiedAndFreeSizeTestImplementation()
argument
55
ASSERT_TRUE(
alloc_size
!= 0);
in GetOccupiedAndFreeSizeTestImplementation()
58
ASSERT_TRUE(arena->Alloc(
alloc_size
) != nullptr);
in GetOccupiedAndFreeSizeTestImplementation()
59
ASSERT_TRUE(arena->GetOccupiedSize() ==
alloc_size
);
in GetOccupiedAndFreeSizeTestImplementation()
60
ASSERT_TRUE(old_free_size -
alloc_size
== arena->GetFreeSize());
in GetOccupiedAndFreeSizeTestImplementation()
64
void ResizeAndResetTestImplementation(size_t arena_size, size_t
alloc_size
)
in ResizeAndResetTestImplementation()
argument
68
ASSERT_TRUE(
alloc_size
!= 0);
in ResizeAndResetTestImplementation()
70
ASSERT_TRUE(
alloc_size
* immTwo <= arena->GetFreeSize());
in ResizeAndResetTestImplementation()
71
void *first_allocation = arena->Alloc(
alloc_size
);
in ResizeAndResetTestImplementation()
72
void *second_allocation = arena->Alloc(
alloc_size
);
in ResizeAndResetTestImplementation()
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/aot_file/
H
A
D
elf_checker.cpp
160
size_t
alloc_size
= sizeof(Elf) + extra;
in ElfAllocate()
local
161
Elf* result = reinterpret_cast<Elf*>(new char[
alloc_size
]());
in ElfAllocate()
Completed in 3 milliseconds