Lines Matching full:memory
15 int "Lz4 memory usage"
19 Increasing memory usage improves compression ratio, but usually at the
20 cost of speed, due to cache locality. Memory usage 2^value (10 -> 1KB,
24 bool "Disable dynamic memory allocation"
26 Disable lz4 functions that use dynamic memory allocation functions.
29 prompt "How stateless compression functions allocate memory for their hash table"
33 bool "in memory stack"
35 Allocate memory from stack (fastest).
38 bool "in memory heap"
41 Allocate memory from heap (requires malloc()).
53 prompt "How stateless HC compression functions allocate memory for their workspace"
57 bool "in memory stack"
59 Allocate memory from stack (fastest).
62 bool "in memory heap"
65 Allocate memory from heap (requires malloc()).
90 bool "in memory stack"
92 Allocate memory from stack (fastest).
95 bool "in memory heap"
98 Allocate memory from heap (requires malloc()).