mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 10:07:44 +00:00
Everywhere: Run clang-format
This commit is contained in:
parent
0376c127f6
commit
086969277e
1665 changed files with 8479 additions and 8479 deletions
|
@ -20,16 +20,16 @@ public:
|
|||
Optional<Range> allocate_anywhere(size_t, size_t alignment = PAGE_SIZE);
|
||||
Optional<Range> allocate_specific(VirtualAddress, size_t);
|
||||
Optional<Range> allocate_randomized(size_t, size_t alignment);
|
||||
void deallocate(const Range&);
|
||||
void deallocate(Range const&);
|
||||
|
||||
void reserve_user_range(VirtualAddress, size_t);
|
||||
|
||||
void dump() const;
|
||||
|
||||
bool contains(const Range& range) const { return m_total_range.contains(range); }
|
||||
bool contains(Range const& range) const { return m_total_range.contains(range); }
|
||||
|
||||
private:
|
||||
void carve_at_index(int, const Range&);
|
||||
void carve_at_index(int, Range const&);
|
||||
|
||||
Vector<Range> m_available_ranges;
|
||||
Range m_total_range;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue