Searched refs:v2 (Results 1 - 25 of 191) sorted by relevance

12345678

/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/
H A Dshorthash_siphash_ref.h12 v2 += v3; \
14 v3 ^= v2; \
18 v2 += v1; \
20 v1 ^= v2; \
21 v2 = ROTL64(v2, 32); \
H A Dshorthash_siphashx24_ref.c11 uint64_t v2 = 0x6c7967656e657261ULL; local
22 v2 ^= k0;
61 v2 ^= 0xee;
66 b = v0 ^ v1 ^ v2 ^ v3;
73 b = v0 ^ v1 ^ v2 ^ v3;
H A Dshorthash_siphash24_ref.c12 uint64_t v2 = 0x6c7967656e657261ULL; local
23 v2 ^= k0;
62 v2 ^= 0xff;
67 b = v0 ^ v1 ^ v2 ^ v3;
/freebsd-13-stable/contrib/googletest/googletest/include/gtest/
H A Dgtest_pred_impl.h48 // ASSERT_PRED_FORMAT2(pred_format, v1, v2)
60 // ASSERT_PRED2(pred, v1, v2)
64 // and the values v1, v2, ..., must support the << operator for
133 const T2& v2) {
134 if (pred(v1, v2)) return AssertionSuccess();
140 << "\n" << e2 << " evaluates to " << v2;
145 #define GTEST_PRED_FORMAT2_(pred_format, v1, v2, on_failure)\
146 GTEST_ASSERT_(pred_format(#v1, #v2, v1, v2), \
151 #define GTEST_PRED2_(pred, v1, v2, on_failur
128 AssertPred2Helper(const char* pred_text, const char* e1, const char* e2, Pred pred, const T1& v1, const T2& v2) argument
177 AssertPred3Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, Pred pred, const T1& v1, const T2& v2, const T3& v3) argument
233 AssertPred4Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4) argument
296 AssertPred5Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4, const T5& v5) argument
[all...]
/freebsd-13-stable/usr.bin/lastcomm/tests/
H A DMakefile14 ${PACKAGE}FILES+= v2-amd64-acct.in
15 ${PACKAGE}FILES+= v2-amd64.out
16 ${PACKAGE}FILES+= v2-i386-acct.in
17 ${PACKAGE}FILES+= v2-i386.out
18 ${PACKAGE}FILES+= v2-sparc64-acct.in
19 ${PACKAGE}FILES+= v2-sparc64.out
H A Dlegacy_test.sh26 cat $DIR/v1-$ARCH-acct.in $DIR/v2-$ARCH-acct.in >v1v2-$ARCH-acct.in
27 cat $DIR/v2-$ARCH.out $DIR/v1-$ARCH.out >v1v2-$ARCH.out
33 lastcomm -cesuS -f $DIR/v2-$ARCH-acct.in | check 3 $DIR/v2-$ARCH.out
34 lastcomm -cesuS -f - <$DIR/v2-$ARCH-acct.in | tail -r | check 4 $DIR/v2-$ARCH.out
/freebsd-13-stable/usr.sbin/sa/tests/
H A DMakefile23 ${PACKAGE}FILES+= v2-amd64-sav.in
24 ${PACKAGE}FILES+= v2-amd64-u.out
25 ${PACKAGE}FILES+= v2-amd64-usr.in
26 ${PACKAGE}FILES+= v2-i386-sav.in
27 ${PACKAGE}FILES+= v2-i386-u.out
28 ${PACKAGE}FILES+= v2-i386-usr.in
29 ${PACKAGE}FILES+= v2-sparc64-sav.in
30 ${PACKAGE}FILES+= v2-sparc64-u.out
31 ${PACKAGE}FILES+= v2-sparc64-usr.in
H A Dprime.sh28 $SANEW -u $LCDIR/v2-$ARCH-acct.in >v2-$ARCH-u.out
35 rm -f v2-$ARCH-sav.in v2-$ARCH-usr.in
36 $SANEW -s -P v2-$ARCH-sav.in -U v2-$ARCH-usr.in acct.in >/dev/null
/freebsd-13-stable/tools/regression/include/stdatomic/
H A Dlogic.c60 T v2 = rndnum(); \
61 assert(atomic_##name(a, v2) == v1); \
67 T v2 = rndnum(); \
69 if (atomic_compare_exchange_##name(a, &v2, v3)) \
70 assert(v1 == v2); \
72 assert(atomic_compare_exchange_##name(a, &v2, v3)); \
88 DO_FETCH_TEST(T, a, exchange, v2); \
89 DO_FETCH_TEST(T, a, fetch_add, v1 + v2); \
90 DO_FETCH_TEST(T, a, fetch_and, v1 & v2); \
91 DO_FETCH_TEST(T, a, fetch_or, v1 | v2); \
[all...]
/freebsd-13-stable/crypto/openssl/crypto/siphash/
H A Dsiphash_local.h16 uint64_t v2; member in struct:siphash_st
H A Dsiphash.c61 v2 += v3; \
63 v3 ^= v2; \
67 v2 += v1; \
69 v1 ^= v2; \
70 v2 = ROTL(v2, 32); \
135 ctx->v2 = 0x6c7967656e657261ULL ^ k0;
152 uint64_t v2 = ctx->v2; local
198 ctx->v2
209 uint64_t v2 = ctx->v2; local
[all...]
/freebsd-13-stable/contrib/bmake/
H A Denum.h55 #define ENUM__JOIN_STR_2(v1, v2) \
57 ENUM__JOIN_STR_1(v2)
58 #define ENUM__JOIN_STR_4(v1, v2, v3, v4) \
59 ENUM__JOIN_STR_2(v1, v2) ENUM__SEP \
61 #define ENUM__JOIN_STR_8(v1, v2, v3, v4, v5, v6, v7, v8) \
62 ENUM__JOIN_STR_4(v1, v2, v3, v4) ENUM__SEP \
81 #define ENUM__SPEC_2(v1, v2) \
83 ENUM__SPEC_1(v2)
84 #define ENUM__SPEC_4(v1, v2, v3, v4) \
85 ENUM__SPEC_2(v1, v2), \
[all...]
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_verify/sodium/
H A Dverify.c39 volatile __m128i v1, v2, z; local
48 v2 = _mm_loadu_si128((const __m128i *) &y[0]);
49 z = _mm_xor_si128(v1, v2);
52 v2 = _mm_loadu_si128((const __m128i *) &y[i]);
53 z = _mm_or_si128(z, _mm_xor_si128(v1, v2));
56 v1 = zero; v2 = zero; z = zero;
/freebsd-13-stable/sys/contrib/device-tree/scripts/
H A Dmerge-new-release.sh27 if [ "${v}" = "v2.6.12-rc2-dts" ] ; then
34 v2.6.12*|v2.6.13-rc[123])
35 # Commits from v2.6.12-rc2..v2.6.13-rc3 lacked the date. So use the commit's
/freebsd-13-stable/contrib/nvi/common/
H A Dutil.h45 #define NADD_SLONG(sp, v1, v2) \
47 ((v2) < 0 && \
48 NNFITS(LONG_MIN, (v1), (v2))) ? NUM_UNDER : NUM_OK : \
50 (v2) > 0 && \
51 NPFITS(LONG_MAX, (v1), (v2)) ? NUM_OK : NUM_OVER : \
53 #define NADD_USLONG(sp, v1, v2) \
54 (NPFITS(ULONG_MAX, (v1), (v2)) ? NUM_OK : NUM_OVER)
/freebsd-13-stable/tests/sys/netgraph/
H A Dng_macfilter_test.sh135 local v1="$1" v2="$2" msg="$3"
137 if [ "$v1" = "$v2" ]; then
140 test_not_ok "$v1 vs $v2 $msg"
144 local v1="$1" v2="$2" msg="$3"
146 if [ "$v1" != "$v2" ]; then
149 test_not_ok "$v1 vs $v2 $msg"
153 local v1=$1 v2=$2 msg="$3"
155 if [ "$v1" -lt "$v2" ]; then
158 test_not_ok "$v1 >= $v2 $msg"
162 local v1=$1 v2
[all...]
/freebsd-13-stable/sys/sys/
H A Dktr.h142 #define KTR_EVENT3(m, egroup, ident, etype, edat, a0, v0, a1, v1, a2, v2)\
144 ident, edat, (v0), (v1), (v2))
146 a0, v0, a1, v1, a2, v2, a3, v3) \
148 ident, edat, (v0), (v1), (v2), (v3))
159 #define KTR_STATE3(m, egroup, ident, state, a0, v0, a1, v1, a2, v2) \
161 state, a0, (v0), a1, (v1), a2, (v2))
162 #define KTR_STATE4(m, egroup, ident, state, a0, v0, a1, v1, a2, v2, a3, v3)\
164 state, a0, (v0), a1, (v1), a2, (v2), a3, (v3))
176 #define KTR_COUNTER3(m, egroup, ident, counter, a0, v0, a1, v1, a2, v2) \
178 counter, a0, (v0), a1, (v1), a2, (v2))
[all...]
/freebsd-13-stable/contrib/libarchive/test_utils/
H A Dtest_common.h179 #define assertEqualInt(v1,v2) \
180 assertion_equal_int(__FILE__, __LINE__, (v1), #v1, (v2), #v2, NULL)
182 #define assertEqualString(v1,v2) \
183 assertion_equal_string(__FILE__, __LINE__, (v1), #v1, (v2), #v2, NULL, 0)
184 #define assertEqualUTF8String(v1,v2) \
185 assertion_equal_string(__FILE__, __LINE__, (v1), #v1, (v2), #v2, NULL, 1)
186 /* As above, but v1 and v2 ar
[all...]
/freebsd-13-stable/contrib/bearssl/src/hash/
H A Dghash_ctmul64.c101 uint64_t v0, v1, v2, v3; local
135 v2 = z1 ^ z2h;
138 v3 = (v3 << 1) | (v2 >> 63);
139 v2 = (v2 << 1) | (v1 >> 63);
143 v2 ^= v0 ^ (v0 >> 1) ^ (v0 >> 2) ^ (v0 >> 7);
146 v2 ^= (v1 << 63) ^ (v1 << 62) ^ (v1 << 57);
148 y0 = v2;
/freebsd-13-stable/sys/dev/hyperv/utilities/
H A Dvmbus_icreg.h47 #define VMBUS_ICVER_LE(v1, v2) \
48 (VMBUS_ICVER_SWAP((v1)) <= VMBUS_ICVER_SWAP((v2)))
49 #define VMBUS_ICVER_GT(v1, v2) \
50 (VMBUS_ICVER_SWAP((v1)) > VMBUS_ICVER_SWAP((v2)))
/freebsd-13-stable/sys/crypto/openssl/aarch64/
H A Dghashv8-armx.S32 pmull2 v2.1q,v20.2d,v20.2d
35 ext v17.16b,v0.16b,v2.16b,#8 //Karatsuba post-processing
36 eor v18.16b,v0.16b,v2.16b
41 ins v2.d[0],v1.d[1]
47 eor v18.16b,v18.16b,v2.16b
57 pmull2 v2.1q,v20.2d, v22.2d
62 ext v16.16b,v0.16b,v2.16b,#8 //Karatsuba post-processing
64 eor v18.16b,v0.16b,v2.16b
73 ins v2.d[0],v1.d[1]
84 eor v18.16b,v18.16b,v2
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_termination.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
70 u64 v1, u64 v2) {
78 CheckFailedCallback(file, line, cond, v1, v2);
81 v1, v2);
69 CheckFailed(const char *file, int line, const char *cond, u64 v1, u64 v2) argument
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_pwhash/argon2/
H A Dblamka-round-ref.h27 #define BLAKE2_ROUND_NOMSG(v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, \
32 G(v2, v6, v10, v14); \
36 G(v2, v7, v8, v13); \
/freebsd-13-stable/contrib/libarchive/libarchive/
H A Dxxhash.c241 U32 v2 = seed + PRIME32_2; local
248 v2 += XXH_get32bits(p) * PRIME32_2; v2 = XXH_rotl32(v2, 13); v2 *= PRIME32_1; p+=4;
253 h32 = XXH_rotl32(v1, 1) + XXH_rotl32(v2, 7) + XXH_rotl32(v3, 12) + XXH_rotl32(v4, 18);
322 U32 v2; member in struct:XXH_state32_t
344 state->v2 = seed + PRIME32_2;
386 state->v2 += XXH_readLE32(p32, endian) * PRIME32_2; state->v2
398 U32 v2 = state->v2; local
[all...]
/freebsd-13-stable/contrib/bearssl/src/symcipher/
H A Dpoly1305_ctmulq.c140 uint64_t v0, v1, v2; local
145 v2 = v1 >> 24;
150 a2 += v2 + ((uint64_t)1 << 40);
160 v2 = v1 >> 24;
165 a2 += v2 + ((uint64_t)1 << 40);
175 v2 = v1 >> 24;
180 a2 += v2 + ((uint64_t)1 << 40);
190 v2 = v1 >> 24;
195 a2 += v2 + ((uint64_t)1 << 40);
239 uint64_t v0, v1, v2; local
322 uint32_t v0, v1, v2, v3, v4; local
[all...]

Completed in 250 milliseconds

12345678