Lines Matching refs:ts

7138     TokenSym *ts, **ptable;
7153 ts = tcc_malloc(sizeof(TokenSym) + len);
7154 table_ident[i] = ts;
7155 ts->tok = tok_ident++;
7156 ts->sym_define = NULL;
7157 ts->sym_label = NULL;
7158 ts->sym_struct = NULL;
7159 ts->sym_identifier = NULL;
7160 ts->len = len;
7161 ts->hash_next = NULL;
7162 memcpy(ts->str, str, len);
7163 ts->str[len] = '\0';
7164 *pts = ts;
7165 return ts;
7174 TokenSym *ts, **pts;
7185 ts = *pts;
7186 if (!ts)
7188 if (ts->len == len && !memcmp(ts->str, str, len))
7189 return ts;
7190 pts = &(ts->hash_next);
7431 TokenSym *ts;
7444 ts = table_ident[(v & ~SYM_STRUCT) - TOK_IDENT];
7446 ps = &ts->sym_struct;
7448 ps = &ts->sym_identifier;
7477 TokenSym *ts;
7487 ts = table_ident[(v & ~SYM_STRUCT) - TOK_IDENT];
7489 ps = &ts->sym_struct;
7491 ps = &ts->sym_identifier;
9159 TokenSym *ts;
9300 ts = *pts;
9301 if (!ts)
9303 if (ts->len == len && !memcmp(ts->str, p1, len))
9305 pts = &(ts->hash_next);
9307 ts = tok_alloc_new(pts, p1, len);
9324 ts = tok_alloc(tokcstr.data, tokcstr.size);
9326 tok = ts->tok;
9846 TokenSym *ts;
9920 ts = tok_alloc(cstr.data, strlen(cstr.data));
9921 tok = ts->tok; /* modify current token */
14983 TokenSym *ts;
14985 ts = tok_alloc(sym, strlen(sym));
14986 s = define_find(ts->tok);
17063 TokenSym *ts;
17068 ts = tok_alloc(str, strlen(str));
17069 reg = ts->tok;
17107 TokenSym *ts;
17110 ts = tok_alloc(buf, strlen(buf));
17111 return ts->tok;
17829 TokenSym *ts;
17844 ts = tok_alloc(name, p - name);
17846 if (operands[index].id == ts->tok)
20763 TokenSym *ts __attribute__((unused));
20789 ts = tok_alloc(p, r - p - 1);