2 dépôts
Techniques for storing small amounts of data inline within an object to avoid heap allocation overhead.
Distinct from Small Data Compression Optimization: This is a low-level memory optimization for containers, unrelated to file or data compression.
Explore 2 awesome GitHub repositories matching operating systems & systems programming · Small-Buffer Optimizations. Refine with filters or upvote what's useful.
This project is a C++ Standard Library implementation that provides the foundational classes and functions required by the ISO C++ standard. It serves as a template-based generic programming library, providing the Standard Template Library's set of containers, algorithms, and iterators for data manipulation. The library is a core component of the MSVC toolchain, designed specifically for integration with the Microsoft Visual C++ compiler and build tools. The implementation covers memory management through optimized allocators and buffer strategies, as well as tools for performance benchmarki
Stores small elements directly within the object structure to avoid heap allocations for common small-scale data.
AndroidX is the official collection of Android Jetpack libraries for building Android applications. It provides a suite of backward-compatible APIs that expose modern platform features on older Android versions, ensuring consistent functionality across devices. The project is built around lifecycle-aware component architecture, with tools like ViewModel for preserving UI data across configuration changes, LiveData for lifecycle-aware data observation, and WorkManager for constraint-based background task scheduling. The project distinguishes itself through compile-time code generation and type
Reduces memory impact of small collections with optimized data structures.