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:pageSize
(Results
1 - 4
of
4
) sorted by relevance
/arkcompiler/runtime_core/static_core/libpandabase/tests/
H
A
D
mmap_test.cpp
127
size_t
pageSize
= ark::os::mem::GetPageSize();
in TEST_F()
local
130
ASSERT_TRUE((MMAP_ALLOC_SIZE %
pageSize
) == 0U);
in TEST_F()
132
curAddr = AlignUp(curAddr,
pageSize
);
in TEST_F()
133
ASSERT_TRUE((curAddr %
pageSize
) == 0U);
in TEST_F()
/arkcompiler/runtime_core/static_core/libziparchive/tests/
H
A
D
libziparchive_tests.cpp
197
uint32_t
pageSize
= os::mem::GetPageSize();
in ExtractFile()
local
198
ASSERT(
pageSize
!= 0);
in ExtractFile()
199
uint32_t minPages = uncompressedLength /
pageSize
;
in ExtractFile()
200
uint32_t sizeToMmap = uncompressedLength %
pageSize
== 0 ? minPages *
pageSize
: (minPages + 1) *
pageSize
;
in ExtractFile()
240
uint32_t
pageSize
= os::mem::GetPageSize();
in ExtractPandaFile()
local
241
ASSERT(
pageSize
!= 0);
in ExtractPandaFile()
242
uint32_t minPages = uncompressedLength /
pageSize
;
in ExtractPandaFile()
243
uint32_t sizeToMmap = uncompressedLength %
pageSize
in ExtractPandaFile()
[all...]
/arkcompiler/ets_runtime/ecmascript/platform/unix/linux/
H
A
D
os.cpp
52
auto
pageSize
= sysconf(_SC_PAGE_SIZE);
in PhysicalSize()
local
53
return pages *
pageSize
;
in PhysicalSize()
/arkcompiler/ets_runtime/ecmascript/mem/
H
A
D
machine_code.cpp
28
constexpr size_t
pageSize
= 4096;
in SetPageProtect()
local
29
uintptr_t startPage = AlignDown(reinterpret_cast<uintptr_t>(textStart),
pageSize
);
in SetPageProtect()
30
uintptr_t endPage = AlignUp(reinterpret_cast<uintptr_t>(textStart) + dataSize,
pageSize
);
in SetPageProtect()
Completed in 2 milliseconds