Searched refs:MAX_NAME (Results 1 – 2 of 2) sorted by relevance
98 #define MATCH(A,B) (strncmp((A),(B), MAX_NAME) == 0)270 static char ident[MAX_NAME]; /* storage buffer for keywords */ in token()280 while( ch != -1 && ! is_delimiter_Array[ ch & 255 ] && idx < MAX_NAME-1 ) in token()306 static char ident[MAX_NAME]; /* storage buffer for keywords */ in linetoken()312 while (ch != -1 && ch != lineterm && ch != '\r' && idx < MAX_NAME-1 ) in linetoken()
97 #define MAX_NAME 4096 /* max length for identifiers */ macro