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

Version Path
trusty-cms-7.0.9.1 vendor/bundle/ruby/3.1.0/gems/sassc-2.4.0/ext/libsass/src/memory/config.hpp
trusty-cms-7.0.9.1 vendor/bundle/ruby/3.3.0/gems/sassc-2.4.0/ext/libsass/src/memory/config.hpp
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/sassc-2.4.0/ext/libsass/src/memory/config.hpp
date_n_time_picker_activeadmin-0.1.2 vendor/bundle/ruby/2.6.0/gems/sassc-2.4.0/ext/libsass/src/memory/config.hpp
date_n_time_picker_activeadmin-0.1.1 vendor/bundle/ruby/2.6.0/gems/sassc-2.4.0/ext/libsass/src/memory/config.hpp
sassc-2.4.0 ext/libsass/src/memory/config.hpp