Lines Matching refs:n
173 #define YY_LESS_LINENO(n)
175 /* Return all but the first "n" matched characters back to the input stream. */
176 #define yyless(n) \
180 int yyless_macro_arg = (n); \
344 #define yywrap(n) 1
601 #define BEGIN_DEFAULT() DPRINT("<V1>\n"); \
713 size_t n; \
714 for ( n = 0; n < max_size && \
715 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
716 buf[n] = (char) c; \
717 if ( c == '\n' ) \
718 buf[n++] = (char) c; \
721 result = n; \
903 DPRINT("String: %s\n", yytext);
913 DPRINT("Keyword: /dts-v1/\n");
923 DPRINT("Keyword: /memreserve/\n");
932 DPRINT("Label: %s\n", yytext);
943 DPRINT("Literal: '%s'\n", yylval.literal);
951 DPRINT("Ref: %s\n", yytext+1);
961 DPRINT("Ref: %s\n", yytext+2);
971 DPRINT("Byte: %02x\n", (int)yylval.byte);
979 DPRINT("/BYTESTRING\n");
988 DPRINT("PropNodeName: %s\n", yytext);
998 DPRINT("Binary Include\n");
1024 DPRINT("Char: %c (\\x%02x)\n", yytext[0],
1027 DPRINT("<BYTESTRING>\n");
1032 DPRINT("<PROPNODENAME>\n");
1768 yy_size_t n;
1772 n = _yybytes_len + 2;
1773 buf = (char *) yyalloc(n );
1782 b = yy_scan_buffer(buf,n );
1800 (void) fprintf( stderr, "%s\n", msg );
1807 #define yyless(n) \
1811 int yyless_macro_arg = (n); \
1956 static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
1959 for ( i = 0; i < n; ++i )
1967 register int n;
1968 for ( n = 0; s[n]; ++n )
1971 return n;