Home
last modified time | relevance | path

Searched full:out (Results 1 – 25 of 10978) sorted by relevance

12345678910>>...440

/freebsd/sys/contrib/libsodium/test/default/
H A Dchacha20.c25 unsigned char out[160]; in tv() local
37 crypto_stream_chacha20(out, sizeof out, nonce, key); in tv()
38 sodium_bin2hex(out_hex, sizeof out_hex, out, sizeof out); in tv()
40 for (plen = 1U; plen < sizeof out; plen++) { in tv()
42 crypto_stream_chacha20_xor(part, out, plen, nonce, key); in tv()
49 assert(66 <= sizeof out); in tv()
51 memset(out, (int) (plen & 0xff), sizeof out); in tv()
52 crypto_stream_chacha20(out, plen, nonce, key); in tv()
53 sodium_bin2hex(out_hex, sizeof out_hex, out, sizeof out); in tv()
56 randombytes_buf(out, sizeof out); in tv()
[all …]
/freebsd/usr.bin/ncal/tests/
H A DMakefile5 ${PACKAGE}FILES+= regress.b-3m200901-jd-nhl.out
6 ${PACKAGE}FILES+= regress.b-3m200901-md-nhl.out
7 ${PACKAGE}FILES+= regress.b-3m200902-jd-nhl.out
8 ${PACKAGE}FILES+= regress.b-3m200902-md-nhl.out
9 ${PACKAGE}FILES+= regress.b-3m200903-jd-nhl.out
10 ${PACKAGE}FILES+= regress.b-3m200903-md-nhl.out
11 ${PACKAGE}FILES+= regress.b-3m200904-jd-nhl.out
12 ${PACKAGE}FILES+= regress.b-3m200904-md-nhl.out
13 ${PACKAGE}FILES+= regress.b-3m200905-jd-nhl.out
14 ${PACKAGE}FILES+= regress.b-3m200905-md-nhl.out
[all …]
/freebsd/usr.bin/jot/tests/
H A DMakefile5 ${PACKAGE}FILES+= regress.ascii.out
6 ${PACKAGE}FILES+= regress.block.out
7 ${PACKAGE}FILES+= regress.dddd.out
8 ${PACKAGE}FILES+= regress.dddh.out
9 ${PACKAGE}FILES+= regress.ddhd.out
10 ${PACKAGE}FILES+= regress.ddhd2.out
11 ${PACKAGE}FILES+= regress.ddhh.out
12 ${PACKAGE}FILES+= regress.ddhh2.out
13 ${PACKAGE}FILES+= regress.dhdd.out
14 ${PACKAGE}FILES+= regress.dhdh.out
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/json/
H A Dtst.general.d.out5 out |<NULL>|
10 out |1|
12 out |<NULL>|
14 out |<NULL>|
16 out |<NULL>|
21 out |<NULL>|
26 out |1.5001|
31 out |16.3e10|
36 out |5|
41 out |16E10|
[all …]
/freebsd/crypto/openssl/crypto/aes/asm/
H A Daesni-mb-x86_64.pl83 open OUT,"| \"$^X\" \"$xlate\" $flavour \"$output\""
85 *STDOUT=*OUT;
88 # struct { void *inp,*out; int blocks; double iv[2]; } inp[8];
102 @out=map("%xmm$_",(2..5));
191 movdqu `$inp_elm_size*$i+2*$ptr_size+8-$inp_elm_size*2`($inp),@out[$i]
201 pxor $zero,@out[0]
203 pxor $zero,@out[1]
205 pxor $zero,@out[2]
207 pxor $zero,@out[3]
209 pxor @inp[0],@out[0]
[all …]
/freebsd/lib/libxo/tests/
H A DMakefile9 # Override the default suffix transformation rules for .c/.o -> .out
11 .SUFFIXES: .c .err .o .out .sh
16 .PATH.out: ${LIBXOSRC}/tests/core/saved
18 .c.out .o.out:
25 ${PACKAGE}FILES+= test_01.E.out
27 ${PACKAGE}FILES+= test_01.H.out
29 ${PACKAGE}FILES+= test_01.HIPx.out
31 ${PACKAGE}FILES+= test_01.HP.out
33 ${PACKAGE}FILES+= test_01.J.out
35 ${PACKAGE}FILES+= test_01.JP.out
[all …]
/freebsd/crypto/openssl/crypto/ec/asm/
H A Decp_nistp521-ppc64.pl33 open OUT,"| \"$^X\" $xlate $flavour $output";
34 *STDOUT=*OUT;
152 my @out = map("v$_",(55..63));
176 vmsumudm $out[0],$in1[0],$in2[0],$vzero
180 vmsumudm $out[1],$t1,$t2,$vzero
183 vmsumudm $out[2],$t1,$t2,$vzero
184 vmsumudm $out[2],$in1[2],$in2[0],$out[2]
187 vmsumudm $out[3],$t1,$t2,$vzero
190 vmsumudm $out[3],$t3,$t4,$out[3]
193 vmsumudm $out[4],$t1,$t2,$vzero
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DOpenACCKinds.h70 inline StreamTy &printOpenACCDirectiveKind(StreamTy &Out, in printOpenACCDirectiveKind() argument
74 return Out << "parallel"; in printOpenACCDirectiveKind()
77 return Out << "serial"; in printOpenACCDirectiveKind()
80 return Out << "kernels"; in printOpenACCDirectiveKind()
83 return Out << "data"; in printOpenACCDirectiveKind()
86 return Out << "enter data"; in printOpenACCDirectiveKind()
89 return Out << "exit data"; in printOpenACCDirectiveKind()
92 return Out << "host_data"; in printOpenACCDirectiveKind()
95 return Out << "loop"; in printOpenACCDirectiveKind()
98 return Out << "cache"; in printOpenACCDirectiveKind()
[all …]
/freebsd/sys/dev/mlx5/mlx5_core/
H A Dmlx5_port.c22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 u32 *out = NULL; in mlx5_core_access_reg() local
45 out = mlx5_vzalloc(outlen); in mlx5_core_access_reg()
46 if (!in || !out) in mlx5_core_access_reg()
47 goto out; in mlx5_core_access_reg()
57 err = mlx5_cmd_exec(dev, in, inlen, out, outlen); in mlx5_core_access_reg()
59 goto out; in mlx5_core_access_reg()
60 data = MLX5_ADDR_OF(access_register_out, out, register_data); in mlx5_core_access_reg()
63 out: in mlx5_core_access_reg()
64 kvfree(out); in mlx5_core_access_reg()
[all …]
H A Dmlx5_vport.c22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 u16 vport, u32 *out, int outlen) in _mlx5_query_vport_state() argument
50 err = mlx5_cmd_exec(mdev, in, sizeof(in), out, outlen); in _mlx5_query_vport_state()
59 u32 out[MLX5_ST_SZ_DW(query_vport_state_out)] = {0}; in mlx5_query_vport_state() local
61 _mlx5_query_vport_state(mdev, opmod, vport, out, sizeof(out)); in mlx5_query_vport_state()
63 return MLX5_GET(query_vport_state_out, out, state); in mlx5_query_vport_state()
69 u32 out[MLX5_ST_SZ_DW(query_vport_state_out)] = {0}; in mlx5_query_vport_admin_state() local
71 _mlx5_query_vport_state(mdev, opmod, vport, out, sizeof(out)); in mlx5_query_vport_admin_state()
73 return MLX5_GET(query_vport_state_out, out, admin_state); in mlx5_query_vport_admin_state()
81 u32 out[MLX5_ST_SZ_DW(modify_vport_state_out)] = {0}; in mlx5_modify_vport_admin_state() local
[all …]
H A Dmlx5_transobj.c22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 u32 out[MLX5_ST_SZ_DW(alloc_transport_domain_out)] = {0}; in mlx5_alloc_transport_domain() local
43 err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out)); in mlx5_alloc_transport_domain()
45 *tdn = MLX5_GET(alloc_transport_domain_out, out, in mlx5_alloc_transport_domain()
54 u32 out[MLX5_ST_SZ_DW(dealloc_transport_domain_out)] = {0}; in mlx5_dealloc_transport_domain() local
61 mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out)); in mlx5_dealloc_transport_domain()
66 u32 out[MLX5_ST_SZ_DW(create_rq_out)] = {0}; in mlx5_core_create_rq() local
71 err = mlx5_cmd_exec(dev, in, inlen, out, sizeof(out)); in mlx5_core_create_rq()
73 *rqn = MLX5_GET(create_rq_out, out, rqn); in mlx5_core_create_rq()
80 u32 out[MLX5_ST_SZ_DW(modify_rq_out)] = {0}; in mlx5_core_modify_rq() local
[all …]
/freebsd/cddl/usr.sbin/dtrace/tests/common/aggs/
H A DMakefile67 tst.aggencoding.d.out \
69 tst.agghist.d.out \
71 tst.aggpack.d.out \
73 tst.aggpackbanner.ksh.out \
75 tst.aggpackzoom.d.out \
77 tst.aggzoom.d.out \
79 tst.allquant.d.out \
81 tst.avg.d.out \
83 tst.avg_neg.d.out \
85 tst.clear.d.out \
[all …]
/freebsd/tests/sys/fs/fusefs/
H A Dlookup.cc27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
75 .WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) { in TEST_F() argument
76 SET_OUT_HEADER_LEN(out, entry); in TEST_F()
77 out.body.entry.nodeid = ino; in TEST_F()
78 out.body.entry.attr_valid = UINT64_MAX; in TEST_F()
79 out.body.entry.attr.ino = ino; // Must match nodeid in TEST_F()
80 out.body.entry.attr.mode = S_IFREG | 0644; in TEST_F()
81 out.body.entry.attr.size = 1; in TEST_F()
82 out.body.entry.attr.blocks = 2; in TEST_F()
83 out.body.entry.attr.atime = 3; in TEST_F()
[all …]
H A Dnfs.cc27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
83 .WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) { in TEST_F() argument
84 SET_OUT_HEADER_LEN(out, entry); in TEST_F()
85 out.body.entry.attr.mode = mode; in TEST_F()
86 out.body.entry.nodeid = ino; in TEST_F()
87 out.body.entry.generation = 1; in TEST_F()
88 out.body.entry.attr_valid = UINT64_MAX; in TEST_F()
89 out.body.entry.entry_valid = 0; in TEST_F()
94 .WillOnce(Invoke(ReturnImmediate([=](auto in __unused, auto& out) { in TEST_F() argument
95 SET_OUT_HEADER_LEN(out, entry); in TEST_F()
[all …]
H A Dsetattr.cc27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
89 .WillRepeatedly(Invoke(ReturnImmediate([=](auto in __unused, auto& out) { in TEST_F() argument
90 SET_OUT_HEADER_LEN(out, entry); in TEST_F()
91 out.body.entry.attr.mode = S_IFREG | 0644; in TEST_F()
92 out.body.entry.nodeid = ino; in TEST_F()
93 out.body.entry.entry_valid = UINT64_MAX; in TEST_F()
102 ).WillOnce(Invoke(ReturnImmediate([](auto in __unused, auto& out) { in TEST_F() argument
103 SET_OUT_HEADER_LEN(out, attr); in TEST_F()
104 out.body.attr.attr.ino = ino; // Must match nodeid in TEST_F()
105 out.body.attr.attr.mode = S_IFREG | newmode; in TEST_F()
[all …]
H A Dgetattr.cc27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
49 .WillRepeatedly(Invoke(ReturnImmediate([=](auto in __unused, auto& out) { in expect_lookup() argument
50 SET_OUT_HEADER_LEN(out, entry); in expect_lookup()
51 out.body.entry.attr.mode = mode; in expect_lookup()
52 out.body.entry.nodeid = ino; in expect_lookup()
53 out.body.entry.attr.nlink = 1; in expect_lookup()
54 out.body.entry.attr_valid = attr_valid; in expect_lookup()
55 out.body.entry.attr_valid_nsec = attr_valid_nsec; in expect_lookup()
56 out.body.entry.attr.size = size; in expect_lookup()
57 out.body.entry.entry_valid = UINT64_MAX; in expect_lookup()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclPrinter.cpp10 // AST back out to C/Objective-C/C++/Objective-C++ code.
30 raw_ostream &Out; member in __anond0616ced0111::DeclPrinter
54 DeclPrinter(raw_ostream &Out, const PrintingPolicy &Policy, in DeclPrinter() argument
57 : Out(Out), Policy(Policy), Context(Context), Indentation(Indentation), in DeclPrinter()
130 void Decl::print(raw_ostream &Out, unsigned Indentation, in print() argument
132 print(Out, getASTContext().getPrintingPolicy(), Indentation, PrintInstantiation); in print()
135 void Decl::print(raw_ostream &Out, const PrintingPolicy &Policy, in print() argument
137 DeclPrinter Printer(Out, Policy, getASTContext(), Indentation, in print()
142 void TemplateParameterList::print(raw_ostream &Out, const ASTContext &Context, in print() argument
144 print(Out, Context, Context.getPrintingPolicy(), OmitTemplateKW); in print()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DAsmWriter.cpp299 static void PrintCallingConv(unsigned cc, raw_ostream &Out) { in PrintCallingConv() argument
301 default: Out << "cc" << cc; break; in PrintCallingConv()
302 case CallingConv::Fast: Out << "fastcc"; break; in PrintCallingConv()
303 case CallingConv::Cold: Out << "coldcc"; break; in PrintCallingConv()
304 case CallingConv::AnyReg: Out << "anyregcc"; break; in PrintCallingConv()
305 case CallingConv::PreserveMost: Out << "preserve_mostcc"; break; in PrintCallingConv()
306 case CallingConv::PreserveAll: Out << "preserve_allcc"; break; in PrintCallingConv()
307 case CallingConv::PreserveNone: Out << "preserve_nonecc"; break; in PrintCallingConv()
308 case CallingConv::CXX_FAST_TLS: Out << "cxx_fast_tlscc"; break; in PrintCallingConv()
309 case CallingConv::GHC: Out << "ghccc"; break; in PrintCallingConv()
[all …]
/freebsd/crypto/libecc/src/nn/
H A Dnn_add.c23 * o out = in1 +/- in2 if cnd is not zero.
24 * o out = in1 if cnd is zero.
36 * in "out" and returning the carry in 'carry' parameter on success. This
41 * commutative, i.e. "_nn_cnd_add(cnd, out, in1, in2)" is not equivalent
42 * to "_nn_cnd_add(cnd, out, in2, in1)". It is commutative though if "cnd"
45 * Aliasing of inputs and output is possible. "out" is initialized if needed,
46 * that is if not aliased to 'in1' or 'in2'. The length of "out" is set to
50 * will be produced. The length of 'out' is not normalized on return.
60 ATTRIBUTE_WARN_UNUSED_RET static int _nn_cnd_add(int cnd, nn_t out, nn_src_t in1, nn_src_t in2, in _nn_cnd_add() argument
74 if ((out != in1) && (out != in2)) { in _nn_cnd_add()
[all …]
/freebsd/usr.bin/hexdump/tests/
H A DMakefile9 ${PACKAGE}FILES+= d_hexdump_bflag_a.out
10 ${PACKAGE}FILES+= d_hexdump_bflag_b.out
11 ${PACKAGE}FILES+= d_hexdump_bflag_c.out
12 ${PACKAGE}FILES+= d_hexdump_cflag_a.out
13 ${PACKAGE}FILES+= d_hexdump_cflag_b.out
14 ${PACKAGE}FILES+= d_hexdump_cflag_c.out
15 ${PACKAGE}FILES+= d_hexdump_dflag_a_el.out
16 ${PACKAGE}FILES+= d_hexdump_dflag_b_el.out
17 ${PACKAGE}FILES+= d_hexdump_dflag_c_el.out
18 ${PACKAGE}FILES+= d_hexdump_dflag_a_eb.out
[all …]
/freebsd/contrib/arm-optimized-routines/math/test/rtest/
H A Dsemi.h13 char *test_ceil(uint32 *in, uint32 *out);
14 char *test_floor(uint32 *in, uint32 *out);
15 char *test_fmod(uint32 *a, uint32 *b, uint32 *out);
16 char *test_ldexp(uint32 *x, uint32 *n, uint32 *out);
17 char *test_frexp(uint32 *x, uint32 *out, uint32 *nout);
19 char *test_ceilf(uint32 *in, uint32 *out);
20 char *test_floorf(uint32 *in, uint32 *out);
21 char *test_fmodf(uint32 *a, uint32 *b, uint32 *out);
22 char *test_ldexpf(uint32 *x, uint32 *n, uint32 *out);
23 char *test_frexpf(uint32 *x, uint32 *out, uint32 *nout);
[all …]
/freebsd/sys/dev/mlx5/mlx5_fpga/
H A Dmlx5fpga_cmd.c28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
47 u32 out[MLX5_FPGA_ACCESS_REG_SZ]; in mlx5_fpga_access_reg() local
62 err = mlx5_core_access_reg(dev, in, sizeof(in), out, sizeof(out), in mlx5_fpga_access_reg()
68 memcpy(buf, MLX5_ADDR_OF(fpga_access_reg, out, data), size); in mlx5_fpga_access_reg()
85 u32 out[MLX5_ST_SZ_DW(fpga_ctrl)]; in mlx5_fpga_ctrl_op() local
89 return mlx5_core_access_reg(dev, in, sizeof(in), out, sizeof(out), in mlx5_fpga_ctrl_op()
129 u32 out[MLX5_ST_SZ_DW(fpga_ctrl)]; in mlx5_fpga_ctrl_write() local
134 return mlx5_core_access_reg(dev, in, sizeof(in), out, sizeof(out), in mlx5_fpga_ctrl_write()
152 u32 out[MLX5_ST_SZ_DW(fpga_ctrl)]; in mlx5_fpga_query() local
155 err = mlx5_core_access_reg(dev, in, sizeof(in), out, sizeof(out), in mlx5_fpga_query()
[all …]
/freebsd/contrib/ofed/opensm/opensm/
H A Dosm_console.c30 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
68 void (*help_function) (FILE * out, int detail);
70 FILE * out);
77 void (*loop_function) (osm_opensm_t * p_osm, FILE * out);
95 static void help_command(FILE * out, int detail) in help_command() argument
99 fprintf(out, "Supported commands and syntax:\n"); in help_command()
100 fprintf(out, "help [<command>]\n"); in help_command()
103 console_cmds[i].help_function(out, 0); in help_command()
106 static void help_quit(FILE * out, int detail) in help_quit() argument
108 fprintf(out, "quit (not valid in local mode; use ctl-c)\n"); in help_quit()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DProgramPoint.cpp51 void ProgramPoint::printJson(llvm::raw_ostream &Out, const char *NL) const { in printJson() argument
58 Out << "\"kind\": \""; in printJson()
61 Out << "BlockEntrance\"" in printJson()
68 Out << "FunctionExit\"" in printJson()
73 Out << RS->getID(Context) << ", \"stmt\": "; in printJson()
74 RS->printJson(Out, nullptr, PP, AddQuotes); in printJson()
76 Out << "null, \"stmt\": null"; in printJson()
84 Out << "CallEnter\""; in printJson()
87 Out << "CallExitBegin\""; in printJson()
90 Out << "CallExitEnd\""; in printJson()
[all …]
/freebsd/usr.bin/calendar/tests/
H A DMakefile10 ${PACKAGE}FILES+= regress.comment.out
14 ${PACKAGE}FILES+= regress.cond.out
18 ${PACKAGE}FILES+= regress.a1.out
19 ${PACKAGE}FILES+= regress.a2.out
20 ${PACKAGE}FILES+= regress.a3.out
21 ${PACKAGE}FILES+= regress.a4.out
22 ${PACKAGE}FILES+= regress.a5.out
23 ${PACKAGE}FILES+= regress.b1.out
24 ${PACKAGE}FILES+= regress.b2.out
25 ${PACKAGE}FILES+= regress.b3.out
[all …]

12345678910>>...440