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:aligment_in_bytes
(Results
1 - 3
of
3
) sorted by relevance
/arkcompiler/runtime_core/platforms/unix/libpandabase/
H
A
D
mem.cpp
166
void *MapRWAnonymousWithAlignmentRaw(size_t size, size_t
aligment_in_bytes
, bool force_poison)
in MapRWAnonymousWithAlignmentRaw()
argument
168
ASSERT(
aligment_in_bytes
% GetPageSize() == 0);
in MapRWAnonymousWithAlignmentRaw()
172
void *result = MapRWAnonymousRaw(size +
aligment_in_bytes
, force_poison);
in MapRWAnonymousWithAlignmentRaw()
177
uintptr_t aligned_mem = (allocated_mem & ~(
aligment_in_bytes
- 1U)) +
in MapRWAnonymousWithAlignmentRaw()
178
((allocated_mem %
aligment_in_bytes
) != 0U ?
aligment_in_bytes
: 0U);
in MapRWAnonymousWithAlignmentRaw()
181
ASSERT(unused_in_start <=
aligment_in_bytes
);
in MapRWAnonymousWithAlignmentRaw()
182
size_t unused_in_end =
aligment_in_bytes
- unused_in_start;
in MapRWAnonymousWithAlignmentRaw()
/arkcompiler/runtime_core/platforms/windows/libpandabase/
H
A
D
mem.cpp
247
void *MapRWAnonymousWithAlignmentRaw(size_t size, size_t
aligment_in_bytes
, bool force_poison)
in MapRWAnonymousWithAlignmentRaw()
argument
249
ASSERT(
aligment_in_bytes
% GetPageSize() == 0);
in MapRWAnonymousWithAlignmentRaw()
253
void *result = MapRWAnonymousRaw(size +
aligment_in_bytes
, force_poison);
in MapRWAnonymousWithAlignmentRaw()
258
uintptr_t aligned_mem = (allocated_mem & ~(
aligment_in_bytes
- 1U)) +
in MapRWAnonymousWithAlignmentRaw()
259
((allocated_mem %
aligment_in_bytes
) != 0U ?
aligment_in_bytes
: 0U);
in MapRWAnonymousWithAlignmentRaw()
262
ASSERT(unused_in_start <=
aligment_in_bytes
);
in MapRWAnonymousWithAlignmentRaw()
263
size_t unused_in_end =
aligment_in_bytes
- unused_in_start;
in MapRWAnonymousWithAlignmentRaw()
/arkcompiler/runtime_core/libpandabase/os/
H
A
D
mem.h
322
* Returned address will be aligned as \param
aligment_in_bytes
.
326
* @param
aligment_in_bytes
- alignment in bytes, should be multiple of PAGE_SIZE
330
void *MapRWAnonymousWithAlignmentRaw(size_t size, size_t
aligment_in_bytes
, bool force_poison = true);
Completed in 2 milliseconds