Home
last modified time | relevance | path

Searched refs:vec1 (Results 1 – 8 of 8) sorted by relevance

/openbsd-src/gnu/gcc/gcc/
H A Dlambda.h236 lambda_vector_mult_const (lambda_vector vec1, lambda_vector vec2, in lambda_vector_mult_const() argument
245 vec2[i] = const1 * vec1[i]; in lambda_vector_mult_const()
251 lambda_vector_negate (lambda_vector vec1, lambda_vector vec2, in lambda_vector_negate() argument
254 lambda_vector_mult_const (vec1, vec2, size, -1); in lambda_vector_negate()
260 lambda_vector_add (lambda_vector vec1, lambda_vector vec2, in lambda_vector_add() argument
265 vec3[i] = vec1[i] + vec2[i]; in lambda_vector_add()
271 lambda_vector_add_mc (lambda_vector vec1, int const1, in lambda_vector_add_mc() argument
277 vec3[i] = const1 * vec1[i] + const2 * vec2[i]; in lambda_vector_add_mc()
283 lambda_vector_copy (lambda_vector vec1, lambda_vector vec2, in lambda_vector_copy() argument
286 memcpy (vec2, vec1, size * sizeof (*vec1)); in lambda_vector_copy()
[all …]
/openbsd-src/gnu/gcc/gcc/cp/
H A Dtree.c1550 tree vec1, vec2; in cp_tree_equal() local
1554 vec1 = TREE_OPERAND (t1, 1); in cp_tree_equal()
1557 if (!vec1 || !vec2) in cp_tree_equal()
1558 return !vec1 && !vec2; in cp_tree_equal()
1560 if (TREE_VEC_LENGTH (vec1) != TREE_VEC_LENGTH (vec2)) in cp_tree_equal()
1563 for (ix = TREE_VEC_LENGTH (vec1); ix--;) in cp_tree_equal()
1564 if (!cp_tree_equal (TREE_VEC_ELT (vec1, ix), in cp_tree_equal()
/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/
H A DRangeMap.h147 static RangeVector GetOverlaps(const RangeVector &vec1, in GetOverlaps() argument
150 assert(vec1.IsSorted() && vec2.IsSorted()); in GetOverlaps()
153 auto pos1 = vec1.begin(); in GetOverlaps()
154 auto end1 = vec1.end(); in GetOverlaps()
/openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/
H A DSystemZPatterns.td174 : Pat<(tr.vt (operator (tr.vt tr.op:$vec1), (tr.vt tr.op:$vec2))),
175 (insn tr.op:$vec1, tr.op:$vec2, function)>;
/openbsd-src/gnu/usr.bin/gcc/gcc/doc/
H A Drtl.texi2036 @item (vec_merge:@var{m} @var{vec1} @var{vec2} @var{items})
2038 of mode @var{m}; its elements are selected from either @var{vec1} or
2042 a set bit indicates it is taken from @var{vec1}.
2045 @item (vec_select:@var{m} @var{vec1} @var{selection})
2046 This describes an operation that selects parts of a vector. @var{vec1} is
2052 @item (vec_concat:@var{m} @var{vec1} @var{vec2})
2054 vectors @var{vec1} and @var{vec2}; its length is the sum of the lengths of
/openbsd-src/gnu/gcc/gcc/doc/
H A Drtl.texi2265 @item (vec_merge:@var{m} @var{vec1} @var{vec2} @var{items})
2267 of mode @var{m}; its elements are selected from either @var{vec1} or
2271 a set bit indicates it is taken from @var{vec1}.
2274 @item (vec_select:@var{m} @var{vec1} @var{selection})
2275 This describes an operation that selects parts of a vector. @var{vec1} is
2281 @item (vec_concat:@var{m} @var{vec1} @var{vec2})
2283 vectors @var{vec1} and @var{vec2}; its length is the sum of the lengths of
/openbsd-src/gnu/llvm/clang/docs/
H A DLanguageExtensions.rst2566 __builtin_shufflevector(vec1, vec2, index1, index2, ...)
2597 ``vec1`` is a 4-element vector, index 5 would refer to the second element of
2602 type as ``vec1``/``vec2`` but that has an element count equal to the number of
/openbsd-src/gnu/llvm/llvm/docs/
H A DLangRef.rst17690 …declare <2 x double> @llvm.experimental.vector.splice.v2f64(<2 x double> %vec1, <2 x double> %vec2…
17691 …declare <vscale x 4 x i32> @llvm.experimental.vector.splice.nxv4i32(<vscale x 4 x i32> %vec1, <vsc…
17702 ``concat(%vec1, %vec2)`` starting at index ``imm``, whereas for a negative
20777 …declare <2 x double> @llvm.experimental.vp.splice.v2f64(<2 x double> %vec1, <2 x double> %vec2, i3…
20778 …declare <vscale x 4 x i32> @llvm.experimental.vp.splice.nxv4i32(<vscale x 4 x i32> %vec1, <vscale …
20789 The result and the first two arguments ``vec1`` and ``vec2`` are vectors with
20794 ``vec1`` and ``vec2`` respectively. ``imm``, ``evl1`` and ``evl2`` should
20802 Effectively, this intrinsic concatenates ``vec1[0..evl1-1]`` and
20809 (``[evl1 + imm..evl1 -1]`` for negative ``imm``) of ``vec1`` followed by the