Lines Matching refs:tl
102 struct op *t, *p, *tl = NULL; in pipeline() local
109 if (tl == NULL) in pipeline()
110 t = tl = block(TPIPE, t, p); in pipeline()
112 tl = tl->right = block(TPIPE, tl->right, p); in pipeline()
140 struct op *t = NULL, *p, *tl = NULL; in c_list() local
164 else if (!tl) in c_list()
165 t = tl = block(TLIST, t, p); in c_list()
167 tl = tl->right = block(TLIST, tl->right, p); in c_list()
610 struct op *t, *tl; in caselist() local
621 t = tl = NULL; in caselist()
625 if (tl == NULL) in caselist()
626 t = tl = tc, tl->right = NULL; in caselist()
628 tl->right = tc, tl = tc; in caselist()