Lines Matching refs:tl
75 struct op *t, *p, *tl = NULL; in pipeline() local
82 if (tl == NULL) in pipeline()
83 t = tl = block(TPIPE, t, p, NULL); in pipeline()
85 tl = tl->right = block(TPIPE, tl->right, p, NULL); in pipeline()
113 struct op *t = NULL, *p, *tl = NULL; in c_list() local
136 else if (!tl) in c_list()
137 t = tl = block(TLIST, t, p, NULL); in c_list()
139 tl = tl->right = block(TLIST, tl->right, p, NULL); in c_list()
479 struct op *t, *tl; in caselist() local
490 t = tl = NULL; in caselist()
493 if (tl == NULL) in caselist()
494 t = tl = tc, tl->right = NULL; in caselist()
496 tl->right = tc, tl = tc; in caselist()