Home
last modified time | relevance | path

Searched refs:code_to_substr (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_lzw.h106 code_to_substr; in LzwDecode() local
109 auto copy = [&code_to_substr, &dict_len1](LzwCodeType code, ItOut out) { in LzwDecode()
115 const auto& s = code_to_substr[code - dict_len1.size()]; in LzwDecode()
122 auto code_to_len = [&code_to_substr, &dict_len1](LzwCodeType code) -> uptr { in LzwDecode()
125 const auto& s = code_to_substr[code - dict_len1.size()]; in LzwDecode()
136 if (code == dict_len1.size() + code_to_substr.size()) { in LzwDecode()
151 code_to_substr.push_back({start - len, start + 1}); in LzwDecode()