/freebsd/sys/contrib/libsodium/test/default/ |
H A D | xchacha20.c | 37 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 D | scalarmult7.c | 19 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/contrib/bc/tests/ |
H A D | other.sh | 328 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/crypto/openssl/crypto/aes/asm/ |
H A D | aesp8-ppc.pl | 680 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 …]
|
/freebsd/crypto/heimdal/lib/kadm5/ |
H A D | chpass_s.c | 65 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 D | modify_s.c | 62 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 D | randkey_s.c | 67 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 D | rename_s.c | 62 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()
|
H A D | delete_s.c | 57 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()
|
/freebsd/contrib/netbsd-tests/bin/sh/ |
H A D | t_redir.sh | 287 ${TEST_SH} -c '(echo line 1; echo line 2 > Out2) > Out1' 290 test "$(cat Out2)" = "line 2" || atf_fail \ 291 "#$T: Incorrect Out2: Should be 'line 2' is '$(cat Out2)'" 294 ${TEST_SH} -c '{ echo line 1; echo line 2 > Out2;} > Out1' 297 test "$(cat Out2)" = "line 2" || atf_fail \ 298 "#$T: Incorrect Out2: Should be 'line 2' is '$(cat Out2)'" 300 i; rm -f Out1 Out2 2>/dev/null || : 306 done > Out2 311 test "$(cat Out2)" = "line 1${nl}line 2${nl}line 3" || atf_fail \ 312 "#$T: Incorrect Out2: Should be 'line 1\\nline 2\\nline 3' is '$(cat Out2)'" [all …]
|
/freebsd/crypto/openssl/crypto/des/asm/ |
H A D | des_enc.m4 | 85 #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 D | ng_macfilter_test.sh | 311 test $i = 2 && edge='out2' || edge='out1' 322 n=$(countmacs out2) 324 test_eq $n $n2 'MACs in table for out2' 344 n=$(countmacs out2) 346 test_eq $n $n2 'MACs in table for out2' 394 n=$(countmacs out2) 395 n2=$(grep -c ' out2' $entries_lst) 396 test_eq $n $n2 'MACs in table for out2' 420 n=$(countmacs out2) 421 n2=$(grep -c ' out2' $entries2_lst) [all …]
|
/freebsd/crypto/heimdal/kadmin/ |
H A D | del_enctype.c | 66 goto out2; in del_enctype() 73 goto out2; in del_enctype() 81 goto out2; in del_enctype() 118 out2: in del_enctype()
|
H A D | add_enctype.c | 71 goto out2; in add_enctype() 78 goto out2; in add_enctype() 86 goto out2; in add_enctype() 160 out2: in add_enctype()
|
/freebsd/contrib/bc/tests/bc/ |
H A D | timeconst.sh | 70 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/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | in_out_out_result.h | 33 _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/sys/contrib/device-tree/Bindings/clock/ |
H A D | idt,versaclock5.txt | 42 2 -- OUT2 53 2 -- OUT2 60 2 -- OUT2
|
/freebsd/tools/test/iconv/ |
H A D | const-gnuism.c | 43 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/crypto/heimdal/lib/gssapi/ |
H A D | test_context.c | 649 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/bin/sh/ |
H A D | output.c | 72 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 D | error.c | 125 outfmt(out2, "%s: ", commandname); in vwarning() 127 outfmt(out2, "%s: ", arg0); in vwarning() 128 doformat(out2, msg, ap); in vwarning()
|
/freebsd/contrib/atf/atf-c/ |
H A D | check_test.c | 403 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/contrib/atf/atf-c++/ |
H A D | check_test.cpp | 335 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/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
H A D | BasicBlockUtils.h | 628 /// Foo ---> Out1 Out2 634 /// Create hub: Incoming = {In1, In2}, Outgoing = {Out1, Out2} 647 /// ' Guard2 -----> Out2 661 /// outgoing block Out2, such that: 663 /// b. U is reachable from Out2 or is contained in Out2. 664 /// c. U is not a PHINode if U is contained in Out2. 666 /// Clearly, Def dominates Out2 since the program is valid SSA. But when the 670 /// the hub on the one hand, and dominated by Out2 on the other. This is left
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/devices/ |
H A D | devices_001_pos.ksh | 64 log_must dd if=$TESTDIR/$TESTFILE1 of=$TESTDIR/$TESTFILE1.out2 count=1 bs=128k 65 log_must cmp $TESTDIR/$TESTFILE1.out1 $TESTDIR/$TESTFILE1.out2
|