Lines Matching refs:left

240 assign(NODE *left, NODE *right)  in assign()  argument
248 switch (left->n_type) { in assign()
250 left = exprreduce(left); in assign()
253 return (nassign(left, right)); in assign()
260 left = left->n_next; in assign()
264 return (lfield(exprint(left->n_left), right)); in assign()
269 left->n_name); in assign()
282 node(int type, NODE *left, NODE *right) in node() argument
287 np->n_left = left; in node()
1242 register NODE *left, *right; in arithmetic() local
1248 left = exprreduce(np->n_left); in arithmetic()
1249 if (isreal(left->n_flags) || in arithmetic()
1250 (isstring(left->n_flags) && (type_of(left)&FVREAL))) { in arithmetic()
1252 r1 = exprreal(left); in arithmetic()
1255 i1 = exprint(left); in arithmetic()
1339 register NODE *left, *right; in comparison() local
1345 left = np->n_left; in comparison()
1346 if (isleaf(left->n_flags)) { in comparison()
1347 if (left->n_type == PARM) in comparison()
1348 left = left->n_next; in comparison()
1350 left = exprreduce(left); in comparison()
1351 tl = left->n_flags; in comparison()
1371 cmp = wcscoll((wchar_t *)exprstring(left), in comparison()
1374 r1 = exprreal(left); in comparison()
1383 i1 = exprint(left); in comparison()
1395 cmp = wcscoll((wchar_t *)exprstring(left), in comparison()
1399 tl = type_of(left); in comparison()
1405 r1 = exprreal(left); in comparison()
1414 i1 = exprint(left); in comparison()
1941 register NODE *left; in s_forin() local
1951 left = np->n_left; in s_forin()
1953 if (left->n_type != IN) in s_forin()
1955 if ((var = left->n_left)->n_type == PARM) in s_forin()
1957 np = left->n_right; in s_forin()
2014 if ((left = symwalk(&nbuck, &np)) == NNULL) in s_forin()
2016 index = left->n_name; in s_forin()