Home
last modified time | relevance | path

Searched refs:v2 (Results 1 – 25 of 1743) sorted by relevance

12345678910>>...70

/freebsd-13-stable/contrib/googletest/googletest/include/gtest/
HDgtest_pred_impl.h120 const T2& v2) { in AssertPred2Helper() argument
121 if (pred(v1, v2)) return AssertionSuccess(); in AssertPred2Helper()
128 << e2 << " evaluates to " << ::testing::PrintToString(v2); in AssertPred2Helper()
133 #define GTEST_PRED_FORMAT2_(pred_format, v1, v2, on_failure) \ argument
134 GTEST_ASSERT_(pred_format(#v1, #v2, v1, v2), on_failure)
138 #define GTEST_PRED2_(pred, v1, v2, on_failure) \ argument
139 GTEST_ASSERT_(::testing::AssertPred2Helper(#pred, #v1, #v2, pred, v1, v2), \
143 #define EXPECT_PRED_FORMAT2(pred_format, v1, v2) \ argument
144 GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_NONFATAL_FAILURE_)
145 #define EXPECT_PRED2(pred, v1, v2) \ argument
[all …]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Headers/
HDvelintrin_approx.h14 __vr v2, v3, v4, v5; in _vel_approx_vfdivs_vvvl() local
19 v2 = _vel_vfmuls_vvvl(v0, v3, l); in _vel_approx_vfdivs_vvvl()
20 v4 = _vel_vfnmsbs_vvvvl(v0, v2, v1, l); in _vel_approx_vfdivs_vvvl()
21 v2 = _vel_vfmads_vvvvl(v2, v5, v4, l); in _vel_approx_vfdivs_vvvl()
22 v0 = _vel_vfnmsbs_vvvvl(v0, v2, v1, l); in _vel_approx_vfdivs_vvvl()
23 v0 = _vel_vfmads_vvvvl(v2, v3, v0, l); in _vel_approx_vfdivs_vvvl()
29 __vr v2, v3, v4, v5; in _vel_approx_pvfdiv_vvvl() local
34 v2 = _vel_pvfmul_vvvl(v0, v3, l); in _vel_approx_pvfdiv_vvvl()
35 v4 = _vel_pvfnmsb_vvvvl(v0, v2, v1, l); in _vel_approx_pvfdiv_vvvl()
36 v2 = _vel_pvfmad_vvvvl(v2, v5, v4, l); in _vel_approx_pvfdiv_vvvl()
[all …]
/freebsd-13-stable/bin/sh/tests/expansion/
HDarith6.03 v2=D
7 while [ ${#v2} -lt 1250 ]; do
8 eval $v2=$((3+${#v2})) $v3=$((4-${#v2}))
9 eval f $(($v2+ $v1 +$v3))
11 echo bad: $v4 -ne 9 at ${#v2}
13 v2=x$v2
HDtrim4.03 v2=
7 while [ ${#v2} -lt 2000 ]; do
8 v4="${v2} ${v1%/*} $v3"
9 if [ ${#v4} -ne $((${#v2} + ${#v3} + 8)) ]; then
10 echo bad: ${#v4} -ne $((${#v2} + ${#v3} + 8))
12 v2=x$v2
/freebsd-13-stable/contrib/less/
HDlesskey.h70 #define SNPRINTF2(str, size, fmt, v1, v2) snprintf((str), (size), (fmt), (v1), (v2)) argument
71 #define SNPRINTF3(str, size, fmt, v1, v2, v3) snprintf((str), (size), (fmt), (v1), (v2), (v3)) argument
72 #define SNPRINTF4(str, size, fmt, v1, v2, v3, v4) snprintf((str), (size), (fmt), (v1), (v2), (v3), … argument
76 #define SNPRINTF2(str, size, fmt, v1, v2) sprintf((str), (fmt), (v1), (v2)) argument
77 #define SNPRINTF3(str, size, fmt, v1, v2, v3) sprintf((str), (fmt), (v1), (v2), (v3)) argument
78 #define SNPRINTF4(str, size, fmt, v1, v2, v3, v4) sprintf((str), (fmt), (v1), (v2), (v3), (v4)) argument
/freebsd-13-stable/tools/regression/include/stdatomic/
HDlogic.c58 T v2 = rndnum(); \
59 assert(atomic_##name(a, v2) == v1); \
65 T v2 = rndnum(); \
67 if (atomic_compare_exchange_##name(a, &v2, v3)) \
68 assert(v1 == v2); \
70 assert(atomic_compare_exchange_##name(a, &v2, v3)); \
86 DO_FETCH_TEST(T, a, exchange, v2); \
87 DO_FETCH_TEST(T, a, fetch_add, v1 + v2); \
88 DO_FETCH_TEST(T, a, fetch_and, v1 & v2); \
89 DO_FETCH_TEST(T, a, fetch_or, v1 | v2); \
[all …]
/freebsd-13-stable/contrib/libarchive/test_utils/
HDtest_common.h170 #define assertEqualInt(v1,v2) \ argument
171 assertion_equal_int(__FILE__, __LINE__, (v1), #v1, (v2), #v2, NULL)
172 #define assertEqualAddress(v1,v2) \ argument
173 assertion_equal_address(__FILE__, __LINE__, (v1), #v1, (v2), #v2, NULL)
175 #define assertEqualString(v1,v2) \ argument
176 assertion_equal_string(__FILE__, __LINE__, (v1), #v1, (v2), #v2, NULL, 0)
177 #define assertEqualUTF8String(v1,v2) \ argument
178 assertion_equal_string(__FILE__, __LINE__, (v1), #v1, (v2), #v2, NULL, 1)
180 #define assertEqualWString(v1,v2) \ argument
181 assertion_equal_wstring(__FILE__, __LINE__, (v1), #v1, (v2), #v2, NULL)
[all …]
/freebsd-13-stable/contrib/unbound/util/
HDsiphash.c62 v2 += v3; \
64 v3 ^= v2; \
68 v2 += v1; \
70 v1 ^= v2; \
71 v2 = ROTL(v2, 32); \
81 printf("(%3d) v2 %08x %08x\n", (int)inlen, (uint32_t)(v2 >> 32), \
82 (uint32_t)v2); \
95 uint64_t v2 = 0x6c7967656e657261ULL; in siphash() local
109 v2 ^= k0; in siphash()
174 v2 ^= 0xee; in siphash()
[all …]
/freebsd-13-stable/sys/crypto/openssl/aarch64/
HDghashv8-armx.S31 pmull2 v2.1q,v20.2d,v20.2d
34 ext v17.16b,v0.16b,v2.16b,#8 //Karatsuba post-processing
35 eor v18.16b,v0.16b,v2.16b
40 ins v2.d[0],v1.d[1]
46 eor v18.16b,v18.16b,v2.16b
56 pmull2 v2.1q,v20.2d, v22.2d
61 ext v16.16b,v0.16b,v2.16b,#8 //Karatsuba post-processing
63 eor v18.16b,v0.16b,v2.16b
72 ins v2.d[0],v1.d[1]
83 eor v18.16b,v18.16b,v2.16b
[all …]
HDvpaes-armv8.S138 tbl v2.16b, {v21.16b}, v0.16b // vpshufb %xmm0, %xmm3, %xmm2
140 eor v0.16b, v0.16b, v2.16b // vpxor %xmm2, %xmm0, %xmm0
147 tbl v4.16b, {v25.16b}, v2.16b // vpshufb %xmm2, %xmm13, %xmm4 # 4 = sb1u
151 tbl v5.16b, {v27.16b}, v2.16b // vpshufb %xmm2, %xmm15, %xmm5 # 4 = sb2u
153 tbl v2.16b, {v26.16b}, v3.16b // vpshufb %xmm3, %xmm14, %xmm2 # 2 = sb2t
156 eor v2.16b, v2.16b, v5.16b // vpxor %xmm5, %xmm2, %xmm2 # 2 = 2A
158 eor v3.16b, v3.16b, v2.16b // vpxor %xmm2, %xmm3, %xmm3 # 0 = 2A+B
175 tbl v2.16b, {v18.16b}, v3.16b // vpshufb %xmm3, %xmm10, %xmm2 # 2 = 1/iak
177 eor v2.16b, v2.16b, v1.16b // vpxor %xmm1, %xmm2, %xmm2 # 2 = io
186 tbl v4.16b, {v22.16b}, v2.16b // vpshufb %xmm2, %xmm4, %xmm4 # 4 = sbou
[all …]
HDaesv8-armx.S38 ld1 {v1.4s,v2.4s},[x3],#32
46 tbl v6.16b,{v3.16b},v2.16b
64 tbl v6.16b,{v3.16b},v2.16b
78 tbl v6.16b,{v3.16b},v2.16b
101 sub v2.16b,v2.16b,v6.16b // adjust the mask
104 tbl v6.16b,{v4.16b},v2.16b
144 tbl v6.16b,{v4.16b},v2.16b
231 ld1 {v2.16b},[x0]
236 aese v2.16b,v0.16b
237 aesmc v2.16b,v2.16b
[all …]
/freebsd-13-stable/crypto/openssl/crypto/siphash/
HDsiphash.c61 v2 += v3; \
63 v3 ^= v2; \
67 v2 += v1; \
69 v1 ^= v2; \
70 v2 = ROTL(v2, 32); \
135 ctx->v2 = 0x6c7967656e657261ULL ^ k0; in SipHash_Init()
152 uint64_t v2 = ctx->v2; in SipHash_Update() local
198 ctx->v2 = v2; in SipHash_Update()
209 uint64_t v2 = ctx->v2; in SipHash_Final() local
245 v2 ^= 0xee; in SipHash_Final()
[all …]
/freebsd-13-stable/sys/contrib/device-tree/src/arm64/exynos/
HDexynos5433-bus.dtsi14 operating-points-v2 = <&bus_g2d_400_opp_table>;
22 operating-points-v2 = <&bus_g2d_266_opp_table>;
30 operating-points-v2 = <&bus_gscl_opp_table>;
38 operating-points-v2 = <&bus_hevc_opp_table>;
46 operating-points-v2 = <&bus_g2d_400_opp_table>;
54 operating-points-v2 = <&bus_g2d_400_opp_table>;
62 operating-points-v2 = <&bus_g2d_400_opp_table>;
70 operating-points-v2 = <&bus_hevc_opp_table>;
78 operating-points-v2 = <&bus_hevc_opp_table>;
86 operating-points-v2 = <&bus_noc2_opp_table>;
[all …]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
HDSipHash.cpp40 v2 += v3; \
42 v3 ^= v2; \
46 v2 += v1; \
48 v1 ^= v2; \
49 v2 = ROTL(v2, 32); \
72 uint64_t v2 = UINT64_C(0x6c7967656e657261); in siphash() local
82 v2 ^= k0; in siphash()
133 v2 ^= 0xee; in siphash()
135 v2 ^= 0xff; in siphash()
140 b = v0 ^ v1 ^ v2 ^ v3; in siphash()
[all …]
/freebsd-13-stable/sys/contrib/device-tree/src/arm64/rockchip/
HDrk3399-opp.dtsi8 compatible = "operating-points-v2";
39 compatible = "operating-points-v2";
78 compatible = "operating-points-v2";
108 operating-points-v2 = <&cluster0_opp>;
112 operating-points-v2 = <&cluster0_opp>;
116 operating-points-v2 = <&cluster0_opp>;
120 operating-points-v2 = <&cluster0_opp>;
124 operating-points-v2 = <&cluster1_opp>;
128 operating-points-v2 = <&cluster1_opp>;
132 operating-points-v2 = <&gpu_opp_table>;
HDrk3399-op1-opp.dtsi8 compatible = "operating-points-v2";
43 compatible = "operating-points-v2";
86 compatible = "operating-points-v2";
116 operating-points-v2 = <&cluster0_opp>;
120 operating-points-v2 = <&cluster0_opp>;
124 operating-points-v2 = <&cluster0_opp>;
128 operating-points-v2 = <&cluster0_opp>;
132 operating-points-v2 = <&cluster1_opp>;
136 operating-points-v2 = <&cluster1_opp>;
140 operating-points-v2 = <&gpu_opp_table>;
/freebsd-13-stable/contrib/xz/src/liblzma/check/
HDcrc_x86_clmul.h132 __m128i v2, v3; in crc_simd_body() local
170 MASK_H(data0, mask_end, v2); in crc_simd_body()
172 *v0 = _mm_xor_si128(*v0, v2); in crc_simd_body()
199 MASK_H(*v0, mask_end, v2); in crc_simd_body()
202 *v1 = _mm_or_si128(v2, v3); in crc_simd_body()
267 __m128i v0, v1, v2; in crc32_arch_optimized() local
274 v2 = _mm_shuffle_epi32(v1, 0xe7); // 0xx0 in crc32_arch_optimized()
277 v0 = _mm_xor_si128(v0, v2); // [1] [2] in crc32_arch_optimized()
278 v2 = _mm_clmulepi64_si128(v0, vfold4, 0x10); in crc32_arch_optimized()
279 v2 = _mm_clmulepi64_si128(v2, vfold4, 0x00); in crc32_arch_optimized()
[all …]
/freebsd-13-stable/sys/sys/
HDktr.h141 #define KTR_EVENT3(m, egroup, ident, etype, edat, a0, v0, a1, v1, a2, v2)\ argument
143 ident, edat, (v0), (v1), (v2))
145 a0, v0, a1, v1, a2, v2, a3, v3) \ argument
147 ident, edat, (v0), (v1), (v2), (v3))
158 #define KTR_STATE3(m, egroup, ident, state, a0, v0, a1, v1, a2, v2) \ argument
160 state, a0, (v0), a1, (v1), a2, (v2))
161 #define KTR_STATE4(m, egroup, ident, state, a0, v0, a1, v1, a2, v2, a3, v3)\ argument
163 state, a0, (v0), a1, (v1), a2, (v2), a3, (v3))
175 #define KTR_COUNTER3(m, egroup, ident, counter, a0, v0, a1, v1, a2, v2) \ argument
177 counter, a0, (v0), a1, (v1), a2, (v2))
[all …]
/freebsd-13-stable/tests/sys/netgraph/
HDng_macfilter_test.sh134 local v1="$1" v2="$2" msg="$3"
136 if [ "$v1" = "$v2" ]; then
139 test_not_ok "$v1 vs $v2 $msg"
143 local v1="$1" v2="$2" msg="$3"
145 if [ "$v1" != "$v2" ]; then
148 test_not_ok "$v1 vs $v2 $msg"
152 local v1=$1 v2=$2 msg="$3"
154 if [ "$v1" -lt "$v2" ]; then
157 test_not_ok "$v1 >= $v2 $msg"
161 local v1=$1 v2=$2 msg="$3"
[all …]
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/
HDshorthash_siphash_ref.h12 v2 += v3; \
14 v3 ^= v2; \
18 v2 += v1; \
20 v1 ^= v2; \
21 v2 = ROTL64(v2, 32); \
/freebsd-13-stable/contrib/bearssl/src/symcipher/
HDpoly1305_ctmulq.c140 uint64_t v0, v1, v2; in poly1305_inner_big() local
145 v2 = v1 >> 24; in poly1305_inner_big()
150 a2 += v2 + ((uint64_t)1 << 40); in poly1305_inner_big()
160 v2 = v1 >> 24; in poly1305_inner_big()
165 a2 += v2 + ((uint64_t)1 << 40); in poly1305_inner_big()
175 v2 = v1 >> 24; in poly1305_inner_big()
180 a2 += v2 + ((uint64_t)1 << 40); in poly1305_inner_big()
190 v2 = v1 >> 24; in poly1305_inner_big()
195 a2 += v2 + ((uint64_t)1 << 40); in poly1305_inner_big()
239 uint64_t v0, v1, v2; in poly1305_inner_small() local
[all …]
/freebsd-13-stable/contrib/libarchive/libarchive/
HDxxhash.c249 U32 v2 = seed + PRIME32_2; in XXH32_endian_align() local
256 v2 += XXH_get32bits(p) * PRIME32_2; v2 = XXH_rotl32(v2, 13); v2 *= PRIME32_1; p+=4; in XXH32_endian_align()
261 h32 = XXH_rotl32(v1, 1) + XXH_rotl32(v2, 7) + XXH_rotl32(v3, 12) + XXH_rotl32(v4, 18); in XXH32_endian_align()
330 U32 v2; member
352 state->v2 = seed + PRIME32_2; in XXH32_resetState()
394 …state->v2 += XXH_readLE32(p32, endian) * PRIME32_2; state->v2 = XXH_rotl32(state->v2, 13); state-> in XXH32_update_endian()
406 U32 v2 = state->v2; in XXH32_update_endian() local
413v2 += XXH_readLE32((const U32*)p, endian) * PRIME32_2; v2 = XXH_rotl32(v2, 13); v2 *= PRIME32_1; p… in XXH32_update_endian()
419 state->v2 = v2; in XXH32_update_endian()
456 …h32 = XXH_rotl32(state->v1, 1) + XXH_rotl32(state->v2, 7) + XXH_rotl32(state->v3, 12) + XXH_rotl32… in XXH32_intermediateDigest_endian()
/freebsd-13-stable/contrib/googletest/googletest/test/
HDgtest_pred_impl_unittest.cc451 bool PredFunction2(T1 v1, T2 v2) { in PredFunction2() argument
452 return v1 + v2 > 0; in PredFunction2()
457 bool PredFunction2Int(int v1, int v2) { return v1 + v2 > 0; } in PredFunction2Int() argument
458 bool PredFunction2Bool(Bool v1, Bool v2) { return v1 + v2 > 0; } in PredFunction2Bool() argument
463 bool operator()(const T1& v1, const T2& v2) { in operator ()()
464 return v1 + v2 > 0; in operator ()()
471 const T1& v1, const T2& v2) { in PredFormatFunction2() argument
472 if (PredFunction2(v1, v2)) return testing::AssertionSuccess(); in PredFormatFunction2()
476 << " is expected to be positive, but evaluates to " << v1 + v2 << "."; in PredFormatFunction2()
483 const T1& v1, const T2& v2) const { in operator ()()
[all …]
/freebsd-13-stable/sys/netgraph/
HDng_patch.c244 conf->ops[i].val.v8 = conf->ops[i].val.v2; in ng_patch_rcvmsg()
270 conf->ops[i].val.v2 = (uint16_t) conf->ops[i].val.v8; in ng_patch_rcvmsg()
409 val.v2 = ntohs(val.v2); in do_patch()
414 val.v2 = privp->conf->ops[i].val.v2; in do_patch()
417 val.v2 += privp->conf->ops[i].val.v2; in do_patch()
420 val.v2 -= privp->conf->ops[i].val.v2; in do_patch()
423 val.v2 *= privp->conf->ops[i].val.v2; in do_patch()
426 val.v2 /= privp->conf->ops[i].val.v2; in do_patch()
432 val.v2 &= privp->conf->ops[i].val.v2; in do_patch()
435 val.v2 |= privp->conf->ops[i].val.v2; in do_patch()
[all …]
/freebsd-13-stable/sys/contrib/zstd/lib/common/
HDxxhash.c310 U32 v2 = seed + PRIME32_2; in XXH32_endian_align() local
316 v2 = XXH32_round(v2, XXH_get32bits(p)); p+=4; in XXH32_endian_align()
321 h32 = XXH_rotl32(v1, 1) + XXH_rotl32(v2, 7) + XXH_rotl32(v3, 12) + XXH_rotl32(v4, 18); in XXH32_endian_align()
410 U64 v2 = seed + PRIME64_2; in XXH64_endian_align() local
416 v2 = XXH64_round(v2, XXH_get64bits(p)); p+=8; in XXH64_endian_align()
421 h64 = XXH_rotl64(v1, 1) + XXH_rotl64(v2, 7) + XXH_rotl64(v3, 12) + XXH_rotl64(v4, 18); in XXH64_endian_align()
423 h64 = XXH64_mergeRound(h64, v2); in XXH64_endian_align()
521 state.v2 = seed + PRIME32_2; in XXH32_reset()
534 state.v2 = seed + PRIME64_2; in XXH64_reset()
564 state->v2 = XXH32_round(state->v2, XXH_readLE32(p32, endian)); p32++; in XXH32_update_endian()
[all …]

12345678910>>...70