Home
last modified time | relevance | path

Searched refs:out0 (Results 1 – 23 of 23) sorted by relevance

/freebsd-14.2/crypto/openssl/crypto/aes/asm/
H A Daesp8-ppc.pl939 le?vperm $out0,$out0,$out0,$inpperm
1715 le?vperm $out0,$out0,$out0,$inpperm
1744 le?vperm $out0,$out0,$out0,$inpperm
1770 le?vperm $out0,$out0,$out0,$inpperm
1793 le?vperm $out0,$out0,$out0,$inpperm
1813 le?vperm $out0,$out0,$out0,$inpperm
1830 le?vperm $out0,$out0,$out0,$inpperm
1844 le?vperm $out0,$out0,$out0,$inpperm
1855 le?vperm $out0,$out0,$out0,$inpperm
2930 vxor $out0,$out0,$out0
[all …]
H A Daes-ia64.S290 and out0=3,in0
307 add out0=4,in0
340 { .mmi; add out0=1,in0
356 ld1 r29=[out0] }//;;
411 st1 [out0]=r27,4
417 st1 [out0]=r31 }
667 and out0=3,in0
684 add out0=4,in0
733 ld1 r29=[out0] }//;;
788 st1 [out0]=r27,4
[all …]
/freebsd-14.2/tests/sys/fs/fusefs/
H A Dinterrupt.cc251 out.push_back(std::move(out0)); in TEST_F()
314 out0->header.error = -ENOSYS; in TEST_F()
315 out0->header.len = sizeof(out0->header); in TEST_F()
316 out.push_back(std::move(out0)); in TEST_F()
340 out.push_back(std::move(out0)); in TEST_F()
568 out0->header.error = -EINTR; in TEST_F()
570 out0->header.len = sizeof(out0->header); in TEST_F()
604 out0->header.error = -EINTR; in TEST_F()
606 out0->header.len = sizeof(out0->header); in TEST_F()
784 out0->header.error = -EINTR; in TEST_F()
[all …]
H A Dlast_local_modify.cc276 out0->header.unique = in.header.unique; in TEST_P()
277 SET_OUT_HEADER_LEN(*out0, entry); in TEST_P()
279 out0->body.entry.nodeid = ino; in TEST_P()
281 out0->body.entry.attr_valid = UINT64_MAX; in TEST_P()
282 out0->body.entry.attr.size = oldsize; in TEST_P()
283 out.push_back(std::move(out0)); in TEST_P()
438 out0->header.unique = lookup_unique; in TEST_P()
439 SET_OUT_HEADER_LEN(*out0, entry); in TEST_P()
441 out0->body.entry.nodeid = ino; in TEST_P()
444 out0->body.entry.attr.size = oldsize; in TEST_P()
[all …]
H A Dbad_server.cc81 std::unique_ptr<mockfs_buf_out> out0(new mockfs_buf_out); in TEST_F() local
82 out0->header.unique = in.header.unique; in TEST_F()
83 out0->header.error = -ENOENT; in TEST_F()
84 SET_OUT_HEADER_LEN(*out0, entry); // Invalid! in TEST_F()
85 out0->expected_errno = EINVAL; in TEST_F()
86 out.push_back(std::move(out0)); in TEST_F()
H A Dmockfs.cc125 out0->header.error = -error; in ReturnErrno()
126 out0->header.len = sizeof(out0->header); in ReturnErrno()
127 out.push_back(std::move(out0)); in ReturnErrno()
138 out0->body.entry.nodeid = 0; in ReturnNegativeCache()
140 out0->header.error = 0; in ReturnNegativeCache()
143 SET_OUT_HEADER_LEN(*out0, entry); in ReturnNegativeCache()
144 out.push_back(std::move(out0)); in ReturnNegativeCache()
155 f(in, *out0); in ReturnImmediate()
156 out.push_back(std::move(out0)); in ReturnImmediate()
903 out0->header.len = sizeof(out0->header); in process_default()
[all …]
/freebsd-14.2/sys/contrib/libsodium/src/libsodium/crypto_auth/hmacsha512256/
H A Dauth_hmacsha512256.c59 unsigned char out0[64]; in crypto_auth_hmacsha512256_final() local
61 crypto_auth_hmacsha512_final((crypto_auth_hmacsha512_state *) state, out0); in crypto_auth_hmacsha512256_final()
62 memcpy(out, out0, 32); in crypto_auth_hmacsha512256_final()
/freebsd-14.2/crypto/openssl/crypto/des/asm/
H A Ddes_enc.m483 #define out0 %o0
283 xor $2, out0, local1
298 xor $2, out0, out0 ! 7531
360 xor $1, out0, out0 ! 8642
366 sll out0, 28, out0 ! rotate
374 or out0, local0, out0 ! rotate
413 xor $2, out0, out0
472 xor $1, out0, out0 ! 8642
478 sll out0, 28, out0 ! rotate
486 or out0, local0, out0 ! rotate
[all …]
/freebsd-14.2/crypto/openssl/providers/implementations/ciphers/
H A Dcipher_aes_cbc_hmac_sha1_hw.c326 unsigned char *out0 = out; in tls1_multi_block_encrypt() local
352 out0[0] = ((u8 *)sctx->md.data)[8]; in tls1_multi_block_encrypt()
353 out0[1] = ((u8 *)sctx->md.data)[9]; in tls1_multi_block_encrypt()
354 out0[2] = ((u8 *)sctx->md.data)[10]; in tls1_multi_block_encrypt()
355 out0[3] = (u8)(len >> 8); in tls1_multi_block_encrypt()
356 out0[4] = (u8)(len); in tls1_multi_block_encrypt()
H A Dcipher_aes_cbc_hmac_sha256_hw.c346 unsigned char *out0 = out; in tls1_multi_block_encrypt() local
375 out0[0] = ((u8 *)sctx->md.data)[8]; in tls1_multi_block_encrypt()
376 out0[1] = ((u8 *)sctx->md.data)[9]; in tls1_multi_block_encrypt()
377 out0[2] = ((u8 *)sctx->md.data)[10]; in tls1_multi_block_encrypt()
378 out0[3] = (u8)(len >> 8); in tls1_multi_block_encrypt()
379 out0[4] = (u8)(len); in tls1_multi_block_encrypt()
/freebsd-14.2/crypto/openssl/crypto/evp/
H A De_aes_cbc_hmac_sha1.c363 unsigned char *out0 = out; in tls1_1_multi_block_encrypt() local
389 out0[0] = ((u8 *)key->md.data)[8]; in tls1_1_multi_block_encrypt()
390 out0[1] = ((u8 *)key->md.data)[9]; in tls1_1_multi_block_encrypt()
391 out0[2] = ((u8 *)key->md.data)[10]; in tls1_1_multi_block_encrypt()
392 out0[3] = (u8)(len >> 8); in tls1_1_multi_block_encrypt()
393 out0[4] = (u8)(len); in tls1_1_multi_block_encrypt()
H A De_aes_cbc_hmac_sha256.c374 unsigned char *out0 = out; in tls1_1_multi_block_encrypt() local
403 out0[0] = ((u8 *)key->md.data)[8]; in tls1_1_multi_block_encrypt()
404 out0[1] = ((u8 *)key->md.data)[9]; in tls1_1_multi_block_encrypt()
405 out0[2] = ((u8 *)key->md.data)[10]; in tls1_1_multi_block_encrypt()
406 out0[3] = (u8)(len >> 8); in tls1_1_multi_block_encrypt()
407 out0[4] = (u8)(len); in tls1_1_multi_block_encrypt()
/freebsd-14.2/contrib/file/src/
H A Dreadcdf.c569 goto out0; in file_trycdf()
664 out0: in file_trycdf()
/freebsd-14.2/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-generic.c863 goto out0; in spl_init()
907 out0: in spl_init()
/freebsd-14.2/sys/contrib/device-tree/src/arm/
H A Dam57xx-idk-common.dtsi62 led-out0 {
63 label = "out0";
H A Dam335x-icev2.dts50 led-out0 {
51 label = "out0";
H A Dam437x-idk-evm.dts123 led-out0 {
124 label = "out0";
H A Dr8a7792-wheat.dts87 hdmi-out0 {
/freebsd-14.2/sys/dev/isp/
H A Disp.c4009 #define ISP_FC_OPMAP(in0, out0) 0, 0, 0, in0, 0, 0, 0, out0 argument
4010 #define ISP_FC_OPMAP_HALF(in1, in0, out1, out0) 0, 0, in1, in0, 0, 0, out1, out0 argument
4011 …FC_OPMAP_FULL(in3, in2, in1, in0, out3, out2, out1, out0) in3, in2, in1, in0, out3, out2, out1, o… argument
/freebsd-14.2/sys/dev/qlnx/qlnxe/
H A Decore_cxt.c2453 goto out0; in ecore_cxt_dynamic_ilt_alloc()
2460 goto out0; in ecore_cxt_dynamic_ilt_alloc()
2536 out0: in ecore_cxt_dynamic_ilt_alloc()
/freebsd-14.2/sys/contrib/device-tree/src/arm64/rockchip/
H A Drk3568-pinctrl.dtsi315 clk32k_out0: clk32k-out0 {
H A Drk3588s-pinctrl.dtsi201 clk32k_out0: clk32k-out0 {
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DAttrDocs.td6531 zx_handle_t __attribute__((acquire_handle("zircon"))) * out0,