Searched refs:LzwCodeType (Results 1 – 1 of 1) sorted by relevance
20 using LzwCodeType = u32; variable25 detail::DenseMapPair<LzwCodeType /* Prefix */, T /* Next input */>; in LzwEncode()28 static constexpr LzwCodeType kNoPrefix = in LzwEncode()32 DenseMap<Substring, LzwCodeType> prefix_to_code; in LzwEncode()61 LzwCodeType match = prefix_to_code.find({kNoPrefix, *begin})->second; in LzwEncode()109 auto copy = [&code_to_substr, &dict_len1](LzwCodeType code, ItOut out) { in LzwDecode()122 auto code_to_len = [&code_to_substr, &dict_len1](LzwCodeType code) -> uptr { in LzwDecode()130 LzwCodeType prev_code = *begin; in LzwDecode()134 LzwCodeType code = *it; in LzwDecode()