Home
last modified time | relevance | path

Searched refs:Space (Results 1 - 25 of 54) sorted by relevance

123

/third_party/gptfdisk/
H A Dgptcurses.h59 // A "Space" is a partition or an unallocated chunk of disk space, maintained
65 struct Space { struct
70 Space *nextSpace;
71 Space *prevSpace;
78 Space *firstSpace;
79 Space *lastSpace;
80 Space *currentSpace;
92 void UnlinkSpace(Space *theSpace);
93 void LinkToEnd(Space *theSpace);
98 Space* ShowSpac
[all...]
H A Dgptcurses.cc78 Space *trash; in EmptySpaces()
94 Space *tempSpace; in MakeSpacesFromParts()
99 tempSpace = new Space; in MakeSpacesFromParts()
110 // Add a single empty Space to the current Spaces linked list and sort the result....
112 Space *tempSpace; in AddEmptySpace()
114 tempSpace = new Space; in AddEmptySpace()
127 Space *current; in AddEmptySpaces()
154 // Remove the specified Space from the linked list and set its previous and
156 void GPTDataCurses::UnlinkSpace(Space *theSpace) { in UnlinkSpace()
173 void GPTDataCurses::LinkToEnd(Space *theSpac
[all...]
/third_party/node/deps/v8/src/heap/cppgc/
H A Draw-heap.h58 // Space iteration support.
69 BaseSpace* Space(RegularSpaceType type) { in Space() function in cppgc::internal::final
72 return Space(index); in Space()
74 const BaseSpace* Space(RegularSpaceType space) const { in Space() function in cppgc::internal::final
75 return const_cast<RawHeap&>(*this).Space(space); in Space()
79 return Space(SpaceIndexForCustomSpace(space_index)); in CustomSpace()
94 BaseSpace* Space(size_t space_index) { in Space() function in cppgc::internal::final
100 const BaseSpace* Space(size_t space_index) const { in Space() function in cppgc::internal::final
101 return const_cast<RawHeap&>(*this).Space(space_index); in Space()
H A Dobject-allocator.h89 return AllocateObjectOnSpace(NormalPageSpace::From(*raw_heap_.Space(type)), in AllocateObject()
100 return AllocateObjectOnSpace(NormalPageSpace::From(*raw_heap_.Space(type)), in AllocateObject()
H A Dobject-allocator.cc148 *raw_heap_.Space(RawHeap::RegularSpaceType::kLarge)); in OutOfLineAllocateImpl()
/third_party/node/deps/v8/src/heap/
H A Dspaces.h111 // Space is the abstract superclass for all allocation spaces that are not
113 class V8_EXPORT_PRIVATE Space : public BaseSpace { class
115 Space(Heap* heap, AllocationSpace id, FreeList* free_list) in Space() function in v8::internal::Space
125 Space(const Space&) = delete;
126 Space& operator=(const Space&) = delete;
129 ExternalBackingStoreType type, Space* from, Space* to, size_t amount);
131 ~Space() overrid
[all...]
H A Dspaces.cc225 void Space::AddAllocationObserver(AllocationObserver* observer) { in AddAllocationObserver()
229 void Space::RemoveAllocationObserver(AllocationObserver* observer) { in RemoveAllocationObserver()
233 void Space::PauseAllocationObservers() { allocation_counter_.Pause(); } in PauseAllocationObservers()
235 void Space::ResumeAllocationObservers() { allocation_counter_.Resume(); } in ResumeAllocationObservers()
339 Space::AddAllocationObserver(observer); in AddAllocationObserver()
342 Space::AddAllocationObserver(observer); in AddAllocationObserver()
350 Space::RemoveAllocationObserver(observer); in RemoveAllocationObserver()
353 Space::RemoveAllocationObserver(observer); in RemoveAllocationObserver()
359 Space::PauseAllocationObservers(); in PauseAllocationObservers()
363 Space in ResumeAllocationObservers()
[all...]
H A Dspaces-inl.h45 void Space::IncrementExternalBackingStoreBytes(ExternalBackingStoreType type, in IncrementExternalBackingStoreBytes()
51 void Space::DecrementExternalBackingStoreBytes(ExternalBackingStoreType type, in DecrementExternalBackingStoreBytes()
57 void Space::MoveExternalBackingStoreBytes(ExternalBackingStoreType type, in MoveExternalBackingStoreBytes()
58 Space* from, Space* to, in MoveExternalBackingStoreBytes()
181 Space* space = space_iterator_.Next(); in HasNext()
H A Dheap-allocator.h24 class Space;
102 Space* spaces_[LAST_SPACE + 1];
H A Dsweeper.h24 class Space;
138 Page* page, Space* space,
H A Dmemory-chunk.h178 Space* owner() const { in owner()
179 return reinterpret_cast<Space*>(BasicMemoryChunk::owner()); in owner()
H A Dmemory-chunk-inl.h38 Space::MoveExternalBackingStoreBytes(type, from->owner(), to->owner(), in MoveExternalBackingStoreBytes()
H A Dmemory-allocator.h187 MemoryAllocator::AllocationMode alloc_mode, Space* space,
320 Space* space);
H A Dnew-spaces.h36 class SemiSpace : public Space {
44 : Space(heap, NEW_SPACE, new NoFreeList()), in SemiSpace()
H A Dlarge-spaces.h69 class V8_EXPORT_PRIVATE LargeObjectSpace : public Space {
/third_party/node/deps/v8/include/cppgc/
H A Dcustom-space.h70 using Space = void;
90 IsAllocatedOnCompactableSpaceImpl<typename SpaceTrait<T>::Space>::value;
H A Dallocation.h183 typename SpaceTrait<T>::Space, kWantedAlignment>::Invoke(handle, size); in Allocate()
/third_party/node/deps/v8/include/v8-include/cppgc/
H A Dcustom-space.h70 using Space = void;
90 IsAllocatedOnCompactableSpaceImpl<typename SpaceTrait<T>::Space>::value;
H A Dallocation.h183 typename SpaceTrait<T>::Space, kWantedAlignment>::Invoke(handle, size); in Allocate()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DSlotIndexes.cpp161 const unsigned Space = SlotIndex::InstrDist/2; in renumberIndexes() local
162 static_assert((Space & 3) == 0, "InstrDist must be a multiple of 2*NUM"); in renumberIndexes()
167 curItr->setIndex(index += Space); in renumberIndexes()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/
H A DMCAsmLexer.cpp18 CurTok.emplace_back(AsmToken::Space, StringRef()); in MCAsmLexer()
96 case AsmToken::Space: OS << "Space"; break; in dump()
/third_party/rust/crates/regex/regex-syntax/src/ast/
H A Dprint.rs251 Special(ast::SpecialLiteralKind::Space) => { in fmt_literal()
330 Space if ast.negated => self.wtr.write_str(r"\S"), in fmt_class_perl()
331 Space => self.wtr.write_str(r"\s"), in fmt_class_perl()
360 Space if ast.negated => self.wtr.write_str("[:^space:]"), in fmt_class_ascii()
361 Space => self.wtr.write_str("[:space:]"), in fmt_class_ascii()
/third_party/gn/src/gn/
H A Descape_unittest.cc74 TEST(Escape, Space) { in TEST()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
H A DMCAsmMacro.h44 Space, enumerator
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
H A DDWARFDie.cpp288 std::string Space = DumpOpts.ShowAddresses ? " " : "";
297 OS << Space << "\"" << Name << '\"';
299 OS << Space << "\"";

Completed in 12 milliseconds

123