COLLECTED BY
Organization:
Internet Archive
Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
The Wayback Machine - https://web.archive.org/web/20210418083743/https://github.com/topics/allocator
Here are
141 public repositories
matching this topic...
A memory allocator that automatically reduces the memory footprint of C/C++ applications.
Public domain cross platform lock free thread caching 16-byte aligned memory allocator implemented in C
The standard library of the D programming language
STL compatible C++ memory allocator library using a new RawAllocator concept that is similar to an Allocator but easier to use and write.
A simple heap memory allocator in ~200 lines.
malloc / free replacement for unmanaged, linear memory situations (e.g. WASM, embedded devices...)
Message passing based allocator
The Wasm-Enabled, Elfin Allocator
Updated
Mar 19, 2021
Rust
Updated
Dec 14, 2020
Rust
contiguous container library - arrays with customizable allocation, small buffer optimization and more
A Rust wrapper over Microsoft's MiMalloc memory allocator
🦀 Memory allocator written in pure Rust for GPU memory in Vulkan and in the future DirectX 12
Updated
Mar 11, 2021
Rust
Constant-complexity deterministic memory allocator (heap) for hard real-time high-integrity embedded systems
GC-free, high-performance D library: Containers, networking, metaprogramming, memory management, utilities
🔄 Flexible C memory allocation scheme
A heap allocator for Cortex-M processors
C++-style automatic memory management smart pointers for D
Poireau: a sampling allocation debugger
Fast multi-threaded memory allocator
GDB plug-in that helps exploiting the Linux kernel's SLUB allocator
Updated
Jan 18, 2021
Python
TLSF: two-level segregated fit O(1) allocator
A general purpose, multithreaded capable slab allocator for Zig
Meta allocator for persistent memory
Druid Engine - Improving my C++ / OpenGL skills by writing a Game Engine.
A buddy system allocator in pure Rust.
Updated
Mar 31, 2021
Rust
A workshop for comparing buddy allocator algorithms
A naive and thread safe general-purpose allocator written in Rust built with #[no_std].
Updated
Jun 26, 2020
Rust
Local-affinity first NUMA-aware allocator with optional fallback.
Updated
Dec 21, 2020
Rust
C++ memory allocator with smart GC
Improve this page
Add a description, image, and links to the
allocator
topic page so that developers can more easily learn about it.
Curate this topic
Add this topic to your repo
To associate your repository with the
allocator
topic, visit your repo's landing page and select "manage topics."
Learn more
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.
Originally, Array didn't have runtime-borrow capability and I made the (hasty) decision to base the
Arraystruct on usingCell<RawArray<T>>.It is clear that it makes far more sense to use
RefCellnow, both from a semantic and performance basis. The explicitborrowflagcan also be removed.Source:
interpreter/src/array.rs:42Book:
booksrc/chapter-interp-arrays.md