HomeSort by relevance Sort by last modified time
    Searched refs:lempel (Results 1 - 2 of 2) sorted by null

  /onnv/onnv-gate/usr/src/uts/common/os/
compress.c 35 * LZJB in the classic LZ* spirit. All LZ* (Lempel-Ziv) algorithms are
40 * in a simple hash table (the "Lempel history") that maps three-character
103 * (3) LZJB records only the low-order 16 bits of pointers in the Lempel
116 * general characteristic of most Lempel-Ziv derivatives because there's
117 * no need to initialize the Lempel history; not doing so saves time.
137 uint16_t lempel[LEMPEL_SIZE]; /* uninitialized; see above */ local
155 hp = &lempel[((src[0] + 13) ^ (src[1] - 13) ^ src[2]) &
  /onnv/onnv-gate/usr/src/uts/common/fs/zfs/
lzjb.c 33 * 3. We initialize the lempel to ensure deterministic results,
58 uint16_t lempel[LEMPEL_SIZE] = { 0 }; local
75 hp = &lempel[hash & (LEMPEL_SIZE - 1)];

Completed in 120 milliseconds