Lines Matching refs:buffer
181 static char buffer[12]; /* __DATE__: 3 + ' ' + 2 + ' ' + 4 + '\0' */
185 strftime(buffer, 12, "%b %e %Y", localtime(&t));
186 replace_with_string(token, buffer);
191 static char buffer[9]; /* __TIME__: 2 + ':' + 2 + ':' + 2 + '\0' */
195 strftime(buffer, 9, "%T", localtime(&t));
196 replace_with_string(token, buffer);
411 static char buffer[MAX_STRING];
412 char *ptr = buffer;
421 if (ptr + whitespace + len >= buffer + sizeof(buffer)) {
434 return buffer;
545 static char buffer[512];
546 enum token_type res = combine(left, right, buffer);
551 left->ident = built_in_ident(buffer);
557 left->number = xstrdup(buffer);
561 if (buffer[2] && buffer[3])
564 if (!memcmp(buffer, combinations[n-SPECIAL_BASE], 3)) {
790 static char buffer[256];
791 char *ptr = buffer;
806 return buffer;