Searched refs:yytext (Results 1 – 9 of 9) sorted by relevance
| /linux/scripts/dtc/ |
| A D | dtc-lexer.l | 96 DPRINT("String: %s\n", yytext); 148 DPRINT("Label: %s\n", yytext); 163 yytext); 168 yytext); 204 yytext[yyleng-1] = '\0'; 225 yytext + 1 : yytext); 250 (unsigned)yytext[0]); 251 if (yytext[0] == '[') { 255 if ((yytext[0] == '{') 256 || (yytext[0] == ';')) { [all …]
|
| A D | dtc-lexer.lex.c | 335 extern char *yytext; 339 #define yytext_ptr yytext 603 char *yytext; variable 927 line = yytext; 1051 yytext); 1056 yytext); 1126 yytext + 1 : yytext); 1189 (unsigned)yytext[0]); 1194 if ((yytext[0] == '{') 1199 return yytext[0]; [all …]
|
| /linux/drivers/scsi/aic7xxx/aicasm/ |
| A D | aicasm_scan.l | 118 yptr = yytext; 271 return yytext[0]; 276 yptr = yytext; 293 yptr = yytext; 316 yylval.str = yytext; 321 return yytext[0]; 331 yytext[0]); 352 yptr = yytext; 388 yptr = yytext; 408 ycopy = strdup(yytext); [all …]
|
| /linux/tools/bpf/ |
| A D | bpf_exp.l | 167 yylval.number = strtoul(yytext, NULL, 16); 171 yylval.number = strtol(yytext + 2, NULL, 2); 175 yylval.number = strtol(yytext, NULL, 10); 179 yylval.number = strtol(yytext + 1, NULL, 8); 183 yylval.label = strdup(yytext); 194 printf("unknown character \'%s\'", yytext);
|
| /linux/scripts/genksyms/ |
| A D | lex.l | 78 . return yytext[0]; 110 #define APP _APP(yytext, yyleng) 152 file = strchr(yytext, '\"')+1; 156 cur_line = atoi(yytext+2); 176 int r = is_reserved_word(yytext, yyleng); 212 if (find_symbol(yytext, SYM_TYPEDEF, 1)) 286 if (is_reserved_word(yytext, yyleng) >= 0 287 || find_symbol(yytext, SYM_TYPEDEF, 1))
|
| /linux/scripts/kconfig/ |
| A D | lexer.l | 136 open_quote = yytext[0]; 141 alloc_string(yytext, yyleng); 147 yylval.string = expand_token(yytext, yyleng); 152 . warn_ignored_character(*yytext); 156 alloc_string(yytext, yyleng); 165 "$".* append_expanded_string(yytext);
|
| A D | lexer.lex.c | 354 extern char *yytext; 358 #define yytext_ptr yytext 2223 char *yytext; variable 2535 if ( yytext[yyl] == '\n' ) 2734 open_quote = yytext[0]; 2765 alloc_string(yytext, yyleng); 2782 append_expanded_string(yytext); 2804 append_string(yytext, 1); 2835 if (yytext[i] == '\t') 2878 if ((yytext[yyleng-1] != ' ') && (yytext[yyleng-1] != '\t')) [all …]
|
| /linux/tools/perf/util/ |
| A D | parse-events.l | 325 . { unput(*yytext); BEGIN(INITIAL); }
|
| /linux/Documentation/sound/cards/ |
| A D | multisound.sh | 1040 [0-9A-Fa-f]+H { int n; sscanf(yytext, "%xH", &n); printf("%c", n); }
|
Completed in 22 milliseconds