Lines Matching refs:TOK_IDENT
2636 #define TOK_IDENT 256 macro
2698 TOK_LAST = TOK_IDENT - 1,
7143 i = tok_ident - TOK_IDENT; in tok_alloc_new()
7351 if (v < TOK_IDENT) { in get_tok_str()
7367 return table_ident[v - TOK_IDENT]->str; in get_tok_str()
7410 v -= TOK_IDENT; in struct_find()
7411 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT)) in struct_find()
7419 v -= TOK_IDENT; in sym_find()
7420 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT)) in sym_find()
7442 ts = table_ident[(v & ~SYM_STRUCT) - TOK_IDENT]; in sym_push()
7460 ps = &table_ident[v - TOK_IDENT]->sym_identifier; in global_identifier_push()
7485 ts = table_ident[(v & ~SYM_STRUCT) - TOK_IDENT]; in sym_pop()
8159 table_ident[v - TOK_IDENT]->sym_define = s; in define_push()
8167 if (v >= TOK_IDENT && v < tok_ident) in define_undef()
8168 table_ident[v - TOK_IDENT]->sym_define = NULL; in define_undef()
8174 v -= TOK_IDENT; in define_find()
8175 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT)) in define_find()
8193 if (v >= TOK_IDENT && v < tok_ident) in free_defines()
8194 table_ident[v - TOK_IDENT]->sym_define = NULL; in free_defines()
8204 v -= TOK_IDENT; in label_find()
8205 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT)) in label_find()
8215 ps = &table_ident[v - TOK_IDENT]->sym_label; in label_push()
8247 table_ident[s->v - TOK_IDENT]->sym_label = s->prev_tok; in label_pop()
8272 } else if (tok >= TOK_IDENT) { in expr_preprocess()
8314 if (v < TOK_IDENT) in parse_define()
8338 if (varg < TOK_IDENT) in parse_define()
8635 if (tok < TOK_IDENT) in preprocess()
9634 } else if (t >= TOK_IDENT) { in macro_arg_subst()
9894 if ((tok >= TOK_IDENT || tok == TOK_PPNUM) && in macro_twosharps()
9895 (t >= TOK_IDENT || t == TOK_PPNUM)) { in macro_twosharps()
10037 if (tok >= TOK_IDENT && in next()
12031 if (tok < TOK_IDENT) in parse_attribute()
12136 if (v < TOK_IDENT) in struct_decl()
12629 if (tok >= TOK_IDENT && (td & TYPE_DIRECT)) { in type_decl()
17183 if (tok >= TOK_IDENT) { in asm_expr_unary()
17385 table_ident[s->v - TOK_IDENT]->sym_label = NULL; in asm_free_labels()
17730 } else if (tok >= TOK_IDENT) { in tcc_assemble_internal()
17919 if (tok < TOK_IDENT) in parse_asm_operands()
20778 tok_ident = TOK_IDENT; in tcc_new()
20876 n = tok_ident - TOK_IDENT; in tcc_delete()
21756 tok_ident - TOK_IDENT, total_lines, total_bytes, in main2()