Searched refs:out (Results 1 - 25 of 2313) sorted by relevance

1234567891011>>

/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/sparc/pid/
H A Derr.D_PROC_ALIGN.misaligned.d38 pid$1:a.out:main:7
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/
H A Dtst.Bean.ksh40 java -cp test.jar TestBean TestBean.out
41 rm -f TestBean.out
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Derr.D_PROC_FUNC.badfunc.d38 pid$1:a.out:ahl_r00lz:entry
H A Derr.D_PROC_NAME.badname.d36 pid$1:a.out:main:beginning
/freebsd-10.0-release/contrib/binutils/gas/
H A Dflonum-copy.c25 flonum_copy (FLONUM_TYPE *in, FLONUM_TYPE *out) argument
30 out->sign = in->sign;
35 out->leader = out->low - 1; /* 0.0 case */
39 out_length = out->high - out->low;
50 memset ((char *) (out->low + in_length + 1), '\0',
54 memcpy ((void *) (out->low), (void *) (in->low),
56 out->exponent = in->exponent;
57 out
[all...]
/freebsd-10.0-release/cddl/contrib/dtracetoolkit/Code/Java/
H A DFunc_loop.java3 System.out.println("Function C");
8 System.out.println("Function B");
12 System.out.println("Function A");
/freebsd-10.0-release/contrib/binutils/libiberty/
H A Dmemcpy.c6 @deftypefn Supplemental void* memcpy (void *@var{out}, const void *@var{in}, size_t @var{length})
9 @var{out}. Returns a pointer to @var{out}.
21 memcpy (PTR out, const PTR in, size_t length) argument
23 bcopy(in, out, length);
24 return out;
/freebsd-10.0-release/contrib/gcclibs/libiberty/
H A Dmemcpy.c6 @deftypefn Supplemental void* memcpy (void *@var{out}, const void *@var{in}, size_t @var{length})
9 @var{out}. Returns a pointer to @var{out}.
21 memcpy (PTR out, const PTR in, size_t length) argument
23 bcopy(in, out, length);
24 return out;
/freebsd-10.0-release/crypto/openssl/crypto/seed/
H A Dseed_ecb.c54 void SEED_ecb_encrypt(const unsigned char *in, unsigned char *out, const SEED_KEY_SCHEDULE *ks, int enc) argument
57 SEED_encrypt(in, out, ks);
59 SEED_decrypt(in, out, ks);
/freebsd-10.0-release/crypto/openssl/util/
H A Derr-ins.pl12 @out="";
15 push(@out,$_);
21 print OUT @out;
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i386/pid/
H A Dtst.badinstr.d33 pid$1:a.out:badfunc:entry
/freebsd-10.0-release/crypto/openssl/crypto/asn1/
H A Dt_crl.c85 int X509_CRL_print(BIO *out, X509_CRL *x) argument
93 BIO_printf(out, "Certificate Revocation List (CRL):\n");
95 BIO_printf(out, "%8sVersion %lu (0x%lx)\n", "", l+1, l);
97 X509_signature_print(out, x->sig_alg, NULL);
99 BIO_printf(out,"%8sIssuer: %s\n","",p);
101 BIO_printf(out,"%8sLast Update: ","");
102 ASN1_TIME_print(out,X509_CRL_get_lastUpdate(x));
103 BIO_printf(out,"\n%8sNext Update: ","");
105 ASN1_TIME_print(out,X509_CRL_get_nextUpdate(x));
106 else BIO_printf(out,"NON
[all...]
H A Dt_x509a.c68 int X509_CERT_AUX_print(BIO *out, X509_CERT_AUX *aux, int indent) argument
75 BIO_printf(out, "%*sTrusted Uses:\n%*s",
78 if(!first) BIO_puts(out, ", ");
82 BIO_puts(out, oidstr);
84 BIO_puts(out, "\n");
85 } else BIO_printf(out, "%*sNo Trusted Uses.\n", indent, "");
88 BIO_printf(out, "%*sRejected Uses:\n%*s",
91 if(!first) BIO_puts(out, ", ");
95 BIO_puts(out, oidstr);
97 BIO_puts(out, "\
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/
H A Dtst.PartialDereferencing.d56 struct output_struct out;
65 out.oi = xlate < struct output_struct > (in).oi;
67 printf("out.oi: %d\t out.oc: %d\n", out.oi, out.oc);
71 /(100 != out.oi) || (0 != out.oc)/
77 /(100 == out.oi) && (0 == out
[all...]
H A Dtst.StructureAssignment.d56 struct output_struct out;
65 out = xlate < struct output_struct > (in);
67 printf("out.oi: %d\t out.oc: %d\n", out.oi, out.oc);
71 /(100 != out.oi) || (0 != out.oc)/
77 /(100 == out.oi) && (0 == out
[all...]
/freebsd-10.0-release/contrib/opie/libopie/
H A Dbtoa8.c21 char *opiebtoa8 FUNCTION((out, in), char *out AND struct opie_otpkey *inkey)
25 char *c = out;
33 return out;
/freebsd-10.0-release/contrib/sendmail/libsm/
H A Dt-fopen.c24 SM_FILE_T *out; local
27 out = sm_io_fopen("foo", O_WRONLY|O_APPEND|O_CREAT, 0666);
28 SM_TEST(out != NULL);
29 if (out != NULL)
31 (void) sm_io_fprintf(out, SM_TIME_DEFAULT, "foo\n");
32 r = sm_io_getinfo(out, SM_IO_WHAT_MODE, &m);
35 sm_io_close(out, SM_TIME_DEFAULT);
/freebsd-10.0-release/crypto/openssl/crypto/ecdh/
H A Decdhtest.c109 static void *KDF1_SHA1(const void *in, size_t inlen, void *out, size_t *outlen) argument
116 return SHA1(in, inlen, out);
123 static int test_ecdh_curve(int nid, const char *text, BN_CTX *ctx, BIO *out) argument
146 BIO_puts(out,"Testing key generation with ");
147 BIO_puts(out,text);
149 BIO_puts(out,"\n");
151 (void)BIO_flush(out);
169 BIO_puts(out," pri 1=");
170 BN_print(out,a->priv_key);
171 BIO_puts(out,"\
307 BIO *out; local
[all...]
/freebsd-10.0-release/tools/tools/shlib-compat/
H A Dshlib-compat-dirs.sh14 out=$3
40 $SHLIB_COMPAT --out-orig $out/$i.orig.c --out-new $out/$i.new.c -v "$@" \
41 $orig/$i $new/$i > $out/$i.cmp 2> $out/$i.err || true
42 remove_empty $out/$i.orig.c $out/$i.new.c $out/
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/modes/
H A Dcbc128.c66 void CRYPTO_cbc128_encrypt(const unsigned char *in, unsigned char *out, argument
73 assert(in && out && key && ivec);
77 ((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0) {
80 out[n] = in[n] ^ iv[n];
81 (*block)(out, out, key);
82 iv = out;
85 out += 16;
90 *(size_t*)(out+n) =
92 (*block)(out, ou
115 CRYPTO_cbc128_decrypt(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], block128_f block) argument
[all...]
/freebsd-10.0-release/contrib/xz/src/liblzma/common/
H A Dstream_flags_encoder.c17 stream_flags_encode(const lzma_stream_flags *options, uint8_t *out) argument
22 out[0] = 0x00;
23 out[1] = options->check;
30 lzma_stream_header_encode(const lzma_stream_flags *options, uint8_t *out)
39 memcpy(out, lzma_header_magic, sizeof(lzma_header_magic));
42 if (stream_flags_encode(options, out + sizeof(lzma_header_magic)))
46 const uint32_t crc = lzma_crc32(out + sizeof(lzma_header_magic),
49 unaligned_write32le(out + sizeof(lzma_header_magic)
57 lzma_stream_footer_encode(const lzma_stream_flags *options, uint8_t *out)
69 unaligned_write32le(out
[all...]
/freebsd-10.0-release/bin/dd/
H A Dposition.c137 if (out.flags & (ISSEEK | ISPIPE)) {
139 if (lseek(out.fd, out.offset * out.dbsz, SEEK_CUR) == -1 &&
141 err(1, "%s", out.name);
146 if (out.offset < 0)
150 if (out.flags & NOREAD) {
152 t_op.mt_count = out.offset;
154 if (ioctl(out.fd, MTIOCTOP, &t_op) == -1)
155 err(1, "%s", out
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/lhash/
H A Dlh_stats.c35 * The word 'cryptographic' can be left out if the rouines from the library
73 void lh_stats(LHASH *lh, FILE *out) argument
75 fprintf(out,"num_items = %lu\n",lh->num_items);
76 fprintf(out,"num_nodes = %u\n",lh->num_nodes);
77 fprintf(out,"num_alloc_nodes = %u\n",lh->num_alloc_nodes);
78 fprintf(out,"num_expands = %lu\n",lh->num_expands);
79 fprintf(out,"num_expand_reallocs = %lu\n",lh->num_expand_reallocs);
80 fprintf(out,"num_contracts = %lu\n",lh->num_contracts);
81 fprintf(out,"num_contract_reallocs = %lu\n",lh->num_contract_reallocs);
82 fprintf(out,"num_hash_call
99 lh_node_stats(LHASH *lh, FILE *out) argument
112 lh_node_usage_stats(LHASH *lh, FILE *out) argument
180 lh_stats_bio(const _LHASH *lh, BIO *out) argument
208 lh_node_stats_bio(const _LHASH *lh, BIO *out) argument
221 lh_node_usage_stats_bio(const _LHASH *lh, BIO *out) argument
[all...]
/freebsd-10.0-release/lib/libc/yp/
H A Dxdryp.c64 struct ypresp_all out; local
69 bzero(&out, sizeof out);
71 if (!xdr_ypresp_all(xdrs, &out)) {
72 xdr_free((xdrproc_t)xdr_ypresp_all, &out);
76 if (out.more == 0) {
77 xdr_free((xdrproc_t)xdr_ypresp_all, &out);
81 status = out.ypresp_all_u.val.stat;
84 key = (char *)malloc(out.ypresp_all_u.val.key.keydat_len + 1);
86 xdr_free((xdrproc_t)xdr_ypresp_all, &out);
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i386/ustack/
H A Dtst.annotated.d31 pid$1:a.out:baz:entry

Completed in 235 milliseconds

1234567891011>>