Searched refs:m2 (Results 1 - 25 of 155) sorted by relevance

1234567

/freebsd-current/tools/test/stress2/misc/
H A Dtmpfs18.sh40 m2=${mntpoint}2
41 [ -d $m2 ] || mkdir $m2
42 mount | grep "on $m2 " | grep -q nfs && umount $m2
49 mount -t nfs -o tcp -o rw,retrycnt=1 127.0.0.1:$mntpoint $m2 || s=2
51 while mount | grep "on $m2 " | grep -q nfs; do
52 umount $m2
H A Dnfs10.sh41 m2=${mntpoint}2
42 [ -d $m2 ] || mkdir $m2
43 mount | grep "on $m2 " | grep -q nfs && umount $m2
54 mount -t nfs -o nfsv4 -o rw,retrycnt=3 127.0.0.1:$mntpoint $m2
56 export RUNDIR=$m2/stressX
61 umount $m2 2>/dev/null # Test umount of active FS while here
64 while mount | grep "on $m2 " | grep -q nfs; do
65 umount $m2
[all...]
H A Dnfs13.sh42 m2=${mntpoint}2
43 [ -d $m2 ] || mkdir $m2
44 mount | grep "on $m2 " | grep -q nfs && umount $m2
51 mount -t nfs -o tcp -o rw,retrycnt=1 127.0.0.1:$mntpoint $m2 || s=2
53 export RUNDIR=$m2/stressX
59 while mount | grep "on $m2 " | grep -q nfs; do
60 umount $m2
H A Dnfs11.sh38 m2=${mntpoint}2
39 [ -d $m2 ] || mkdir $m2
40 mount | grep "on $m2 " | grep -q nfs && umount $m2
51 mount -t nfs -o nfsv4 -o rw,retrycnt=3 127.0.0.1:$mntpoint $m2
53 export RUNDIR=$m2/stressX
58 while mount | grep "on $m2 " | grep -q nfs; do
59 umount $m2
H A Dbackingstore2.sh42 m2=$((m1 + 1))
43 mount | grep "$mntpoint$m2" | grep -q md$m2 && umount $mntpoint$m2
44 mdconfig -l | grep -q md$m2 && mdconfig -d -u $m2
48 [ -d $mntpoint$m2 ] || mkdir -p $mntpoint$m2
58 mdconfig -a -t vnode -f $mntpoint$m1/diskimage -u $m2
60 newfs md$m2 > /de
[all...]
H A Dbackingstore3.sh41 m2=$((m1 + 1))
42 mount | grep "$mntpoint" | grep -q md$m2 && umount $mntpoint$m2
43 mdconfig -l | grep -q md$m2 && mdconfig -d -u $m2
47 [ -d $mntpoint$m2 ] || mkdir -p $mntpoint$m2
57 mdconfig -a -t vnode -f $mntpoint$m1/diskimage -u $m2
59 newfs md$m2 > /dev/null 2>&1
60 mount /dev/md$m2
[all...]
H A Dsnap13.sh42 m2=$((mdstart + 1))
43 mp2=$mntpoint$m2
47 [ -c /dev/md$m2 ] && mdconfig -d -u $m2
57 mdconfig -a -t vnode -f $mntpoint/.snap/stress2 -u $m2 -o readonly ||
59 mount -t ufs -o ro /dev/md$m2 $mp2 || {
61 dumpfs -s /dev/md$m2; s=3; break; }
64 mdconfig -d -u $m2
H A Dsnap12.sh40 m2=$((mdstart + 1))
41 mp2=${mntpoint}$m2
45 [ -c /dev/md$m2 ] && mdconfig -d -u $m2
54 mdconfig -a -t vnode -f $mntpoint/.snap/stress2 -u $m2 -o readonly ||
56 mount -t ufs -o ro /dev/md$m2 $mp2 || { s=3; break; }
59 mdconfig -d -u $m2
H A Dsnap10.sh48 m2=$((mdstart + 1))
49 [ -c /dev/md$m2 ] && mdconfig -d -u $m2
50 mdconfig -a -t vnode -f $mntpoint/.snap/stress2 -u $m2 -o readonly
51 fsck -t ufs -y /dev/md$m2 > $log 2>&1 || { echo "fsck failed"; s=1; }
55 mdconfig -d -u $m2
/freebsd-current/sys/powerpc/fpu/
H A Dfpu_subr.c64 u_int m0, m1, m2, m3, s; local
74 m2 = fp->fp_mant[2];
80 if ((m0 | m1 | m2 | m3) == 0)
88 if ((m0 | m1 | m2 | m3) == 0)
99 s |= m3 | m2 | m1;
100 m3 = m0, m2 = 0, m1 = 0, m0 = 0;
102 s |= m3 | m2;
103 m3 = m1, m2 = m0, m1 = 0, m0 = 0;
106 m3 = m2, m2
138 u_int m0, m1, m2, m3, top, sup, nrm; local
[all...]
/freebsd-current/sys/contrib/libsodium/test/default/
H A Dsecretbox7.c9 static unsigned char m2[10000]; variable
23 if (crypto_secretbox_open(m2, c, mlen + crypto_secretbox_ZEROBYTES, n,
26 if (m2[i] != m[i]) {
H A Dsecretbox_easy2.c9 unsigned char *m2; local
19 m2 = (unsigned char *) sodium_malloc(mlen);
29 m2, c, (unsigned long long) mlen + crypto_secretbox_MACBYTES, nonce,
33 printf("%d\n", memcmp(m, m2, mlen));
36 if (crypto_secretbox_open_easy(m2, c, (unsigned long long) i, nonce,
47 if (crypto_secretbox_open_detached(m2, c, mac, (unsigned long long) mlen,
51 printf("%d\n", memcmp(m, m2, mlen));
65 sodium_free(m2);
H A Dbox_seal.c12 unsigned char *m2; local
20 m2 = (unsigned char *) sodium_malloc(m_len);
27 if (crypto_box_seal_open(m2, c, c_len, pk, sk) != 0) {
31 printf("%d\n", memcmp(m, m2, m_len));
39 sodium_free(m2);
H A Dbox8.c16 unsigned char *m2; local
25 m2 = (unsigned char *) sodium_malloc(mlen_max);
40 if (crypto_box_open(m2, c, mlen + crypto_box_ZEROBYTES, n, alicepk,
43 if (m2[i] != m[i]) {
55 sodium_free(m2);
H A Dbox7.c16 unsigned char *m2; local
24 m2 = (unsigned char *) sodium_malloc(mlen_max);
33 if (crypto_box_open(m2, c, mlen + crypto_box_ZEROBYTES, n, alicepk,
36 if (m2[i] != m[i]) {
47 sodium_free(m2);
H A Dsecretbox8.c9 static unsigned char m2[10000]; variable
27 if (crypto_secretbox_open(m2, c, mlen + crypto_secretbox_ZEROBYTES,
30 if (m2[i] != m[i]) {
/freebsd-current/tests/sys/geom/class/mirror/
H A D8_test.sh16 m2=`mktemp $base.XXXXXX` || exit 1
19 dd if=/dev/zero of=$m2 bs=$ddbs count=1024 >/dev/null 2>&1
22 us1=$(mdconfig -t vnode -f $m2) || exit 1
41 attach_md us1 -t vnode -f $m2 || exit 1
49 if cmp -s ${m1} ${m2}; then
55 rm -f $m1 $m2
/freebsd-current/share/doc/usd/21.troff/
H A DMakefile3 SRCS= m.mac m0 m0a m1 m2 m3 m4 m5 table1 table2
/freebsd-current/sys/contrib/libb2/
H A Dblake2s-load-sse41.h24 buf = TOI(_mm_shuffle_ps(TOF(m2), TOF(m3), _MM_SHUFFLE(2,0,2,0)));
27 buf = TOI(_mm_shuffle_ps(TOF(m2), TOF(m3), _MM_SHUFFLE(3,1,3,1)));
30 t0 = _mm_blend_epi16(m1, m2, 0x0C); \
36 t0 = _mm_shuffle_epi32(m2,_MM_SHUFFLE(0,0,2,0)); \
43 t1 = _mm_blend_epi16(m2, t0, 0x30); \
54 t0 = _mm_unpackhi_epi32(m2,m3); \
60 t0 = _mm_unpacklo_epi32(m2,m0); \
66 t0 = _mm_blend_epi16(m0, m2, 0x3C); \
79 t1 = _mm_unpackhi_epi32(t0, m2); \
84 t0 = _mm_slli_si128(m2,
[all...]
H A Dblake2b-load-sse41.h21 b1 = _mm_unpacklo_epi64(m2, m3); \
29 b1 = _mm_unpackhi_epi64(m2, m3); \
52 b0 = _mm_unpacklo_epi64(m7, m2); \
69 b1 = _mm_unpackhi_epi64(m5, m2); \
85 b1 = _mm_unpackhi_epi64(m2, m7); \
109 b1 = _mm_alignr_epi8(m2, m0, 8); \
132 b0 = _mm_blend_epi16(m1, m2, 0xF0); \
133 b1 = _mm_blend_epi16(m2, m7, 0xF0); \
148 b0 = _mm_unpackhi_epi64(m4, m2); \
157 b1 = _mm_blend_epi16(m2, m
[all...]
/freebsd-current/contrib/netbsd-tests/dev/fss/
H A Dt_fss.sh40 mkdir ./m2
55 mount -o rdonly /dev/fss0 ./m2
63 read test_data < ./m2/text
/freebsd-current/contrib/arm-optimized-routines/pl/math/
H A Datanhf_3u1.c32 float m2 = m * m; local
33 float p_02 = fmaf (m2, p_12, m);
34 float p_36 = fmaf (m2, p_56, p_34);
35 float p_79 = fmaf (m2, C (8), p_78);
37 float m4 = m2 * m2;
/freebsd-current/contrib/googletest/googlemock/test/
H A Dgmock-matchers-comparisons_test.cc220 Matcher<const std::string&> m2 = "hi"; local
221 EXPECT_TRUE(m2.Matches("hi"));
222 EXPECT_FALSE(m2.Matches("hello"));
232 Matcher<const std::string&> m2 = std::string("hi"); local
233 EXPECT_TRUE(m2.Matches("hi"));
234 EXPECT_FALSE(m2.Matches("hello"));
245 Matcher<const internal::StringView&> m2 = "cats"; local
246 EXPECT_TRUE(m2.Matches("cats"));
247 EXPECT_FALSE(m2.Matches("dogs"));
257 Matcher<const internal::StringView&> m2 local
269 Matcher<const internal::StringView&> m2 = internal::StringView("cats"); local
284 Matcher<const std::string&> m2 = Eq(std::ref(value)); local
331 Matcher<double> m2 = ReferencesBarOrIsZero(); local
375 const Matcher<char> m2 = PolymorphicIsEven(); local
420 Matcher<int> m2 = MatcherCast<int>(m1); local
436 Matcher<int> m2 = MatcherCast<int>(m1); local
444 Matcher<int> m2 = MatcherCast<int>(m1); local
452 Matcher<const int&> m2 = MatcherCast<const int&>(m1); local
460 Matcher<int&> m2 = MatcherCast<int&>(m1); local
470 Matcher<int> m2 = MatcherCast<int>(m1); local
513 Matcher<NonImplicitlyConstructibleTypeWithOperatorEq> m2 = local
612 Matcher<char> m2; local
627 Matcher<float> m2 = SafeMatcherCast<float>(m1); local
641 Matcher<Derived*> m2 = SafeMatcherCast<Derived*>(m1); local
655 Matcher<int&> m2 = SafeMatcherCast<int&>(m1); local
664 Matcher<const std::unique_ptr<int>&> m2 = local
673 Matcher<int&> m2 = SafeMatcherCast<int&>(m1); local
683 Matcher<int> m2 = SafeMatcherCast<int>(m1); local
739 Matcher<int&> m2 = A<int&>(); local
766 Matcher<int&> m2 = An<int&>(); local
785 Matcher<const bool&> m2 = _; local
833 Matcher<char> m2 = Eq(1); local
844 Matcher<int> m2 = TypedEq<int>(6); local
1021 Matcher<const char*> m2 = IsNull(); local
1054 Matcher<const char*> m2 = NotNull(); local
1175 Matcher<const std::string&> m2 = StrEq("Hello"); local
1200 Matcher<std::string> m2 = StrEq(str); local
1213 Matcher<std::string> m2 = StrNe(std::string("Hello")); local
1237 Matcher<const std::string&> m2 = StrCaseEq("Hello"); local
1263 Matcher<const std::string&> m2 = StrCaseEq(str1); local
1288 Matcher<std::string> m2 = StrCaseNe(std::string("Hello")); local
1313 const Matcher<const std::string&> m2 = HasSubstr("foo"); local
1329 const Matcher<const char*> m2 = HasSubstr("foo"); local
1349 const Matcher<const internal::StringView&> m2 = HasSubstr("foo"); local
1461 Matcher<const pair<const char*, int>> m2 = Pair("foo", 42); local
1479 Matcher<const pair<int, int>&> m2 = Not(Pair(Not(13), 42)); local
1751 const Matcher<const std::string&> m2 = StartsWith("Hi"); local
1780 const Matcher<const std::string&> m2 = EndsWith(std::string("Hi")); local
1811 const Matcher<const std::string&> m2 = WhenBase64Unescaped(EndsWith("!")); local
1840 const Matcher<const std::string&> m2 = MatchesRegex(new RE("a.*z")); local
1862 Matcher<const char*> m2 = MatchesRegex(new RE("a.*")); local
1879 const Matcher<const std::string&> m2 = ContainsRegex(new RE("a.*z")); local
1901 Matcher<const char*> m2 = ContainsRegex(new RE("a.*")); local
1918 Matcher<const ::std::wstring&> m2 = StrEq(L"Hello"); local
1940 Matcher<::std::wstring> m2 = StrEq(L"\\xD3\\x576\\x8D3\\xC74D"); local
1958 Matcher<::std::wstring> m2 = StrNe(::std::wstring(L"Hello")); local
1975 Matcher<const ::std::wstring&> m2 = StrCaseEq(L"Hello"); local
1992 Matcher<const ::std::wstring&> m2 = StrCaseEq(str1); local
2017 Matcher<::std::wstring> m2 = StrCaseNe(::std::wstring(L"Hello")); local
2033 const Matcher<const ::std::wstring&> m2 = HasSubstr(L"foo"); local
2045 const Matcher<const wchar_t*> m2 = HasSubstr(L"foo"); local
2065 const Matcher<const ::std::wstring&> m2 = StartsWith(L"Hi"); local
2086 const Matcher<const ::std::wstring&> m2 = EndsWith(::std::wstring(L"Hi")); local
2133 ConstructNoArgMatcher m2; local
[all...]
/freebsd-current/crypto/openssh/regress/
H A Dmodpipe.c47 u_int8_t m1, m2; member in struct:modification
54 int n, m1, m2; local
58 what, &m->offset, &m1, &m2)) < 3)
72 if (m2 < 0 || m2 > 0xff)
76 m->m2 = m2;
125 buf[mods[i].offset - total] |= mods[i].m2;
/freebsd-current/sys/contrib/libsodium/src/libsodium/crypto_generichash/blake2b/ref/
H A Dblake2b-load-sse41.h22 b1 = _mm_unpacklo_epi64(m2, m3); \
28 b1 = _mm_unpackhi_epi64(m2, m3); \
45 b0 = _mm_unpacklo_epi64(m7, m2); \
58 b1 = _mm_unpackhi_epi64(m5, m2); \
70 b1 = _mm_unpackhi_epi64(m2, m7); \
88 b1 = _mm_alignr_epi8(m2, m0, 8); \
105 b0 = _mm_blend_epi16(m1, m2, 0xF0); \
106 b1 = _mm_blend_epi16(m2, m7, 0xF0); \
117 b0 = _mm_unpackhi_epi64(m4, m2); \
124 b1 = _mm_blend_epi16(m2, m
[all...]

Completed in 148 milliseconds

1234567