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:Area
(Results
1 - 8
of
8
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/mem/
H
A
D
area.h
20
class
Area
{
class
22
Area
(uintptr_t begin, size_t capacity)
in Area()
function in panda::ecmascript::Area
27
~
Area
() = default;
28
NO_COPY_SEMANTIC(
Area
);
29
NO_MOVE_SEMANTIC(
Area
);
41
void LinkPrev(
Area
*prev)
in LinkPrev()
46
void LinkNext(
Area
*next)
in LinkNext()
60
Area
*GetPrev() const
in GetPrev()
65
Area
*GetNext() const
in GetNext()
71
Area
*next
[all...]
H
A
D
chunk.cpp
24
Area
*Chunk::NewArea(size_t size)
in NewArea()
41
Area
*head = currentArea_;
in Expand()
47
newSize = sizeof(
Area
) + MEM_ALIGN + size;
in Expand()
53
size_t minNewSize = sizeof(
Area
) + MEM_ALIGN + size;
in Expand()
62
Area
*area = NewArea(newSize);
in Expand()
76
Area
*node = areaList_.PopBack();
in ReleaseMemory()
H
A
D
native_area_allocator.h
46
Area
*AllocateArea(size_t capacity);
47
void FreeArea(
Area
*area);
191
static inline
Area
*AllocateSpace(size_t capacity)
in AllocateSpace()
193
size_t headerSize = sizeof(
Area
);
in AllocateSpace()
195
LOG_ECMA_MEM(FATAL) << "capacity must have a size not less than sizeof
Area
.";
in AllocateSpace()
207
return new (mem)
Area
(begin, capacity);
in AllocateSpace()
210
static inline void FreeSpace(
Area
*area)
in FreeSpace()
223
Area
*cachedArea_ {nullptr};
H
A
D
native_area_allocator.cpp
24
Area
*NativeAreaAllocator::AllocateArea(size_t capacity)
in AllocateArea()
26
size_t headerSize = sizeof(
Area
);
in AllocateArea()
28
LOG_ECMA_MEM(FATAL) << "capacity must have a size not less than sizeof
Area
.";
in AllocateArea()
53
return new (mem)
Area
(begin, capacity);
in AllocateArea()
56
void NativeAreaAllocator::FreeArea(
Area
*area)
in FreeArea()
65
auto size = area->GetSize() + sizeof(
Area
);
in FreeArea()
H
A
D
mark_stack.h
117
Area
*node = unusedList_.PopBack();
in FinishMarking()
127
Area
*last = areaList_.PopBack();
in PopBack()
162
Area
*currentArea_ {nullptr};
163
EcmaList<
Area
> areaList_ {};
164
EcmaList<
Area
> unusedList_ {};
H
A
D
chunk.h
92
Area
*currentArea_ {nullptr};
97
Area
*NewArea(size_t size);
100
EcmaList<
Area
> areaList_ {};
/arkcompiler/ets_runtime/ecmascript/
H
A
D
js_thread.h
1316
Area
*GetOrCreateRegExpCache();
1562
Area
*regExpCache_ {nullptr};
H
A
D
js_thread.cpp
1087
Area
*JSThread::GetOrCreateRegExpCache()
in GetOrCreateRegExpCache()
Completed in 7 milliseconds