Lines Matching +defs:comments +defs:tmp
59 unsigned int comments;
71 char *tmp;
73 tmp = isc_mem_get(lex->mctx, lex->max_token * 2 + 1);
74 memmove(tmp, lex->data, lex->max_token + 1);
75 *currp = tmp + (*currp - lex->data);
77 *prevp = tmp + (*prevp - lex->data);
80 lex->data = tmp;
103 lex->comments = 0;
147 return lex->comments;
151 isc_lex_setcomments(isc_lex_t *lex, unsigned int comments) {
158 lex->comments = comments;
478 ((lex->comments & ISC_LEXCOMMENT_DNSMASTERFILE) !=
486 (lex->comments &
494 } else if (c == '#' && ((lex->comments &
761 if (c == '*' && (lex->comments & ISC_LEXCOMMENT_C) != 0)
765 } else if (c == '/' && (lex->comments &
792 * C-style comments become a single space.