Lines Matching refs:str
168 * Insert string str in the dictionary and set match_head to the previous head
174 * input characters and the first MIN_MATCH bytes of str are valid
178 #define INSERT_STRING(s, str, match_head) \
179 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
181 s->head[s->ins_h] = (Pos)(str))
183 #define INSERT_STRING(s, str, match_head) \
184 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
185 match_head = s->prev[(str) & s->w_mask] = s->head[s->ins_h], \
186 s->head[s->ins_h] = (Pos)(str))
541 Bytef *str;
565 str = s->gzhead->name;
566 if (str != Z_NULL)
569 } while (*str++);
570 str = s->gzhead->comment;
571 if (str != Z_NULL)
574 } while (*str++);