Home
last modified time | relevance | path

Searched refs:n4 (Results 1 – 25 of 33) sorted by relevance

12

/freebsd/contrib/bc/tests/
H A Dbcl.c58 BclNumber n, n2, n3, n4, n5, n6, n7; in main() local
118 n4 = bcl_parse("-28390.9108273"); in main()
119 err(bcl_err(n4)); in main()
124 if (!bcl_num_neg(n4)) err(BCL_ERROR_FATAL_UNKNOWN_ERR); in main()
127 n5 = bcl_add_keep(n3, n4); in main()
138 n3 = bcl_add(n3, n4); in main()
149 n4 = bcl_parse("8937458902.2890347"); in main()
150 err(bcl_err(n4)); in main()
151 e = bcl_divmod_keep(n4, n3, &n5, &n6); in main()
163 n4 = bcl_parse("8937458902.2890347"); in main()
[all …]
/freebsd/contrib/pjdfstest/tests/link/
H A D06.t16 n4=`namegen`
28 expect 0 -u 65534 -g 65534 link ${n1}/${n3} ${n2}/${n4}
29 expect 0 -u 65534 -g 65534 unlink ${n2}/${n4}
32 expect EACCES -u 65534 -g 65534 link ${n1}/${n3} ${n1}/${n4}
33 expect EACCES -u 65534 -g 65534 link ${n1}/${n3} ${n2}/${n4}
37 expect EACCES -u 65534 -g 65534 link ${n1}/${n3} ${n2}/${n4}
H A D07.t16 n4=`namegen`
28 expect 0 -u 65534 -g 65534 link ${n1}/${n3} ${n2}/${n4}
29 expect 0 -u 65534 -g 65534 unlink ${n2}/${n4}
32 expect EACCES -u 65534 -g 65534 link ${n1}/${n3} ${n2}/${n4}
34 expect EACCES -u 65534 -g 65534 link ${n1}/${n3} ${n1}/${n4}
/freebsd/contrib/pjdfstest/tests/rename/
H A D04.t16 n4=`namegen`
28 expect 0 -u 65534 -g 65534 rename ${n1}/${n3} ${n2}/${n4}
29 expect 0 -u 65534 -g 65534 rename ${n2}/${n4} ${n1}/${n3}
32 expect EACCES -u 65534 -g 65534 rename ${n1}/${n3} ${n1}/${n4}
33 expect EACCES -u 65534 -g 65534 rename ${n1}/${n3} ${n2}/${n4}
37 expect EACCES -u 65534 -g 65534 rename ${n1}/${n3} ${n2}/${n4}
H A D05.t16 n4=`namegen`
28 expect 0 -u 65534 -g 65534 rename ${n1}/${n3} ${n2}/${n4}
29 expect 0 -u 65534 -g 65534 rename ${n2}/${n4} ${n1}/${n3}
32 expect EACCES -u 65534 -g 65534 rename ${n1}/${n3} ${n2}/${n4}
34 expect EACCES -u 65534 -g 65534 rename ${n1}/${n3} ${n1}/${n4}
H A D10.t16 n4=`namegen`
18 expect 0 mkdir ${n4} 0755
20 cd ${n4}
157 expect 0 rmdir ${n4}
H A D09.t16 n4=`namegen`
18 expect 0 mkdir ${n4} 0755
20 cd ${n4}
192 expect 0 rmdir ${n4}
/freebsd/contrib/netbsd-tests/lib/libc/net/
H A Dt_hostent.sh32 n4="sixthavenue.astron.com"
34 ans4="name=$n4, length=4, addrtype=2, aliases=[] addr_list=[$a4]\n"
72 atf_check -o inline:"$ans4" -x "$HIJACK_DNS ${dir}/h_hostent ${res} -t auto -4 $n4"
172 atf_check -o inline:"$ans4" -x "$HIJACK_DNS ${dir}/h_hostent ${res} -t dns -4 $n4"
/freebsd/contrib/netbsd-tests/ipf/
H A Dt_nat_exec.sh66 test_case n4 nattest text text
106 atf_add_test_case n4
/freebsd/crypto/openssl/crypto/ec/
H A Decp_smpl.c620 BIGNUM *n0, *n1, *n2, *n3, *n4, *n5, *n6; in ossl_ec_GFp_simple_add() local
645 n4 = BN_CTX_get(ctx); in ossl_ec_GFp_simple_add()
683 if (!BN_copy(n4, b->Y)) in ossl_ec_GFp_simple_add()
696 if (!field_mul(group, n4, b->Y, n0, ctx)) in ossl_ec_GFp_simple_add()
704 if (!BN_mod_sub_quick(n6, n2, n4, p)) in ossl_ec_GFp_simple_add()
728 if (!BN_mod_add_quick(n2, n2, n4, p)) in ossl_ec_GFp_simple_add()
757 if (!field_sqr(group, n4, n5, ctx)) in ossl_ec_GFp_simple_add()
759 if (!field_mul(group, n3, n1, n4, ctx)) in ossl_ec_GFp_simple_add()
775 if (!field_mul(group, n5, n4, n5, ctx)) in ossl_ec_GFp_simple_add()
/freebsd/bin/sh/tests/execution/
H A DMakefile54 ${PACKAGE}FILES+= set-n4.0
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfReader.cpp282 uint64_t count, n4; in ParseLine() local
289 n4 = AfterColon.find_first_of(' '); in ParseLine()
290 n4 = (n4 != StringRef::npos) ? n3 + n4 + 1 : Rest.size(); in ParseLine()
291 StringRef WordAfterColon = Rest.substr(n3 + 1, n4 - n3 - 1); in ParseLine()
304 if (n4 == Rest.size()) in ParseLine()
307 n3 = n4; in ParseLine()
/freebsd/crypto/heimdal/lib/asn1/
H A Dcheck-der.c156 int i, n1, n2, n3, n4, n5, n6; in test_integer_more() local
163 n4 = ~n2; in test_integer_more()
170 test_one_int(n4); in test_integer_more()
/freebsd/share/i18n/csmapper/APPLE/
H A DDINGBATS%UCS.src36 # n05 1998-Feb-05 Update to match internal utom<n4>, ufrm<n14>,
44 # Matches internal ufrm<n4>.
H A DUCS%DINGBATS.src36 # n05 1998-Feb-05 Update to match internal utom<n4>, ufrm<n14>,
44 # Matches internal ufrm<n4>.
H A DTURKISH%UCS.src40 # Matches internal ufrm<n4>.
H A DUCS%TURKISH.src40 # Matches internal ufrm<n4>.
H A DGREEK%UCS.src37 # n06 1998-Feb-05 Update to match internal utom<n4>, ufrm<n17>,
H A DICELAND%UCS.src35 # n03 1997-Dec-14 Update to match internal utom<n4>, ufrm<n16>:
H A DUCS%GREEK.src37 # n06 1998-Feb-05 Update to match internal utom<n4>, ufrm<n17>,
H A DUCS%ICELAND.src39 # n03 1997-Dec-14 Update to match internal utom<n4>, ufrm<n16>:
H A DUCS%ROMANIAN.src48 # Matches internal ufrm<n4>.
/freebsd/contrib/googletest/googletest/test/
H A Dgtest_unittest.cc2237 int n4) { in AssertSumIsEven4() argument
2238 const int sum = n1 + n2 + n3 + n4; in AssertSumIsEven4()
2245 << n2 << " + " << n3 << " + " << n4 << ") evaluates to " << sum in AssertSumIsEven4()
2255 int n3, int n4, int n5) { in operator ()()
2256 const int sum = n1 + n2 + n3 + n4 + n5; in operator ()()
2263 << " (" << n1 << " + " << n2 << " + " << n3 << " + " << n4 << " + " in operator ()()
2356 const int n4 = 6; in TEST() local
2359 EXPECT_PRED_FORMAT4(AssertSumIsEven4, n1, n2, n3, n4); in TEST()
2383 int n4 = 0; in TEST() local
2385 ASSERT_PRED_FORMAT5(AssertSumIsEven5Functor(), n1++, n2++, n3++, n4++, n5++) in TEST()
[all …]
/freebsd/contrib/netbsd-tests/bin/sh/
H A Dt_cmdsub.sh352 atf_check -s exit:0 -o inline:'11\n7\n18\n4\n1\n' -e empty \
/freebsd/sys/powerpc/ps3/
H A Dps3-hvcall.h80 …de_value(uint64_t lpar_id, uint64_t n1, uint64_t n2, uint64_t n3, uint64_t n4, uint64_t *v1, uint6…

12