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/20200902045110/https://github.com/topics/allocator
Here are
120 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
Aug 17, 2020
Rust
Updated
Aug 13, 2019
Rust
contiguous container library - arrays with customizable allocation, small buffer optimization and more
A Rust wrapper over Microsoft's MiMalloc memory allocator
Updated
Aug 20, 2020
Rust
🔄 Flexible C memory allocation scheme
GC-free, high-performance D library: Containers, networking, metaprogramming, memory management, utilities
C++-style automatic memory management smart pointers for D
Poireau: a sampling allocation debugger
Fast multi-threaded memory allocator
A heap allocator for Cortex-M processors
TLSF: two-level segregated fit O(1) allocator
A general purpose, multithreaded capable slab allocator for Zig
GDB plug-in that helps exploiting the Linux kernel's SLUB allocator
Updated
Dec 31, 2019
Python
Meta allocator for persistent memory
A naive and thread safe general-purpose allocator written in Rust built with #[no_std].
Updated
Jun 26, 2020
Rust
A workshop for comparing buddy allocator algorithms
C++ memory allocator with smart GC
Extracted std.experimental.allocator for usage via DUB
Indexed Allocator C++ lib
Local-affinity first NUMA-aware allocator with optional fallback.
Updated
Aug 12, 2020
Rust
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