Searched refs:TokenSym (Results 1 – 1 of 1) sorted by relevance
2129 typedef struct TokenSym { struct2130 struct TokenSym *hash_next; argument2138 } TokenSym; argument2361 static TokenSym **table_ident;2362 static TokenSym *hash_ident[TOK_HASH_SIZE];7134 static TokenSym *tok_alloc_new(TokenSym **pts, const char *str, int len) in tok_alloc_new()7136 TokenSym *ts, **ptable; in tok_alloc_new()7145 ptable = tcc_realloc(table_ident, (i + TOK_ALLOC_INCR) * sizeof(TokenSym *)); in tok_alloc_new()7151 ts = tcc_malloc(sizeof(TokenSym) + len); in tok_alloc_new()7170 static TokenSym *tok_alloc(const char *str, int len) in tok_alloc()[all …]