Lines Matching refs:tem

189       int tem = longest_to_int (exp->elts[pc + 1].longconst);
190 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
390 int tem, tem2, tem3;
411 tem = longest_to_int (exp->elts[pc + 2].longconst);
412 (*pos) += 4 + BYTES_TO_EXP_ELEM (tem + 1);
473 tem = longest_to_int (exp->elts[pc + 1].longconst);
474 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
477 return value_string (&exp->elts[pc + 2].string, tem);
480 tem = longest_to_int (exp->elts[pc + 1].longconst);
481 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
486 return (struct value *) value_nsstring (&exp->elts[pc + 2].string, tem + 1);
489 tem = longest_to_int (exp->elts[pc + 1].longconst);
491 += 3 + BYTES_TO_EXP_ELEM ((tem + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT);
494 return value_bitstring (&exp->elts[pc + 2].string, tem);
527 for (tem = nargs; --nargs >= 0;)
579 for (tem = 0; tem < nargs; tem++)
638 for (tem = 0; tem < nargs; tem++)
641 argvec[tem] = evaluate_subexp_with_coercion (exp, pos, noside);
946 for (tem = 0; tem < nargs; tem++)
947 argvec[tem + 3] = evaluate_subexp_with_coercion (exp, pos, noside);
948 argvec[tem + 3] = 0;
1043 tem = 2;
1081 tem = 2;
1088 tem = 1;
1094 for (; tem <= nargs && tem <= TYPE_NFIELDS (type); tem++)
1098 argvec[tem] = evaluate_subexp (TYPE_FIELD_TYPE (type, tem - 1),
1105 for (; tem <= nargs; tem++)
1108 argvec[tem] = evaluate_subexp_with_coercion (exp, pos, noside);
1112 argvec[tem] = 0;
1268 tem = 1;
1269 for (; tem <= nargs; tem++)
1270 argvec[tem] = evaluate_subexp_with_coercion (exp, pos, noside);
1271 argvec[tem] = 0; /* signal end of arglist */
1308 tem = longest_to_int (exp->elts[pc + 1].longconst);
1309 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
1326 tem = longest_to_int (exp->elts[pc + 1].longconst);
1327 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
1715 tem = value_logical_not (arg1);
1717 (tem ? EVAL_SKIP : noside));
1719 (LONGEST) (!tem && !value_logical_not (arg2)));
1741 tem = value_logical_not (arg1);
1743 (!tem ? EVAL_SKIP : noside));
1745 (LONGEST) (!tem || !value_logical_not (arg2)));
1759 tem = value_equal (arg1, arg2);
1760 return value_from_longest (LA_BOOL_TYPE, (LONGEST) tem);
1774 tem = value_equal (arg1, arg2);
1775 return value_from_longest (LA_BOOL_TYPE, (LONGEST) ! tem);
1789 tem = value_less (arg1, arg2);
1790 return value_from_longest (LA_BOOL_TYPE, (LONGEST) tem);
1804 tem = value_less (arg2, arg1);
1805 return value_from_longest (LA_BOOL_TYPE, (LONGEST) tem);
1819 tem = value_less (arg2, arg1) || value_equal (arg1, arg2);
1820 return value_from_longest (LA_BOOL_TYPE, (LONGEST) tem);
1834 tem = value_less (arg1, arg2) || value_equal (arg1, arg2);
1835 return value_from_longest (LA_BOOL_TYPE, (LONGEST) tem);