OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RegionSpace
(Results
1 - 13
of
13
) sorted by null
/art/runtime/gc/collector/
concurrent_copying-inl.h
51
space::
RegionSpace
::RegionType rtype = region_space_->GetRegionType(from_ref);
53
case space::
RegionSpace
::RegionType::kRegionTypeToSpace:
56
case space::
RegionSpace
::RegionType::kRegionTypeFromSpace: {
70
case space::
RegionSpace
::RegionType::kRegionTypeUnevacFromSpace: {
87
case space::
RegionSpace
::RegionType::kRegionTypeNone:
concurrent_copying.h
47
class
RegionSpace
;
81
void SetRegionSpace(space::
RegionSpace
* region_space) {
85
space::
RegionSpace
*
RegionSpace
() {
189
space::
RegionSpace
* region_space_; // The underlying region space.
concurrent_copying.cc
58
static_assert(space::
RegionSpace
::kRegionSize == accounting::ReadBarrierTable::kRegionSize,
672
if (collector_->
RegionSpace
()->IsInToSpace(ref)) {
746
space::
RegionSpace
* region_space = collector->
RegionSpace
();
751
if (collector->
RegionSpace
()->IsInToSpace(obj)) {
[
all
...]
/art/runtime/gc/space/
region_space.cc
31
RegionSpace
*
RegionSpace
::Create(const std::string& name, size_t capacity,
44
return new
RegionSpace
(name, mem_map.release());
47
RegionSpace
::
RegionSpace
(const std::string& name, MemMap* mem_map)
82
size_t
RegionSpace
::FromSpaceSize() {
94
size_t
RegionSpace
::UnevacFromSpaceSize() {
106
size_t
RegionSpace
::ToSpaceSize() {
118
inline bool
RegionSpace
::Region::ShouldBeEvacuated() {
148
void
RegionSpace
::SetFromSpace(accounting::ReadBarrierTable* rb_table, bool force_evacuate_all)
[
all
...]
region_space-inl.h
26
inline mirror::Object*
RegionSpace
::Alloc(Thread*, size_t num_bytes, size_t* bytes_allocated,
34
inline mirror::Object*
RegionSpace
::AllocThreadUnsafe(Thread* self, size_t num_bytes,
43
inline mirror::Object*
RegionSpace
::AllocNonvirtual(size_t num_bytes, size_t* bytes_allocated,
114
inline mirror::Object*
RegionSpace
::Region::Alloc(size_t num_bytes, size_t* bytes_allocated,
141
inline size_t
RegionSpace
::AllocationSizeNonvirtual(mirror::Object* obj, size_t* usable_size) {
155
template<
RegionSpace
::RegionType kRegionType>
156
uint64_t
RegionSpace
::GetBytesAllocatedInternal() {
190
template<
RegionSpace
::RegionType kRegionType>
191
uint64_t
RegionSpace
::GetObjectsAllocatedInternal() {
226
void
RegionSpace
::WalkInternal(ObjectCallback* callback, void* arg)
[
all
...]
region_space.h
30
class
RegionSpace
FINAL : public ContinuousMemMapAllocSpace {
41
static
RegionSpace
* Create(const std::string& name, size_t capacity, uint8_t* requested_begin);
147
RegionSpace
* AsRegionSpace() OVERRIDE {
228
RegionSpace
(const std::string& name, MemMap* mem_map);
478
friend class
RegionSpace
;
522
DISALLOW_COPY_AND_ASSIGN(
RegionSpace
);
525
std::ostream& operator<<(std::ostream& os, const
RegionSpace
::RegionState& value);
526
std::ostream& operator<<(std::ostream& os, const
RegionSpace
::RegionType& value);
space.h
53
class
RegionSpace
;
140
virtual
RegionSpace
* AsRegionSpace();
space.cc
61
RegionSpace
* Space::AsRegionSpace() {
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
oprghdlr.h
25
IN ULONG
RegionSpace
,
/art/runtime/gc/
heap-inl.h
338
alloc_size = RoundUp(alloc_size, space::
RegionSpace
::kAlignment);
345
DCHECK_ALIGNED(alloc_size, space::
RegionSpace
::kAlignment);
347
if (space::
RegionSpace
::kRegionSize >= alloc_size) {
349
if (LIKELY(!IsOutOfMemoryOnAllocation<kGrow>(allocator_type, space::
RegionSpace
::kRegionSize))) {
357
*bytes_tl_bulk_allocated = space::
RegionSpace
::kRegionSize;
reference_queue.cc
76
const bool is_moving = concurrent_copying->
RegionSpace
()->IsInToSpace(ref);
heap.h
90
class
RegionSpace
;
[
all
...]
heap.cc
445
region_space_ = space::
RegionSpace
::Create("Region space", capacity_ * 2, request_begin);
[
all
...]
Completed in 188 milliseconds