Searched refs:in (Results 201 - 225 of 4358) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/dev/mlx5/mlx5_core/
H A Dmlx5_fw.c4 * Redistribution and use in source and binary forms, with or without
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
35 u32 in[MLX5_ST_SZ_DW(query_adapter_in)]; local
38 memset(in, 0, sizeof(in));
40 MLX5_SET(query_adapter_in, in, opcode, MLX5_CMD_OP_QUERY_ADAPTER);
42 err = mlx5_cmd_exec(dev, in, sizeof(in), out, outlen);
94 u32 in[MLX5_ST_SZ_D local
239 u32 in[MLX5_ST_SZ_DW(init_hca_in)]; local
252 u32 in[MLX5_ST_SZ_DW(teardown_hca_in)] = {0}; local
262 u32 in[MLX5_ST_SZ_DW(teardown_hca_in)] = {0}; local
292 u32 in[MLX5_ST_SZ_DW(teardown_hca_in)] = {}; local
337 u32 in[MLX5_ST_SZ_DW(set_dc_cnak_trace_in)] = {0}; local
366 u32 in[MLX5_ST_SZ_DW(mcc_reg)]; local
384 u32 in[MLX5_ST_SZ_DW(mcc_reg)]; local
413 u32 *in; local
443 u32 in[MLX5_ST_SZ_DW(mcqi_reg)]; local
[all...]
/freebsd-11-stable/contrib/wpa/src/utils/
H A Dbase64.c27 const unsigned char *end, *in; local
44 in = src;
47 while (end - in >= 3) {
48 *pos++ = table[(in[0] >> 2) & 0x3f];
49 *pos++ = table[(((in[0] & 0x03) << 4) | (in[1] >> 4)) & 0x3f];
50 *pos++ = table[(((in[1] & 0x0f) << 2) | (in[2] >> 6)) & 0x3f];
51 *pos++ = table[in[2] & 0x3f];
52 in
[all...]
/freebsd-11-stable/crypto/openssl/crypto/modes/
H A Dmodes.h4 * Rights for redistribution and usage in source and binary
13 typedef void (*block128_f) (const unsigned char in[16],
16 typedef void (*cbc128_f) (const unsigned char *in, unsigned char *out,
20 typedef void (*ctr128_f) (const unsigned char *in, unsigned char *out,
24 typedef void (*ccm128_f) (const unsigned char *in, unsigned char *out,
29 void CRYPTO_cbc128_encrypt(const unsigned char *in, unsigned char *out,
32 void CRYPTO_cbc128_decrypt(const unsigned char *in, unsigned char *out,
36 void CRYPTO_ctr128_encrypt(const unsigned char *in, unsigned char *out,
42 void CRYPTO_ctr128_encrypt_ctr32(const unsigned char *in, unsigned char *out,
48 void CRYPTO_ofb128_encrypt(const unsigned char *in, unsigne
[all...]
/freebsd-11-stable/crypto/openssl/crypto/perlasm/
H A Dcbc.pl24 # for encrypt, the iv is kept in bigendian form,
25 # while for decrypt, it is kept in little endian.
40 $in="esi";
59 &mov($in, &DWP(0,"ebx","",0));# iv[0]
63 &push($in);
64 &push($out); # used in decrypt for iv[1]
65 &push($in); # used in decrypt for iv[0]
69 &mov($in, &wparam(0)); # in
[all...]
/freebsd-11-stable/contrib/apr/file_io/unix/
H A Dpipe.c5 * (the "License"); you may not use this file except in compliance with
10 * Unless required by applicable law or agreed to in writing, software
179 static apr_status_t file_pipe_create(apr_file_t **in, apr_file_t **out, argument
188 (*in) = (apr_file_t *)apr_pcalloc(pool_in, sizeof(apr_file_t));
189 (*in)->pool = pool_in;
190 (*in)->filedes = filedes[0];
191 (*in)->is_pipe = 1;
192 (*in)->fname = NULL;
193 (*in)->buffered = 0;
194 (*in)
226 file_pipe_block(apr_file_t **in, apr_file_t **out, apr_int32_t blocking) argument
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dgenmultilib12 #GCC is distributed in the hope that it will be useful, but WITHOUT
26 # The first argument is a list of sets of options. The elements in
30 # Each option in a set separated by slashes is mutually incompatible
32 # in the set.
33 # Each option in a set separated by pipes will be used for the library
34 # compilation and any of the options in the set will be sufficient
38 # the second argument is non-empty, there must be as many elements in
39 # the second argument as there are options in the first argument. The
40 # elements in the second list are separated by spaces. If the second
45 # identical. The elements in th
[all...]
H A Dmkmap-symver.awk11 # GCC is distributed in the hope that it will be useful, but WITHOUT
61 # describing version inheritence. A symbol may appear in more than
98 for (l in libs)
110 for (sym in ver)
111 if ((ver[sym] == lib) && (sym in def))
124 for (l in libs)
/freebsd-11-stable/contrib/netbsd-tests/fs/ffs/
H A Dquotas_common.sh5 for s in ${RUMP_SOCKETS_LIST}; do
/freebsd-11-stable/contrib/netbsd-tests/usr.bin/sort/
H A Dt_sort.sh6 # Redistribution and use in source and binary forms, with or without
11 # 2. Redistributions in binary form must reproduce the above copyright
12 # notice, this list of conditions and the following disclaimer in the
35 cat >in <<EOF
49 atf_check -o file:expout sort in
80 atf_set "descr" "Tests with missing new line in input file"
84 printf '%s' x >in
85 atf_check -o inline:'x\n' sort in
95 printf '\0b\n\0a\n' >in
96 atf_check -o inline:'\0a\n\0b\n' sort -S in
[all...]
/freebsd-11-stable/contrib/libxo/tests/
H A DMakefile.am4 # This SOFTWARE is licensed under the LICENSE provided in the
16 @(cur=`pwd` ; for dir in $(SUBDIRS) ; do \
23 @(cur=`pwd` ; for dir in $(SUBDIRS) ; do \
/freebsd-11-stable/contrib/bmake/unit-tests/
H A Dcond2.exp1 make: Bad conditional expression ` == "empty"' in == "empty"?oops:ok
6 make: stopped in unit-tests
/freebsd-11-stable/contrib/groff/font/devdvi/generate/
H A DCompileFonts2 # Compile fonts in the sizes needed by groff.
8 for f in $fonts; do
9 for s in $sizes; do
/freebsd-11-stable/sys/contrib/xz-embedded/linux/include/linux/decompress/
H A Dunxz.h13 int unxz(unsigned char *in, int in_size,
/freebsd-11-stable/libexec/bootpd/
H A Dtrylook.c8 #include <netinet/in.h>
26 struct in_addr in; local
38 if (lookup_ipa(argv[i], &in.s_addr))
41 a = inet_ntoa(in);
/freebsd-11-stable/crypto/openssh/
H A Dfixpaths15 die $0: error in command line arguments.
/freebsd-11-stable/crypto/openssh/regress/
H A Dssh2putty.sh22 openssl rsa -noout -text -in $KEYFILE | grep ^publicExponent |
28 openssl rsa -noout -modulus -in $KEYFILE | grep ^Modulus= |
/freebsd-11-stable/crypto/openssl/crypto/cast/
H A Dcast.h11 * apply to all code found in this distribution, be it the RC4, RSA,
16 * Copyright remains Eric Young's, and as such any Copyright notices in
18 * If this package is used in a product, Eric Young should be given attribution
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
89 void CAST_ecb_encrypt(const unsigned char *in, unsigned char *out,
93 void CAST_cbc_encrypt(const unsigned char *in, unsigne
[all...]
/freebsd-11-stable/etc/periodic/daily/
H A D404.status-zfs6 # If there is a global system configuration file, suck it in.
14 case "$daily_status_zfs_enable" in
19 case "$daily_status_zfs_zpool_list_enable" in
H A D420.status-network6 # If there is a global system configuration file, suck it in.
14 case "$daily_status_network_enable" in
20 case "$daily_status_network_usedns" in
/freebsd-11-stable/etc/rc.d/
H A Dbridge5 # Redistribution and use in source and binary forms, with or without
10 # 2. Redistributions in binary form must reproduce the above copyright
11 # notice, this list of conditions and the following disclaimer in the
42 case "$1" in
54 for i in ${interfaces}; do
71 for br in ${autobridge_interfaces}; do
72 for i in $iflist; do
H A Dlocalpkg22 # For each dir in $local_startup, search for init scripts matching *.sh
24 case ${local_startup} in
30 for script in ${zlist} ${slist}; do
52 case ${local_startup} in
58 for script in `reverse_list ${slist} ${zlist}`; do
H A Dnisdomain5 # Redistribution and use in source and binary forms, with or without
10 # 2. Redistributions in binary form must reproduce the above copyright
11 # notice, this list of conditions and the following disclaimer in the
44 case ${nisdomainname} in
/freebsd-11-stable/gnu/usr.bin/groff/
H A DMakefile5 .for subdir in ${SUBDIR:Nsrc}
/freebsd-11-stable/gnu/usr.bin/groff/src/
H A DMakefile7 .for subdir in ${SUBDIR:Nlibs}
/freebsd-11-stable/sys/xen/interface/io/
H A Dconsole.h8 * deal in the Software without restriction, including without limitation the
13 * The above copyright notice and this permission notice shall be included in
35 char in[1024]; member in struct:xencons_interface

Completed in 151 milliseconds

1234567891011>>