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

  /netvirt/usr/src/uts/common/fs/zfs/
lzjb.c 58 uint16_t lempel[LEMPEL_SIZE]; /* uninitialized; see above */ local
78 hp = &lempel[((src[0] + 13) ^ (src[1] - 13) ^ src[2]) &
  /netvirt/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]) &

Completed in 420 milliseconds