Sha256: 3af736f7171121951cd8905449caa9ce4a03bafa7c1d2dd24954d1616c4c1357
Contents?: true
Size: 708 Bytes
Versions: 6
Compression:
Stored size: 708 Bytes
Contents
#ifndef SASS_MEMORY_CONFIG_H #define SASS_MEMORY_CONFIG_H // Define memory alignment requirements #define SASS_MEM_ALIGN sizeof(unsigned int) // Minimal alignment for memory fragments. Must be a multiple // of `SASS_MEM_ALIGN` and should not be too big (maybe 1 or 2) #define SassAllocatorHeadSize sizeof(unsigned int) // The number of bytes we use for our book-keeping before every // memory fragment. Needed to know to which bucket we belongs on // deallocations, or if it should go directly to the `free` call. #define SassAllocatorBookSize sizeof(unsigned int) // Bytes reserve for book-keeping on the arenas // Currently unused and for later optimization #define SassAllocatorArenaHeadSize 0 #endif
Version data entries
6 entries across 5 versions & 4 rubygems