/third_party/gptfdisk/ |
H A D | gptcurses.h | 59 // 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 D | gptcurses.cc | 78 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 D | raw-heap.h | 58 // 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 D | object-allocator.h | 89 return AllocateObjectOnSpace(NormalPageSpace::From(*raw_heap_.Space(type)), in AllocateObject() 100 return AllocateObjectOnSpace(NormalPageSpace::From(*raw_heap_.Space(type)), in AllocateObject()
|
H A D | object-allocator.cc | 148 *raw_heap_.Space(RawHeap::RegularSpaceType::kLarge)); in OutOfLineAllocateImpl()
|
/third_party/node/deps/v8/src/heap/ |
H A D | spaces.h | 111 // 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 D | spaces.cc | 225 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 D | spaces-inl.h | 45 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 D | heap-allocator.h | 24 class Space; 102 Space* spaces_[LAST_SPACE + 1];
|
H A D | sweeper.h | 24 class Space; 138 Page* page, Space* space,
|
H A D | memory-chunk.h | 178 Space* owner() const { in owner() 179 return reinterpret_cast<Space*>(BasicMemoryChunk::owner()); in owner()
|
H A D | memory-chunk-inl.h | 38 Space::MoveExternalBackingStoreBytes(type, from->owner(), to->owner(), in MoveExternalBackingStoreBytes()
|
H A D | memory-allocator.h | 187 MemoryAllocator::AllocationMode alloc_mode, Space* space, 320 Space* space);
|
H A D | new-spaces.h | 36 class SemiSpace : public Space { 44 : Space(heap, NEW_SPACE, new NoFreeList()), in SemiSpace()
|
H A D | large-spaces.h | 69 class V8_EXPORT_PRIVATE LargeObjectSpace : public Space {
|
/third_party/node/deps/v8/include/cppgc/ |
H A D | custom-space.h | 70 using Space = void; 90 IsAllocatedOnCompactableSpaceImpl<typename SpaceTrait<T>::Space>::value;
|
H A D | allocation.h | 183 typename SpaceTrait<T>::Space, kWantedAlignment>::Invoke(handle, size); in Allocate()
|
/third_party/node/deps/v8/include/v8-include/cppgc/ |
H A D | custom-space.h | 70 using Space = void; 90 IsAllocatedOnCompactableSpaceImpl<typename SpaceTrait<T>::Space>::value;
|
H A D | allocation.h | 183 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 D | SlotIndexes.cpp | 161 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 D | MCAsmLexer.cpp | 18 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 D | print.rs | 251 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 D | escape_unittest.cc | 74 TEST(Escape, Space) { in TEST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
H A D | MCAsmMacro.h | 44 Space, enumerator
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDie.cpp | 288 std::string Space = DumpOpts.ShowAddresses ? " " : ""; 297 OS << Space << "\"" << Name << '\"'; 299 OS << Space << "\"";
|