Lines Matching refs:current_code
69 int current_code, parent_code, tmp_code; in decode_string() local
72 current_code = string_code; in decode_string()
76 switch (current_code) { in decode_string()
81 if (current_code < FIRST_CODE) { in decode_string()
82 *first_char_code = current_code; in decode_string()
83 buff[0] = current_code; in decode_string()
87 offset = dict[current_code].match_len - 1; in decode_string()
88 tmp_code = dict[current_code].char_code; in decode_string()
96 current_code = dict[current_code].parent_code; in decode_string()
97 if ((current_code < 0) || (current_code > (DIC_INDEX_MAX - 1))) { in decode_string()
101 if (current_code > FIRST_CODE) { in decode_string()
102 parent_code = dict[current_code].parent_code; in decode_string()
103 offset = (dict[current_code].match_len) - 1; in decode_string()