Searched refs:out (Results 101 - 125 of 2491) sorted by relevance

1234567891011>>

/freebsd-10.2-release/contrib/ofed/management/opensm/opensm/
H A Dosm_console.c59 void (*help_function) (FILE * out, int detail);
61 FILE * out);
68 void (*loop_function) (osm_opensm_t * p_osm, FILE * out);
82 static void help_command(FILE * out, int detail) argument
86 fprintf(out, "Supported commands and syntax:\n");
87 fprintf(out, "help [<command>]\n");
90 console_cmds[i].help_function(out, 0);
93 static void help_quit(FILE * out, int detail) argument
95 fprintf(out, "quit (not valid in local mode; use ctl-c)\n");
98 static void help_loglevel(FILE * out, in argument
127 help_priority(FILE * out, int detail) argument
132 help_resweep(FILE * out, int detail) argument
137 help_reroute(FILE * out, int detail) argument
145 help_status(FILE * out, int detail) argument
153 help_logflush(FILE * out, int detail) argument
158 help_querylid(FILE * out, int detail) argument
164 help_portstatus(FILE * out, int detail) argument
175 help_switchbalance(FILE * out, int detail) argument
186 help_lidbalance(FILE * out, int detail) argument
196 help_dump_conf(FILE *out, int detail) argument
205 help_perfmgr(FILE * out, int detail) argument
228 help_parse(char **p_last, osm_opensm_t * p_osm, FILE * out) argument
251 loglevel_parse(char **p_last, osm_opensm_t * p_osm, FILE * out) argument
280 priority_parse(char **p_last, osm_opensm_t * p_osm, FILE * out) argument
328 print_status(osm_opensm_t * p_osm, FILE * out) argument
411 status_parse(char **p_last, osm_opensm_t * p_osm, FILE * out) argument
431 resweep_parse(char **p_last, osm_opensm_t * p_osm, FILE * out) argument
447 reroute_parse(char **p_last, osm_opensm_t * p_osm, FILE * out) argument
453 logflush_parse(char **p_last, osm_opensm_t * p_osm, FILE * out) argument
458 querylid_parse(char **p_last, osm_opensm_t * p_osm, FILE * out) argument
540 __print_port_report(FILE * out, port_report_t * head) argument
673 portstatus_parse(char **p_last, osm_opensm_t * p_osm, FILE * out) argument
756 switchbalance_check(osm_opensm_t * p_osm, osm_switch_t * p_sw, FILE * out, int verbose) argument
851 switchbalance_parse(char **p_last, osm_opensm_t * p_osm, FILE * out) argument
898 lidbalance_check(osm_opensm_t * p_osm, osm_switch_t * p_sw, FILE * out) argument
1058 lidbalance_parse(char **p_last, osm_opensm_t * p_osm, FILE * out) argument
1097 dump_conf_parse(char **p_last, osm_opensm_t * p_osm, FILE * out) argument
1103 perfmgr_parse(char **p_last, osm_opensm_t * p_osm, FILE * out) argument
1163 quit_parse(char **p_last, osm_opensm_t * p_osm, FILE * out) argument
1168 help_version(FILE * out, int detail) argument
1173 version_parse(char **p_last, osm_opensm_t * p_osm, FILE * out) argument
1205 FILE *out = p_osm->console.out; local
[all...]
/freebsd-10.2-release/crypto/openssl/crypto/evp/
H A De_des.c35 * The word 'cryptographic' can be left out if the rouines from the library
77 static int des_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, argument
81 DES_ecb_encrypt((DES_cblock *)(in + i), (DES_cblock *)(out + i),
86 static int des_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, argument
90 DES_ofb64_encrypt(in, out, (long)EVP_MAXCHUNK, ctx->cipher_data,
94 out += EVP_MAXCHUNK;
97 DES_ofb64_encrypt(in, out, (long)inl, ctx->cipher_data,
102 static int des_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, argument
106 DES_ncbc_encrypt(in, out, (long)EVP_MAXCHUNK, ctx->cipher_data,
110 out
118 des_cfb64_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) argument
138 des_cfb1_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) argument
166 des_cfb8_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) argument
[all...]
/freebsd-10.2-release/crypto/openssl/crypto/pkcs12/
H A Dp12_decr.c78 unsigned char *out; local
91 if (!(out = OPENSSL_malloc(inlen + EVP_CIPHER_CTX_block_size(&ctx)))) {
96 if (!EVP_CipherUpdate(&ctx, out, &i, in, inlen)) {
97 OPENSSL_free(out);
98 out = NULL;
104 if (!EVP_CipherFinal_ex(&ctx, out + i, &i)) {
105 OPENSSL_free(out);
106 out = NULL;
115 *data = out;
118 return out;
131 unsigned char *out; local
[all...]
/freebsd-10.2-release/crypto/openssl/apps/
H A Decparam.c94 * -out arg - output file - default stdout
131 BIO *in = NULL, *out = NULL; local
167 } else if (strcmp(*argv, "-out") == 0) {
242 BIO_printf(bio_err, " -out arg output file - "
285 out = BIO_new(BIO_s_file());
286 if ((in == NULL) || (out == NULL)) {
300 BIO_set_fp(out, stdout, BIO_NOCLOSE);
304 out = BIO_push(tmpbio, out);
308 if (BIO_write_filename(out, outfil
631 ecparam_print_var(BIO *out, BIGNUM *in, const char *var, int len, unsigned char *buffer) argument
[all...]
/freebsd-10.2-release/lib/libz/
H A Dinffast.c33 Decode literal, length, and distance codes and write out the resulting
50 LEN -- ran out of enough output space or enough available input
74 unsigned char FAR *out; /* local strm->next_out */ local
76 unsigned char FAR *end; /* while out < end, enough space available */
101 out = strm->next_out - OFF;
102 beg = out - (start - strm->avail_out);
103 end = out + (strm->avail_out - 257);
137 PUP(out) = (unsigned char)(here.val);
186 op = (unsigned)(out - beg); /* max distance in output */
199 PUP(out)
[all...]
/freebsd-10.2-release/contrib/netbsd-tests/lib/libc/net/
H A Dt_protoent.sh82 "$(atf_get_srcdir)/h_protoent" | sed 's/ *$//' | sort >out
84 diff -u exp out || \
/freebsd-10.2-release/contrib/netbsd-tests/lib/libc/stdlib/
H A Dt_atexit.sh35 $(atf_get_srcdir)/h_atexit >out \
47 diff -Nru exp out \
/freebsd-10.2-release/contrib/netbsd-tests/usr.bin/cut/
H A Dt_cut.sh53 h_run "$(atf_get_srcdir)/d_cut.in" > out
54 h_check out "$(atf_get_srcdir)/d_basic.out"
64 h_run "$(atf_get_srcdir)/d_cut.in" -s > out
65 h_check out "$(atf_get_srcdir)/d_sflag.out"
75 h_run "$(atf_get_srcdir)/d_cut.in" -d ":" > out
76 h_check out "$(atf_get_srcdir)/d_dflag.out"
86 h_run "$(atf_get_srcdir)/d_cut.in" -d ":" -s > out
[all...]
/freebsd-10.2-release/contrib/xz/src/liblzma/simple/
H A Dsimple_encoder.c26 lzma_simple_props_encode(const void *options, uint8_t *out) argument
35 unaligned_write32le(out, opt->start_offset);
/freebsd-10.2-release/crypto/openssl/crypto/camellia/
H A Dcmll_ctr.c55 void Camellia_ctr128_encrypt(const unsigned char *in, unsigned char *out, argument
62 CRYPTO_ctr128_encrypt(in, out, length, key, ivec, ecount_buf, num,
H A Dcmll_ofb.c84 * The word 'cryptographic' can be left out if the rouines from the library
116 void Camellia_ofb128_encrypt(const unsigned char *in, unsigned char *out, argument
120 CRYPTO_ofb128_encrypt(in, out, length, key, ivec, num,
/freebsd-10.2-release/crypto/openssl/crypto/modes/
H A Dofb128.c67 void CRYPTO_ofb128_encrypt(const unsigned char *in, unsigned char *out, argument
74 assert(in && out && key && ivec && num);
82 *(out++) = *(in++) ^ ivec[n];
87 if (((size_t)in | (size_t)out | (size_t)ivec) % sizeof(size_t) !=
94 *(size_t *)(out + n) =
97 out += 16;
104 out[n] = in[n] ^ ivec[n];
118 out[l] = in[l] ^ ivec[n];
/freebsd-10.2-release/crypto/openssl/crypto/pkcs7/
H A Dbio_pk7.c67 BIO *BIO_new_PKCS7(BIO *out, PKCS7 *p7) argument
69 return BIO_new_NDEF(out, (ASN1_VALUE *)p7, ASN1_ITEM_rptr(PKCS7));
/freebsd-10.2-release/crypto/openssl/crypto/seed/
H A Dseed_cfb.c84 * The word 'cryptographic' can be left out if the rouines from the library
111 void SEED_cfb128_encrypt(const unsigned char *in, unsigned char *out, argument
116 CRYPTO_cfb128_encrypt(in, out, len, ks, ivec, num, enc,
H A Dseed_ofb.c84 * The word 'cryptographic' can be left out if the rouines from the library
111 void SEED_ofb128_encrypt(const unsigned char *in, unsigned char *out, argument
115 CRYPTO_ofb128_encrypt(in, out, len, ks, ivec, num,
/freebsd-10.2-release/contrib/telnet/libtelnet/
H A Dpk.h58 extern void pk_encode(char *in, char *out, DesData *deskey);
59 extern void pk_decode(char *in, char *out, DesData *deskey);
/freebsd-10.2-release/contrib/binutils/ld/emulparams/
H A Di386pe_posix.sh8 EXECUTABLE_NAME=a.out
/freebsd-10.2-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.coverage.d44 pid$1:a.out::
H A Dtst.float.d43 pid$1:a.out:main:
H A Dtst.fork.d37 pid$1:a.out:waiting:entry
51 pid$1:a.out:go:
61 out++;
66 /out == 2/
83 trace("test timed out");
H A Dtst.gcc.d45 pid$1:a.out::
/freebsd-10.2-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/
H A Dtst.TranslateSelf.d52 struct output_struct out;
57 out.myi = 1234;
58 out.myc = 'a';
61 outer = xlate < struct output_struct > (out);
/freebsd-10.2-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i386/pid/
H A Dtst.branch.d40 pid$1:a.out:waiting:entry
47 pid$1:a.out:main:,
48 pid$1:a.out:other:
52 pid$1:a.out:bad:entry
75 trace("test timed out");
/freebsd-10.2-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/sparc/pid/
H A Dtst.branch.d40 pid$1:a.out:waiting:entry
47 pid$1:a.out:main:,
48 pid$1:a.out:other:
52 pid$1:a.out:bad:entry
75 trace("test timed out");
/freebsd-10.2-release/tools/build/make_check/
H A Dcheck.mk9 ${MK} ${MK_ARG} 2>&1 | tee out-new
11 make ${MK_ARG} 2>&1 | tee out-old
13 diff -s out-old out-new

Completed in 137 milliseconds

1234567891011>>