Lines Matching +full:memory +full:- +full:to +full:- +full:memory
2 # SPDX-License-Identifier: Apache-2.0
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,
21 12 -> 4KB, 20 -> 1MB).
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()).
79 In order to produce compressed data compatible with lz4 command line
80 utility, it's necessary to use the official interoperable frame format.
90 bool "in memory stack"
92 Allocate memory from stack (fastest).
95 bool "in memory heap"
98 Allocate memory from heap (requires malloc()).