Home
last modified time | relevance | path

Searched refs:in_n_elts (Results 1 – 2 of 2) sorted by relevance

/openbsd/gnu/gcc/gcc/
H A Dsimplify-rtx.c901 unsigned in_n_elts = (GET_MODE_SIZE (inmode) / in_elt_size); in simplify_const_unary_operation() local
903 gcc_assert (in_n_elts < n_elts); in simplify_const_unary_operation()
904 gcc_assert ((n_elts % in_n_elts) == 0); in simplify_const_unary_operation()
906 RTVEC_ELT (v, i) = CONST_VECTOR_ELT (op, i % in_n_elts); in simplify_const_unary_operation()
2639 unsigned in_n_elts = 1; in simplify_binary_operation_1() local
2642 in_n_elts = (GET_MODE_SIZE (op0_mode) / elt_size); in simplify_binary_operation_1()
2645 if (i < in_n_elts) in simplify_binary_operation_1()
2658 i - in_n_elts); in simplify_binary_operation_1()
/openbsd/gnu/usr.bin/gcc/gcc/
H A Dsimplify-rtx.c411 unsigned in_n_elts = (GET_MODE_SIZE (inmode) / in_elt_size); local
413 if (in_n_elts >= n_elts || n_elts % in_n_elts)
416 RTVEC_ELT (v, i) = CONST_VECTOR_ELT (trueop, i % in_n_elts);