Home
last modified time | relevance | path

Searched refs:out2 (Results 1 – 25 of 88) sorted by relevance

1234

/freebsd/contrib/bc/tests/
H A Dother.sh328 out2="$outputdir/${d}_outputs/${d}_other_test.txt"
335 printf '%s\n' "$num" 2> /dev/null | "$exe" "$@" > "$out2"
337 checktest "$d" "$?" "line length" "$out1" "$out2"
342 printf '%s\n' "$num" 2> /dev/null | "$exe" "$@" > "$out2"
344 checktest "$d" "$?" "line length 2" "$out1" "$out2"
349 printf '%s\n' "$num" 2> /dev/null | "$exe" "$@" -L > "$out2"
351 checktest "$d" "$?" "line length 3" "$out1" "$out2"
354 printf '%s\n' "$lltest" 2> /dev/null | "$exe" "$@" -L > "$out2"
356 checktest "$d" "$?" "line length 3" "$out1" "$out2"
371 "$exe" "$@" -e "$exprs" -f "$f" --expression "$exprs" --file "$f" -e "$halt" > "$out2"
[all...]
/freebsd/sys/contrib/libsodium/test/default/
H A Dxchacha20.c37 unsigned char *out2; in tv_hchacha20() local
44 out2 = (unsigned char *) sodium_malloc(crypto_core_hchacha20_OUTPUTBYTES); in tv_hchacha20()
53 crypto_core_hchacha20(out2, in, key, NULL); in tv_hchacha20()
54 assert(memcmp(out, out2, crypto_core_hchacha20_OUTPUTBYTES) == 0); in tv_hchacha20()
64 crypto_core_hchacha20(out2, in, key, constant); in tv_hchacha20()
65 assert(memcmp(out, out2, crypto_core_hchacha20_OUTPUTBYTES) == 0); in tv_hchacha20()
67 sodium_free(out2); in tv_hchacha20()
109 unsigned char *out2; in tv_stream_xchacha20() local
125 out2 = (unsigned char *) sodium_malloc(out_len); in tv_stream_xchacha20()
126 crypto_stream_xchacha20(out2, out_len, nonce, key); in tv_stream_xchacha20()
[all …]
H A Dscalarmult7.c19 static unsigned char out2[32]; variable
29 ret = crypto_scalarmult_curve25519(out2, scalar, p2); in main()
31 printf("%d\n", !!memcmp(out1, out2, 32)); in main()
/freebsd/crypto/openssl/crypto/aes/asm/
H A Daesp8-ppc.pl680 my ($out0,$out1,$out2,$out3,$out4,$out5,$out6,$out7)=map("v$_",(14..21));
795 vxor $out2,$in2,$rndkey0
813 vncipher $out2,$out2,v24
824 vncipher $out2,$out2,v25
836 vncipher $out2,$out2,v24
846 vncipher $out2,$out2,v25
856 vncipher $out2,$out2,v26
869 vncipher $out2,$out2,v27
879 vncipher $out2,$out2,v28
889 vncipher $out2,$out2,v29
[all …]
H A Daes-ia64.S341 add out2=2,in0
345 { .mmi; ld1 r18=[out2],4
349 { .mmi; ld1 r22=[out2],4
353 { .mmi; ld1 r26=[out2],4
357 { .mmi; ld1 r30=[out2]
388 { .mii; ADDP out2=2,in1
397 { .mii; st1 [out2]=r17,4
404 st1 [out2]=r21,4 }//;;
408 st1 [out2]=r25,4
414 st1 [out2]=r29
[all …]
/freebsd/crypto/heimdal/lib/kadm5/
H A Dchpass_s.c65 goto out2; in change()
77 goto out2; in change()
90 goto out2; in change()
95 goto out2; in change()
101 goto out2; in change()
105 goto out2; in change()
110 goto out2; in change()
118 out2: in change()
175 goto out2; in kadm5_s_chpass_principal_with_key()
179 goto out2; in kadm5_s_chpass_principal_with_key()
[all …]
H A Dmodify_s.c62 goto out2; in modify_principal()
65 goto out2; in modify_principal()
69 goto out2; in modify_principal()
74 goto out2; in modify_principal()
80 out2: in modify_principal()
H A Drandkey_s.c67 goto out2; in kadm5_s_randkey_principal()
75 goto out2; in kadm5_s_randkey_principal()
79 goto out2; in kadm5_s_randkey_principal()
84 goto out2; in kadm5_s_randkey_principal()
102 out2: in kadm5_s_randkey_principal()
H A Ddelete_s.c57 goto out2; in kadm5_s_delete_principal()
62 goto out2; in kadm5_s_delete_principal()
66 goto out2; in kadm5_s_delete_principal()
70 out2: in kadm5_s_delete_principal()
H A Drename_s.c62 goto out2; in kadm5_s_rename_principal()
88 goto out2; in kadm5_s_rename_principal()
95 goto out2; in kadm5_s_rename_principal()
103 goto out2; in kadm5_s_rename_principal()
107 out2: in kadm5_s_rename_principal()
/freebsd/contrib/bc/tests/bc/
H A Dtimeconst.sh70 out2="$outputdir/bc_outputs/bc_timeconst_results.txt"
114 printf '%s\n' "$i" | "$bc" "$@" -q "$timeconst" > "$out2"
116 diff "$out1" "$out2"
129 rm -f "$out2"
/freebsd/crypto/heimdal/kadmin/
H A Ddel_enctype.c66 goto out2; in del_enctype()
73 goto out2; in del_enctype()
81 goto out2; in del_enctype()
118 out2: in del_enctype()
H A Dadd_enctype.c71 goto out2; in add_enctype()
78 goto out2; in add_enctype()
86 goto out2; in add_enctype()
160 out2: in add_enctype()
/freebsd/tools/test/iconv/
H A Dconst-gnuism.c43 char *out1, *out2; in main() local
50 if ((out2 = malloc(inbytes)) == NULL) in main()
53 if (iconv(cd, in2, &inbytes, &out2, &outbytes) == -1) in main()
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Din_out_out_result.h33 _LIBCPP_NO_UNIQUE_ADDRESS _OutIter2 out2;
39 return {in, out1, out2};
46 return {std::move(in), std::move(out1), std::move(out2)}; in in_out_out_result()
30 _LIBCPP_NO_UNIQUE_ADDRESS _OutIter2 out2; global() member
/freebsd/bin/sh/
H A Derror.c125 outfmt(out2, "%s: ", commandname); in vwarning()
127 outfmt(out2, "%s: ", arg0); in vwarning()
128 doformat(out2, msg, ap); in vwarning()
H A Doutput.c72 struct output *out2 = &errout; variable
95 outstr(p, out2); in out2str()
101 outqstr(p, out2); in out2qstr()
296 doformat(out2, fmt, ap); in out2fmt_flush()
298 flushout(out2); in out2fmt_flush()
H A Doutput.h54 extern struct output *out2; /* &memout if backquote with 2>&1, otherwise
81 #define out2c(c) outcslow(c, out2);
/freebsd/contrib/atf/atf-c/
H A Dcheck_test.c403 const char *out1, *out2; in ATF_TC_BODY() local
415 out2 = atf_check_result_stdout(&result2); in ATF_TC_BODY()
420 ATF_CHECK(strstr(out2, "check.XXXXXX") == NULL); in ATF_TC_BODY()
425 ATF_CHECK(strstr(out2, "/check") != NULL); in ATF_TC_BODY()
430 ATF_CHECK(strstr(out2, "/stdout") != NULL); in ATF_TC_BODY()
434 ATF_CHECK(strcmp(out1, out2) != 0); in ATF_TC_BODY()
447 CHECK_LINES(out2, "stdout", "result2"); in ATF_TC_BODY()
/freebsd/crypto/heimdal/lib/gssapi/
H A Dtest_context.c649 gss_buffer_desc in, out1, out2; in main() local
792 memset(&out2, 0, sizeof(out2)); in main()
800 100, &out2); in main()
802 if (out1.length != out2.length) in main()
804 if (memcmp(out1.value, out2.value, out1.length) != 0) in main()
812 if (out1.length != out2.length) in main()
814 if (memcmp(out1.value, out2.value, out1.length) != 0) in main()
818 gss_release_buffer(&min_stat, &out2); in main()
826 100, &out2); in main()
828 if (out1.length != out2.length) in main()
[all …]
/freebsd/contrib/atf/atf-c++/
H A Dcheck_test.cpp335 const std::string out2 = r2->stdout_path(); in ATF_TEST_CASE_BODY() local
340 ATF_REQUIRE(out2.find("check.XXXXXX") == std::string::npos); in ATF_TEST_CASE_BODY()
345 ATF_REQUIRE(out2.find("/check") != std::string::npos); in ATF_TEST_CASE_BODY()
350 ATF_REQUIRE(out2.find("/stdout") != std::string::npos); in ATF_TEST_CASE_BODY()
354 ATF_REQUIRE(out1 != out2); in ATF_TEST_CASE_BODY()
358 check_lines(out2, "stdout", "result2"); in ATF_TEST_CASE_BODY()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/devices/
H A Ddevices_001_pos.ksh64 log_must dd if=$TESTDIR/$TESTFILE1 of=$TESTDIR/$TESTFILE1.out2 count=1 bs=128k
65 log_must cmp $TESTDIR/$TESTFILE1.out1 $TESTDIR/$TESTFILE1.out2
/freebsd/crypto/openssl/test/
H A Devp_libctx_test.c321 unsigned char out2[256]; in test_cipher_reinit() local
370 || !TEST_int_eq(EVP_EncryptUpdate(ctx, out2, &out2_len, in, sizeof(in)), in test_cipher_reinit()
380 if (!TEST_mem_ne(out1, out1_len, out2, out2_len) in test_cipher_reinit()
382 || !TEST_mem_ne(out2, out2_len, out3, out3_len)) in test_cipher_reinit()
385 if (!TEST_mem_eq(out1, out1_len, out2, out2_len) in test_cipher_reinit()
410 unsigned char out2[256]; in test_cipher_reinit_partialupdate() local
456 || !TEST_true(EVP_EncryptUpdate(ctx, out2, &out2_len, in, in_len))) in test_cipher_reinit_partialupdate()
459 if (!TEST_mem_eq(out1, out1_len, out2, out2_len)) in test_cipher_reinit_partialupdate()
/freebsd/crypto/openssl/crypto/des/asm/
H A Ddes_enc.m485 #define out2 %o2
132 ld [out2+256], local1
138 ld [out2+260], local2
143 ld [out2+280], out4 ! loop counter
147 ld [out2+264], local3
183 ld [out2+272], local7
217 ld [out2+284], local5 ! 0x0000FC00 used in the rounds
228 ld [out2+284], local5 ! 0x0000FC00 used in the rounds
285 ld [out2+284], local5 ! 0x0000FC00
318 ldub [out2+local1], local1 ! 7 (and 0xFC)
[all …]
/freebsd/tests/sys/netgraph/
H A Dng_macfilter_test.sh322 n=$(countmacs out2)
344 n=$(countmacs out2)
394 n=$(countmacs out2)
420 n=$(countmacs out2)

1234