Searched defs:output (Results 76 - 100 of 134) sorted by relevance

123456

/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 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/lib/gss_mechs/mech_dummy/mech/
H A Ddmech.c528 /* Make the length to 0, so the output token is not sent to peer */
647 gss_buffer_desc output; local
658 /* Copy the input message to output message */
659 output = make_dummy_token_msg(
665 *output_message_buffer = output;
687 gss_buffer_desc output; local
708 output.length = bodysize;
709 output.value = (void *)malloc(output.length);
710 memcpy(output
[all...]
/illumos-gate/usr/src/lib/libsum/common/
H A Dsum-md5.c81 * encode input into output
86 md5_encode(register unsigned char* output, register UINT4* input, unsigned int len) argument
93 output[j] = (unsigned char)(input[i] & 0xff);
94 output[j+1] = (unsigned char)((input[i] >> 8) & 0xff);
95 output[j+2] = (unsigned char)((input[i] >> 16) & 0xff);
96 output[j+3] = (unsigned char)((input[i] >> 24) & 0xff);
101 * decode input into output
106 md5_decode(register UINT4* output, register unsigned char* input, unsigned int len) argument
112 output[i] = ((UINT4)input[j]) |
/illumos-gate/usr/src/lib/libresolv2/common/isc/
H A Deventlib.c81 ctx->output = NULL;
143 evSetDebug(evContext opaqueCtx, int level, FILE *output) { argument
147 ctx->output = output;
318 * the input and output events (corresponding to
677 if (ctx->output != NULL && ctx->debug >= level) {
678 vfprintf(ctx->output, fmt, ap);
679 fflush(ctx->output);
/illumos-gate/usr/src/lib/libcmd/common/
H A Dstty.c34 "the settings of certain modes to standard output.]"
36 "[a:all?Writes to standard output all of the mode settings.]"
37 "[g:save?Writes the current settings to standard output in a form that can "
133 { "ospeed", NUM, C_SPEED,0, CBAUD, 0, C("\an\a is the output baud rate") },
171 { "start", CHAR, T_CHAR, SS, VSTART, 'Q', C("Restart the output after stopping it") },
174 { "stop", CHAR, T_CHAR, SS, VSTOP, 'S', C("Stop the output") },
186 { "flush", CHAR, T_CHAR, SS, VDISCARD, 'O', C("Discard output") },
232 { "ixon", BIT, I_FLAG, 0, IXON, IXON, C("Enable (disable) XON/XOFF flow control. \bstop\b character stops output") },
234 { "ixany", BIT, I_FLAG, US, IXANY, IXANY, C("Any character (only start character) can restart output.") },
304 { "opost", BIT, O_FLAG, SS, OPOST, OPOST, C(" Postprocess (do not postprocess) output") },
464 static void output(struct termios *sp, int flags) function
[all...]
/illumos-gate/usr/src/common/crypto/sha1/
H A Dsha1.c124 * output: void
182 * output: void
416 * output: void
495 * output: void
1009 * output: void
1013 Encode(uint8_t *_RESTRICT_KYWD output, const uint32_t *_RESTRICT_KYWD input, argument
1019 if (IS_P2ALIGNED(output, sizeof (uint32_t))) {
1022 *((uint32_t *)(output + j)) = input[i];
1027 output[j] = (input[i] >> 24) & 0xff;
1028 output[
[all...]
/illumos-gate/usr/src/cmd/pack/
H A Dpack.c143 output(char *source) function
151 /* output ``PACKED'' header */
154 /* output the length and the dictionary */
171 /* output the text */
336 return (output(source));
529 /* output statistics */
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/in.routed/
H A Doutput.c36 * $FreeBSD: src/sbin/routed/output.c,v 1.7 2000/08/11 08:24:38 sheldonh Exp $
49 * walk the tree of routes with this for output
57 struct interface *ifp; /* usually output interface */
101 output(enum output_type type, function
364 if (output(wb->type, &ws.to, ws.ifp, wb->buf,
742 struct interface *ifp, /* output interface */
786 * will be bumped up on output.
812 return; /* no output */
1053 if (output(type, &dst, ifp, &buf, sizeof (buf)) < 0)
/illumos-gate/usr/src/cmd/acct/
H A Dacctcon.c34 * -l file causes output of line usage summary
108 static void output(void);
160 output();
512 output() function
/illumos-gate/usr/src/cmd/svr4pkg/libinst/
H A Dpkgdbmerg.c106 static void output(VFP_T *vfpo, struct cfent *ent, struct pinfo *pinfo);
486 output(vfpo, cf_ent, pkgpinfo);
489 output(vfpo, &(el_ent->cf_ent), pkgpinfo);
618 output(vfpo, &(el_ent->cf_ent), pinfo);
1058 output(VFP_T *vfpo, struct cfent *ent, struct pinfo *pinfo) function
1063 /* output without volume information */
1075 /* output without local pathname */
/illumos-gate/usr/src/tools/cscope-fast/
H A Dfind.c71 static void putsource(FILE *output);
77 static void putline(FILE *output);
226 * output the file, calling function or macro,
344 * output the file, calling function or macro,
384 /* output the file, function and source line */
457 /* output the file name */
460 /* output the function name */
465 /* output the source line */
533 /* output the file, calling function or */
616 /* output th
1057 FILE *output; local
1076 putsource(FILE *output) argument
1120 putline(FILE *output) argument
[all...]
/illumos-gate/usr/src/uts/common/crypto/io/
H A Ddca_rsa.c85 * Return length needed to store the output.
86 * For sign, sign-recover, and encrypt, the output buffer
92 "dca_rsastart: output buffer too short (%d < %d)",
121 * For decryption and verifyRecover, the output buffer should not
132 /* For decrypt and verify, the input should not be less than output */
249 /* Reset the output data length */
342 /* Reset the output data length */
632 crypto_key_t *key, crypto_data_t *input, crypto_data_t *output,
655 if (input == output) {
660 rv = dca_rsastart(&ctx, input, output, re
630 dca_rsaatomic(crypto_provider_handle_t provider, crypto_session_id_t session_id, crypto_mechanism_t *mechanism, crypto_key_t *key, crypto_data_t *input, crypto_data_t *output, int kmflag, crypto_req_handle_t req, int mode) argument
[all...]
/illumos-gate/usr/src/stand/lib/sock/
H A Dsocket_impl.h141 int (*output[APP_LVL])(int, struct inetgram *); member in struct:inetboot_socket
/illumos-gate/usr/src/cmd/lp/lib/filters/
H A Dinsfilter.c260 * output-type and map the parameters as well.
380 * algorithm. It is given an input-type and output-type and finds a
382 * output-type. Since the filter-pipeline must meet other criteria,
396 * the input-type and output-type and satisfies the criteria. If one
406 * and the other can produce the output-type. For each of these, it
408 * together--one that accepts as input the output-type of the first
409 * in the pair, and produces as output the input-type of the second
412 * where the input-type is the output-type; with trivial cases it
449 TYPE *output,
454 instantiate(pline, input, output, verif
446 instantiate( _FILTER **pline, TYPE *input, TYPE *output, int (*verify)(_FILTER *, void *), void *criteria ) argument
[all...]
/illumos-gate/usr/src/common/crypto/sha2/
H A Dsha2.c621 * output: void
625 Encode(uint8_t *_RESTRICT_KYWD output, uint32_t *_RESTRICT_KYWD input, argument
631 if (IS_P2ALIGNED(output, sizeof (uint32_t))) {
634 *((uint32_t *)(output + j)) = input[i];
639 output[j] = (input[i] >> 24) & 0xff;
640 output[j + 1] = (input[i] >> 16) & 0xff;
641 output[j + 2] = (input[i] >> 8) & 0xff;
642 output[j + 3] = input[i] & 0xff;
650 Encode64(uint8_t *_RESTRICT_KYWD output, uint64_t *_RESTRICT_KYWD input, argument
656 if (IS_P2ALIGNED(output, sizeo
[all...]
/illumos-gate/usr/src/cmd/mandoc/
H A Dmansearch.h83 char *output; /* user-defined additional output */ member in struct:manpage
/illumos-gate/usr/src/lib/libkmf/libkmf/common/
H A Dpk11keys.c794 KMF_DATA *tobesigned, KMF_DATA *output,
853 (void) memcpy(output->Data, pfx, pfxlen);
854 (void) memcpy(output->Data + pfxlen, outbuf, outlen);
855 output->Length = outlen + pfxlen;
857 (void) memcpy(output->Data, outbuf, outlen);
858 output->Length = outlen;
791 PKCS_DigestData(KMF_HANDLE_T handle, CK_SESSION_HANDLE hSession, CK_MECHANISM_TYPE mechtype, KMF_DATA *tobesigned, KMF_DATA *output, boolean_t pkcs1_encoding) argument
/illumos-gate/usr/src/lib/auditd_plugins/syslog/
H A Dsysplugin.c500 * output but is included if DEBUG is on.
505 filter(const char *input, uint64_t sequence, char *output, argument
655 bp = output;
891 "incorrect p_flags setting; no records will be output"));
/illumos-gate/usr/src/cmd/od/
H A Dod.c27 * the sample output in the Open Group man page.)
65 * we process a block at a time (one block == one line of od output.)
88 * This structure is used to provide information on a specific output
89 * format. We link them together in a list representing the output
92 typedef struct output { struct
94 void (*func)(buffer_t *, int); /* output function */
95 struct output *next; /* link node */
290 * List of output formatting structures.
/illumos-gate/usr/src/cmd/prtfru/
H A Dprtfru.c193 /* make relevant output appear before error message */
195 (void) fprintf(stderr, "Error flushing output: %s\n",
206 * Write message to standard output
209 output(const char *format, ...) function
216 error(gettext("Error writing output: %s\n"),
229 error(gettext("Error writing output: %s\n"),
244 error(gettext("Error writing output: %s\n"),
277 error(gettext("Error writing output: %s\n"),
325 output("<!ELEMENT FRUID_XML_Tree (Parameter*, "
379 output("<!ELEMEN
[all...]
/illumos-gate/usr/src/cmd/man/
H A Dmakewhatis.c81 static stringlist *whatis_lines; /* collected output lines */
299 * Attempt to open an output file.
305 FILE *output; local
310 if ((output = fopen(name, "w")) == NULL) {
314 return (output);
325 * Write the unique sorted lines to the output file.
328 finish_output(FILE *output, char *name) argument
340 (void) fputs(line, output);
341 (void) putc('\n', output);
343 (void) fclose(output);
359 finish_whatis(FILE *output, char *mandir) argument
[all...]
/illumos-gate/usr/src/cmd/infocmp/
H A Dinfocmp.c333 keys that input the same thing as the corresponding output strings.
339 *addko(char *output, char *input, char *koptr) argument
345 outptr = tgetstr(output, (char **)0);
350 *koptr++ = *output++;
351 *koptr++ = *output++;
1001 "output\n");
1005 "debugging output\n");
/illumos-gate/usr/src/cmd/svr4pkg/pkginfo/
H A Dpkginfo.c166 /* tell spmi zones interface how to access package output functions */
325 boolean_t output = B_FALSE; local
386 output = B_TRUE;
402 /* If no package matched and no output produced set error flag */
403 if (!output)
406 /* verify that each package listed on command line was output */
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_fm.c422 size_t idx, output; local
430 output = idx = 0;
450 r[output].zr_start = start;
451 r[output].zr_end = end;
452 output++;
454 ASSERT3U(output, <, eip->zei_range_count);
455 eip->zei_range_count = output;

Completed in 98 milliseconds

123456