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

1234567891011>>

/opensolaris-onvv-gate/usr/src/common/openssl/crypto/bf/
H A Dbf_ecb.c35 * The word 'cryptographic' can be left out if the rouines from the library
81 void BF_ecb_encrypt(const unsigned char *in, unsigned char *out, argument
92 l=d[0]; l2n(l,out);
93 l=d[1]; l2n(l,out);
H A Dblowfish.h35 * The word 'cryptographic' can be left out if the rouines from the library
113 void BF_ecb_encrypt(const unsigned char *in, unsigned char *out,
115 void BF_cbc_encrypt(const unsigned char *in, unsigned char *out, long length,
117 void BF_cfb64_encrypt(const unsigned char *in, unsigned char *out, long length,
119 void BF_ofb64_encrypt(const unsigned char *in, unsigned char *out, long length,
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/cast/
H A Dc_ecb.c35 * The word 'cryptographic' can be left out if the rouines from the library
65 void CAST_ecb_encrypt(const unsigned char *in, unsigned char *out, argument
76 l=d[0]; l2n(l,out);
77 l=d[1]; l2n(l,out);
H A Dcast.h35 * The word 'cryptographic' can be left out if the rouines from the library
88 void CAST_ecb_encrypt(const unsigned char *in,unsigned char *out,CAST_KEY *key,
92 void CAST_cbc_encrypt(const unsigned char *in, unsigned char *out, long length,
94 void CAST_cfb64_encrypt(const unsigned char *in, unsigned char *out,
97 void CAST_ofb64_encrypt(const unsigned char *in, unsigned char *out,
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/des/
H A Decb3_enc.c35 * The word 'cryptographic' can be left out if the rouines from the library
69 unsigned char *out = &(*output)[0]; local
81 l2c(l0,out);
82 l2c(l1,out);
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/idea/
H A Di_ecb.c35 * The word 'cryptographic' can be left out if the rouines from the library
73 void idea_ecb_encrypt(const unsigned char *in, unsigned char *out, argument
81 l0=d[0]; l2n(l0,out);
82 l1=d[1]; l2n(l1,out);
H A Didea.h35 * The word 'cryptographic' can be left out if the rouines from the library
84 void idea_ecb_encrypt(const unsigned char *in, unsigned char *out,
88 void idea_cbc_encrypt(const unsigned char *in, unsigned char *out,
90 void idea_cfb64_encrypt(const unsigned char *in, unsigned char *out,
93 void idea_ofb64_encrypt(const unsigned char *in, unsigned char *out,
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/rc2/
H A Drc2_ecb.c35 * The word 'cryptographic' can be left out if the rouines from the library
73 void RC2_ecb_encrypt(const unsigned char *in, unsigned char *out, RC2_KEY *ks, argument
84 l=d[0]; l2c(l,out);
85 l=d[1]; l2c(l,out);
H A Drc2.h35 * The word 'cryptographic' can be left out if the rouines from the library
84 void RC2_ecb_encrypt(const unsigned char *in,unsigned char *out,RC2_KEY *key,
88 void RC2_cbc_encrypt(const unsigned char *in, unsigned char *out, long length,
90 void RC2_cfb64_encrypt(const unsigned char *in, unsigned char *out,
93 void RC2_ofb64_encrypt(const unsigned char *in, unsigned char *out,
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/rc5/
H A Drc5_ecb.c35 * The word 'cryptographic' can be left out if the rouines from the library
65 void RC5_32_ecb_encrypt(const unsigned char *in, unsigned char *out, argument
76 l=d[0]; l2c(l,out);
77 l=d[1]; l2c(l,out);
H A Drc5.h35 * The word 'cryptographic' can be left out if the rouines from the library
100 void RC5_32_ecb_encrypt(const unsigned char *in,unsigned char *out,RC5_32_KEY *key,
104 void RC5_32_cbc_encrypt(const unsigned char *in, unsigned char *out,
107 void RC5_32_cfb64_encrypt(const unsigned char *in, unsigned char *out,
110 void RC5_32_ofb64_encrypt(const unsigned char *in, unsigned char *out,
/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/cli/common/
H A DDhcpCliPrint.java41 System.out.println(msg);
/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/ui/
H A DImageButton.java57 ByteArrayOutputStream out = new ByteArrayOutputStream(1024);
61 out.write(buffer, 0, n);
64 out.flush();
65 buffer = out.toByteArray();
/opensolaris-onvv-gate/usr/src/cmd/dtrace/test/tst/common/pid/
H A Dtst.ret1.d56 pid$1:a.out:go:return
62 pid$1:a.out:go:return
71 trace("test timed out");
H A Dtst.ret2.d56 pid$1:a.out:go:return
62 pid$1:a.out:go:return
71 trace("test timed out");
H A Dtst.vfork.d37 pid$1:a.out:waiting:entry
50 pid$1:a.out:go:
/opensolaris-onvv-gate/usr/src/cmd/dtrace/test/tst/i386/pid/
H A Dtst.retlist.ksh41 match=`$dtrace -l -n pid$PID:a.out:simple: -n pid$PID:a.out:complex: | wc -l`
/opensolaris-onvv-gate/usr/src/cmd/idmap/idmapd/
H A Didmap_lsa.c94 goto out;
98 goto out;
106 goto out;
111 goto out;
116 goto out;
122 goto out;
127 out:
166 goto out;
177 goto out;
181 goto out;
[all...]
/opensolaris-onvv-gate/usr/src/cmd/ipf/examples/
H A Dexample.97 # only allow packets in and out on le1 which are top secret
9 block out on le1 all
10 pass out on le1 all with opt sec-class topsecret
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/comp/
H A Dcomp.h20 unsigned char *out, unsigned int olen,
23 unsigned char *out, unsigned int olen,
44 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
46 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
/opensolaris-onvv-gate/usr/src/lib/fm/topo/modules/common/ipmi/
H A Dipmi_methods.c64 nvlist_t **out)
66 if (topo_mod_nvalloc(mod, out, NV_UNIQUE_NAME) != 0) {
67 topo_mod_dprintf(mod, "Failed to allocate 'out' nvlist\n");
70 if (nvlist_add_string(*out, TOPO_PROP_VAL_NAME, propname) != 0) {
73 nvlist_free(*out);
76 if (nvlist_add_uint32(*out, TOPO_PROP_VAL_TYPE, type)
80 nvlist_free(*out);
84 if (nvlist_add_string(*out, TOPO_PROP_VAL_VAL, (char *)buf)
88 nvlist_free(*out);
92 if (nvlist_add_nvlist(*out, TOPO_PROP_VAL_VA
63 store_prop_val(topo_mod_t *mod, void *buf, char *propname, topo_type_t type, nvlist_t **out) argument
127 ipmi_fru_label(topo_mod_t *mod, tnode_t *node, topo_version_t vers, nvlist_t *in, nvlist_t **out) argument
175 ipmi_fru_fmri(topo_mod_t *mod, tnode_t *node, topo_version_t vers, nvlist_t *in, nvlist_t **out) argument
[all...]
/opensolaris-onvv-gate/usr/src/lib/fm/topo/modules/sun4/pcibus/
H A Dpci_sun4.h40 pci_fru_compute(topo_mod_t *mod, tnode_t *node, nvlist_t *in, nvlist_t **out);
/opensolaris-onvv-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Dinit_keyblock.c39 size_t length, krb5_keyblock **out)
43 assert (out);
44 *out = NULL;
67 *out = kb;
37 krb5_init_keyblock(krb5_context context, krb5_enctype enctype, size_t length, krb5_keyblock **out) argument
/opensolaris-onvv-gate/usr/src/lib/libbc/libc/gen/sys5/
H A Dnlist.c30 #include <a.out.h>
/opensolaris-onvv-gate/usr/src/uts/common/xen/public/io/
H A Dconsole.h36 char out[2048]; member in struct:xencons_interface

Completed in 270 milliseconds

1234567891011>>