Searched refs:output (Results 101 - 125 of 293) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/common/crypto/md4/
H A Dmd4.c263 * Encodes input (uint32_t) into output (unsigned char). Assumes len is
267 Encode(unsigned char *output, uint32_t *input, unsigned int len) argument
273 *(uint32_t *)(void *)&output[j] = input[i];
276 output[j] = (unsigned char)(input[i] & 0xff);
277 output[j+1] = (unsigned char)((input[i] >> 8) & 0xff);
278 output[j+2] = (unsigned char)((input[i] >> 16) & 0xff);
279 output[j+3] = (unsigned char)((input[i] >> 24) & 0xff);
285 * Decodes input (unsigned char) into output (uint32_t). Assumes len is
289 Decode(uint32_t *output, unsigned char *input, unsigned int len) argument
295 output[
[all...]
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dzfs_sha256.c231 Encode64(uint8_t *output, uint64_t *input, size_t len) argument
235 output[j] = (input[i] >> 56) & 0xff;
236 output[j + 1] = (input[i] >> 48) & 0xff;
237 output[j + 2] = (input[i] >> 40) & 0xff;
238 output[j + 3] = (input[i] >> 32) & 0xff;
239 output[j + 4] = (input[i] >> 24) & 0xff;
240 output[j + 5] = (input[i] >> 16) & 0xff;
241 output[j + 6] = (input[i] >> 8) & 0xff;
242 output[j + 7] = input[i] & 0xff;
248 * between them pass the appropriate initial values for 'H'. The output
[all...]
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dsha256.c232 Encode64(uint8_t *output, uint64_t *input, size_t len) argument
236 output[j] = (input[i] >> 56) & 0xff;
237 output[j + 1] = (input[i] >> 48) & 0xff;
238 output[j + 2] = (input[i] >> 40) & 0xff;
239 output[j + 3] = (input[i] >> 32) & 0xff;
240 output[j + 4] = (input[i] >> 24) & 0xff;
241 output[j + 5] = (input[i] >> 16) & 0xff;
242 output[j + 6] = (input[i] >> 8) & 0xff;
243 output[j + 7] = input[i] & 0xff;
249 * between them pass the appropriate initial values for 'H'. The output
[all...]
/illumos-gate/usr/src/lib/gss_mechs/mech_dh/backend/mech/
H A DMICwrap.c54 gss_buffer_t token /* output token */)
99 * Build the the output token from the message the diffie-hellman
218 gss_buffer_t output /* Contains the ouputed DH_WRAP token*/)
283 /* Serialize the token tok into output using the session keys */
284 if ((*minor = __make_token(output, NULL, &tok, &keys)) != DH_SUCCESS) {
307 gss_buffer_t output, /* The unwrapped message */
321 if (minor == 0 || conf_state == 0 || output == GSS_C_NO_BUFFER)
370 * Unwrap the message putting the result in output. We use the
378 *conf_state, &keys, output))
303 __dh_gss_unseal(void *ctx, OM_uint32 *minor, gss_ctx_id_t context, gss_buffer_t input, gss_buffer_t output, int *conf_state, int *qop_used ) argument
H A Dcrypto.c350 * encrypt the check sum if they are available. The output is place
442 * The output message looks like:
470 /* Allocate the output buffer and set the length */
489 * __QOPSeal: Wrap the input message placing the output in output given
498 gss_buffer_t output, /* The wraped message */
511 if ((stat = wrap_msg_body(input, output))
541 * __QOPUnSeal: Unwrap the input message into output using the supplied QOP.
542 * Note it is the callers responsibility to release the allocated output
551 gss_buffer_t output /* Th
494 __QOPSeal(dh_qop_t qop, gss_buffer_t input, int conf_req, dh_key_set_t keys, gss_buffer_t output, int *conf_ret ) argument
[all...]
/illumos-gate/usr/src/grub/grub-0.97/netboot/
H A Dpnic.c44 * discovering the output length then you're expecting a fixed amount
50 void *output, uint16_t output_max_length,
68 /* Retrieve output length */
79 if ( output != NULL ) {
81 printf ( "pnic_command %#hx: output buffer too small "
86 /* Retrieve output data */
88 ((char*)output)[i] =
97 void *output, uint16_t output_max_length,
102 output, output_max_length,
48 pnic_command_quiet( struct nic *nic, uint16_t command, void *input, uint16_t input_length, void *output, uint16_t output_max_length, uint16_t *output_length ) argument
95 pnic_command( struct nic *nic, uint16_t command, void *input, uint16_t input_length, void *output, uint16_t output_max_length, uint16_t *output_length ) argument
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/
H A Dcombine_keys.c40 * rnd = n-fold(R1 | R2) [ Note: output size of nfold must be appropriately
83 unsigned char *r1, *r2, *combined, *rnd, *output; local
139 if ((output = (unsigned char *) malloc(keylength)) == NULL) {
214 tkey.contents = output;
242 * the existing keys as the output key, _or_ pass in a blank keyblock
270 printf("output =");
284 memset(output, 0, keylength);
290 free(output);
/illumos-gate/usr/src/cmd/mandoc/
H A Dmanpath.c75 /* Read in as much output as we can. */
201 free(conf->output.includes);
202 free(conf->output.man);
203 free(conf->output.paper);
204 free(conf->output.style);
211 const char *const toks[] = { "manpath", "output", "_whatdb" };
259 case 1: /* output */
260 manconf_output(&conf->output, cp);
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/include/
H A Dk5-int.h121 * are output by the mech. Note, more than one logging level can be used by
781 keylength is the output size */
788 krb5_const krb5_data *input, krb5_data *output);
793 krb5_const krb5_data *input, krb5_data *output);
811 krb5_data *output);
822 krb5_const krb5_data *input, krb5_data *output);
845 krb5_const krb5_data *input, krb5_data *output);
901 the output size indicated by the hash provider, but we may want
1696 krb5_const krb5_data *input, krb5_data *output);
2029 (const krb5_data *output, krb5_keybloc
[all...]
/illumos-gate/usr/src/lib/libsasl/include/
H A Dplugin_common.h155 unsigned numiov, buffer_info_t **output);
196 char **output, unsigned *outputsize, unsigned *outputlen,
199 char **output, unsigned *outputlen));
/illumos-gate/usr/src/cmd/mdb/test/
H A Dmtest.sh42 -o dir Sets 'dir' as the output directory
44 -k Keep output from all tests, not just failures
61 mkdir -p $mt_outdir || fatal "failed to make output dir $mt_outdir"
87 # This is the file format for checking output against.
98 mkdir -p "$odir" >/dev/null || fatal "can't make output directory"
120 "failed to move test output directory"
122 "failed to copy test into output directory"
148 output directory: $mt_outdir
159 "failed to remove test output directory"
/illumos-gate/usr/src/cmd/acct/
H A Dacctdusg.c68 static void output(void);
124 output();
181 output(void) function
H A Dacctprc.c35 * writes std. output (tacct format)
63 void output(void);
104 output();
170 output(void) function
H A Dacctmerg.c33 * -a output in tacct.h/ascii (instead of tacct.h)
36 * -t output single record that totals all input
38 * -v output in verbose tacct.h/ascii
42 * or all records if -t], writes to std. output
72 void output(struct tacct *);
135 output(&tt);
186 output(&tc);
206 output(struct tacct *tp) function
/illumos-gate/usr/src/cmd/sh/
H A Dprint.c73 write(output, as, length(as) - 1);
81 write(output, &c, 1);
98 write(output, mb, len);
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/crypto/keyhash_provider/
H A Dhmac_md5.c47 const krb5_data *input, krb5_data *output)
127 ret = krb5_hmac (context, &krb5int_hash_md5, &ks, 1, &md5tmp, output);
44 k5_hmac_md5_hash(krb5_context context, const krb5_keyblock *key, krb5_keyusage usage, const krb5_data *iv, const krb5_data *input, krb5_data *output) argument
/illumos-gate/usr/src/grub/grub-0.97/
H A Dcompile43 arguments, and rename the output as expected.
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_lex.l65 * We need to undefine lex's input, unput, and output macros so that references
77 #ifdef output
78 #undef output
83 static void output(int);
650 output(int c)
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/ustack/
H A Dtst.depth.ksh101 echo $tst: output was too short
/illumos-gate/usr/src/cmd/backup/restore/
H A Dinteractive.c350 char output[MAXCOMPLEXLEN]; local
443 (void) snprintf(output, sizeof (output), "%s/%s",
445 canon(output, name, namesiz);
465 copynext(input, output, outsize)
466 char *input, *output;
478 bp = output;
479 limit = output + outsize - 1; /* -1 for the trailing \0 */
515 if ((strlen(output) + 2) > outsize) {
518 memset(output,
746 FILE *output = stderr; local
[all...]
/illumos-gate/usr/src/uts/common/io/audio/impl/
H A Daudio_output.c28 * Purpose: Virtual mixing audio output routines
30 * This file contains the actual mixing and resampling engine for output.
147 * if output after limiter is clamped, then it
274 auimpl_output_callback_impl(audio_engine_t *eng, audio_client_t **output, argument
406 if (output && (c->c_output != NULL) &&
409 c->c_next_output = *output;
410 *output = c;
458 audio_client_t *output = NULL; local
475 "failed starting output, rv = %d", rv);
508 auimpl_output_callback_impl(e, &output,
[all...]
/illumos-gate/usr/src/cmd/ldapcachemgr/
H A Dcachemgr_getldap.c266 getldap_get_cacheData_stat(int max, int current, char **output) argument
280 *output = NULL;
284 *output = malloc(len);
285 if (*output == NULL)
288 (void) snprintf(*output, len, "%s%s%s%10d%s%s%10d%s",
874 * output:
889 char **output, int *svr_removed)
906 if (input == NULL || output == NULL) {
908 "No input or output buffer.\n");
912 *output
888 getldap_get_serverInfo(server_info_t *head, char *input, char **output, int *svr_removed) argument
1099 getldap_format_refresh_time(char **output, time_t *prev, time_t *next) argument
1159 getldap_get_server_stat(server_info_t *head, char **output, time_t *prev, time_t *next) argument
1283 getldap_get_refresh_stat(char **output) argument
1609 getldap_serverInfo_op(info_op_t op, char *input, char **output) argument
[all...]
/illumos-gate/usr/src/cmd/abi/appcert/scripts/
H A Dsymcheck.pl32 # the symprof output for each binary, and record any detected unstable
33 # behavior in the binary's output directory.
171 # Map object output dir to actual path of the object:
204 # The profile output file created by static_profile() in symprof.
346 # Reads in the dynamic profile from the object's output directory.
349 # output directory.
355 # Location of the dynamic profile output:
768 my ($rc, $output, $output_syslib);
784 $output = `$cmd_pvs -dos '$library' 2>/dev/null`;
788 if ($rc != 0 || ($output
[all...]
/illumos-gate/usr/src/cmd/refer/
H A Drefer4.c31 output(char *s) function
83 err(gettext("output buff too long (%d)"), BUFSIZ);
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/telnet/
H A Dencrypt.h81 void (*output)(unsigned char *, int); member in struct:__anon144

Completed in 213 milliseconds

1234567891011>>