Lines Matching refs:te
147 struct da_node *te;
243 for (te = tl->DAs; te; te = te->next)
244 add2scopes_list(te, tl);
377 static void add2scopes_list(struct da_node *te, struct target_list *tl) {
391 if (slp_onlist(s, te->scopes)) {
399 st->da = te;
418 struct da_node *te, *p;
420 if (!(te = malloc(sizeof (*te)))) {
424 te->scopes = scopes;
425 te->coverage = c;
426 te->proximity = proximity;
427 (void) memcpy(&(te->sin), sin, sizeof (te->sin));
428 te->used = SLP_FALSE;
429 te->failed = SLP_FALSE;
430 te->prev = NULL;
431 te->next = NULL;
435 *tel = te;
449 te->next = p;
450 te->prev = p->prev;
452 p->prev->next = te;
455 (*tel) = te;
456 p->prev = te;
464 p->next = te;
465 te->prev = p;