Home
last modified time | relevance | path

Searched refs:output (Results 1 – 25 of 611) sorted by relevance

12345678910>>...25

/titanic_41/usr/src/ucbcmd/stty/
H A Dstty.c62 #define output stderr macro
190 (void) fprintf(output, "iuclc "); in prmodes()
192 (void) fprintf(output, "-iuclc "); in prmodes()
195 (void) fprintf(output, "olcuc "); in prmodes()
197 (void) fprintf(output, "-olcuc "); in prmodes()
199 (void) fprintf(output, "tab3 "); in prmodes()
202 (void) fprintf(output, "xcase "); in prmodes()
204 (void) fprintf(output, "-xcase "); in prmodes()
206 (void) fprintf(output, "stflush "); in prmodes()
208 (void) fprintf(output, "-stflush "); in prmodes()
[all …]
/titanic_41/usr/src/cmd/prtfru/
H A Dprtfru.c209 output(const char *format, ...) in output() function
325 output("<!ELEMENT FRUID_XML_Tree (Parameter*, " in output_dtd()
379 output("<!ELEMENT %s (%s", element[i], in output_dtd()
382 output("<!ELEMENT %s (Index_%s*)>\n" in output_dtd()
389 output(",\n\t%s", def->enumTable[j].text); in output_dtd()
391 output(")>\n"); in output_dtd()
393 output("<!ELEMENT %s EMPTY>\n" in output_dtd()
398 output("<!-- %s valid enumeration values\n"); in output_dtd()
400 output("\t\""); in output_dtd()
402 output("\"\n"); in output_dtd()
[all …]
/titanic_41/usr/src/cmd/ssh/libopenbsd-compat/common/
H A Dbase64.c140 u_char output[4]; in b64_ntop() local
149 output[0] = input[0] >> 2; in b64_ntop()
150 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4); in b64_ntop()
151 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6); in b64_ntop()
152 output[3] = input[2] & 0x3f; in b64_ntop()
153 Assert(output[0] < 64); in b64_ntop()
154 Assert(output[1] < 64); in b64_ntop()
155 Assert(output[2] < 64); in b64_ntop()
156 Assert(output[3] < 64); in b64_ntop()
160 target[datalength++] = Base64[output[0]]; in b64_ntop()
[all …]
/titanic_41/usr/src/lib/libresolv2/common/isc/
H A Dbase64.c149 u_char output[4]; in b64_ntop() local
158 output[0] = input[0] >> 2; in b64_ntop()
159 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4); in b64_ntop()
160 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6); in b64_ntop()
161 output[3] = input[2] & 0x3f; in b64_ntop()
162 Assert(output[0] < 64); in b64_ntop()
163 Assert(output[1] < 64); in b64_ntop()
164 Assert(output[2] < 64); in b64_ntop()
165 Assert(output[3] < 64); in b64_ntop()
169 target[datalength++] = Base64[output[0]]; in b64_ntop()
[all …]
/titanic_41/usr/src/uts/common/gssapi/mechs/krb5/crypto/old/
H A Dold_encrypt.c59 krb5_data *output) in krb5_old_encrypt() argument
71 if (output->length < enclen) in krb5_old_encrypt()
74 output->length = enclen; in krb5_old_encrypt()
78 (void) memset(output->data, 0, output->length); in krb5_old_encrypt()
81 datain.data = (char *) output->data; in krb5_old_encrypt()
85 (void) memcpy(output->data+blocksize+hashsize, input->data, input->length); in krb5_old_encrypt()
90 datain.data = output->data+blocksize; in krb5_old_encrypt()
92 if ((ret = ((*(hash->hash))(context, 1, output, &datain)))) in krb5_old_encrypt()
106 if ((ret = ((*(enc->encrypt))(context, key, ivec, output, output)))) in krb5_old_encrypt()
111 (void) memcpy(ivec->data, output->data + output->length - blocksize, in krb5_old_encrypt()
[all …]
H A Dold_decrypt.c50 krb5_data output, cksum, crcivec; in krb5_old_decrypt() local
65 output.length = input->length; in krb5_old_decrypt()
67 if ((output.data = (char *) MALLOC(output.length)) == NULL) { in krb5_old_decrypt()
73 output.length = input->length; in krb5_old_decrypt()
75 output.data = arg_output->data; in krb5_old_decrypt()
100 if ((ret = ((*(enc->decrypt))(context, key, ivec, input, &output)))) in krb5_old_decrypt()
105 (void) memcpy(orig_cksum, output.data+blocksize, hashsize); in krb5_old_decrypt()
106 (void) memset(output.data+blocksize, 0, hashsize); in krb5_old_decrypt()
111 if ((ret = ((*(hash->hash))(context, 1, &output, &cksum)))) in krb5_old_decrypt()
122 (void) memcpy(arg_output->data, output.data+blocksize+hashsize, in krb5_old_decrypt()
[all …]
/titanic_41/usr/src/tools/scripts/
H A Dgit-pbchk.py206 def comchk(root, parent, flist, output): argument
207 output.write("Comments:\n")
210 output=output)
213 def mapfilechk(root, parent, flist, output): argument
229 output.write("Mapfile comments:\n")
234 ret |= Mapfile.mapfilechk(fh, output=output)
239 def copyright(root, parent, flist, output): argument
241 output.write("Copyrights:\n")
244 ret |= Copyright.copyright(fh, output=output)
249 def hdrchk(root, parent, flist, output): argument
[all …]
/titanic_41/usr/src/lib/libfsmgt/common/
H A Dcmd.c82 int output[2]; in cmd_execute_command() local
86 if (pipe(output) == -1) { in cmd_execute_command()
106 close(output[0]); in cmd_execute_command()
116 if (dup(output[1]) == -1) { in cmd_execute_command()
120 close(output[1]); in cmd_execute_command()
150 close(output[1]); in cmd_execute_command()
153 *output_filedes = output[0]; in cmd_execute_command()
181 int output[2]; in cmd_execute_command_and_retrieve_string() local
187 if (pipe(output) == -1) { in cmd_execute_command_and_retrieve_string()
205 close(output[0]); in cmd_execute_command_and_retrieve_string()
[all …]
/titanic_41/usr/src/tools/onbld/Checks/
H A DComments.py48 def comchk(comments, check_db=True, output=sys.stderr): argument
143 output.write("WARNING: Blank line(s) in comments\n")
148 output.write("These IDs appear more than once in your "
151 output.write(" %s\n" % err)
155 output.write("These bugs are missing a single space following "
158 output.write(" %s\n" % com)
162 output.write("These comments are not valid bugs:\n")
164 output.write(" %s\n" % com)
168 output.write("These bugs were not found in the databases:\n")
170 output.write(" %s\n" % id)
[all …]
H A DHdrChk.py156 def hdrchk(fh, filename=None, lenient=False, output=sys.stderr): argument
172 err(output, "Missing copyright in opening comment", hdr)
189 err(output, "Invalid or missing header guard", hdr)
207 err(output, "Header guard does not match "
213 err(output, "Invalid header guard", hdr)
228 err(output, "Invalid #pragma ident", hdr)
255 err(output, "Bad include", hdr)
271 err(output, "Bad __cplusplus clause",
291 err(output, "Bad __cplusplus clause",
310 err(output, "Missing __cplusplus guard", hdr)
[all …]
/titanic_41/usr/src/uts/common/io/audio/drv/audioemu10k/dsp/
H A Demu10k2.mac45 .output OUT_SPDIF_L 0
46 .output OUT_SPDIF_R 1
47 .output OUT_DCENTER 2 // Digital Center channel
48 .output OUT_DLFE 3 // Digital LFE
49 .output OUT_HEADPH_L 4 // LiveDrive headphone out
50 .output OUT_HEADPH_R 5
51 .output OUT_DSURR_L 6 // Surround output (digital)
52 .output OUT_DSURR_R 7
53 .output OUT_FRONT_L 8
54 .output OUT_FRONT_R 9
[all …]
H A Demu10k1.mac45 .output OUT_FRONT_L 0 // via AC'97
46 .output OUT_FRONT_R 1 // via AC'97
47 .output OUT_SPDIF_L 2
48 .output OUT_SPDIF_R 3
49 .output OUT_DCENTER 4 // Digital Center channel
50 .output OUT_DLFE 5 // Digital LFE
51 .output OUT_HEADPH_L 6 // LiveDrive headphone out
52 .output OUT_HEADPH_R 7
53 .output OUT_SURR_L 8 // Rear output
54 .output OUT_SURR_R 9
[all …]
/titanic_41/usr/src/lib/gss_mechs/mech_dh/backend/mech/
H A Dname.c98 gss_buffer_t output, /* Were the printable name goes */ in __dh_gss_display_name() argument
103 if (minor == 0 || output == 0) in __dh_gss_display_name()
111 output->length = 0; in __dh_gss_display_name()
112 output->value = (void *)strdup((char *)name); in __dh_gss_display_name()
113 if (output->value == NULL) { in __dh_gss_display_name()
117 output->length = strlen((char *)name) + 1; in __dh_gss_display_name()
148 do_netname_nametype(OM_uint32 *minor, char *input, gss_name_t *output) in do_netname_nametype() argument
154 *output = (gss_name_t)strdup((char *)input); in do_netname_nametype()
156 if (*output == NULL) { in do_netname_nametype()
168 do_uid_nametype(OM_uint32 *minor, uid_t uid, gss_name_t *output) in do_uid_nametype() argument
[all …]
/titanic_41/usr/src/test/zfs-tests/tests/functional/xattr/
H A Dxattr_008_pos.ksh46 for file in /tmp/output.$$ /tmp/expected-output.$$ \
61 create_expected_output /tmp/expected-output.$$ \
63 log_must $DIFF /tmp/output.$$ /tmp/expected-output.$$
66 create_expected_output /tmp/expected-output.$$ . .. \
68 log_must $DIFF /tmp/output.$$ /tmp/expected-output.$$
/titanic_41/usr/src/uts/common/gssapi/mechs/krb5/crypto/
H A Dhmac.c45 krb5_const krb5_data *input, krb5_data *output) in krb5_hmac() argument
53 if (output == NULL || output->data == NULL) { in krb5_hmac()
70 mac.cd_length = output->length; in krb5_hmac()
71 mac.cd_raw.iov_base = (char *)output->data; in krb5_hmac()
72 mac.cd_raw.iov_len = output->length; in krb5_hmac()
111 krb5_data *output) in krb5_hmac() argument
134 if (output == NULL) { in krb5_hmac()
144 if (output->length < hashsize) in krb5_hmac()
202 output->length = hashsize; in krb5_hmac()
205 if ((ret = ((*(hash->hash))(context, 2, hashin, output)))) in krb5_hmac()
[all …]
/titanic_41/usr/src/uts/common/gssapi/mechs/krb5/crypto/enc_provider/
H A Daes_provider.c36 const krb5_data *input, krb5_data *output) in krb5int_aes_encrypt() argument
54 ASSERT(output != NULL); in krb5int_aes_encrypt()
55 ASSERT(input->length == output->length); in krb5int_aes_encrypt()
102 (char *)output->data, in krb5int_aes_encrypt()
118 nlobp = (char *)(output->data + in krb5int_aes_encrypt()
120 lobp = (char *)(output->data + in krb5int_aes_encrypt()
199 ct.cd_uio->uio_iov[0].iov_base = (char *)output->data; in krb5int_aes_encrypt()
200 ct.cd_uio->uio_iov[0].iov_len = output->length - partialamount; in krb5int_aes_encrypt()
237 nlobp = (char *)(output->data + ((nblocks - 2) * BLOCK_SIZE)); in krb5int_aes_encrypt()
238 lobp = (char *)(output->data + ((nblocks - 1) * BLOCK_SIZE)); in krb5int_aes_encrypt()
[all …]
/titanic_41/usr/src/lib/lvm/libsvm/common/
H A Dupdate_mdconf.c164 char output[1024]; in parse_bootlist() local
168 (void) memset(output, 0, sizeof (output)); in parse_bootlist()
171 output[0] = CONF_COMMENTCHAR; in parse_bootlist()
180 (void) strcat(output, cp); in parse_bootlist()
181 (void) strcat(output, "=\042"); /* add back the EQUAL and QUOTE chars */ in parse_bootlist()
196 (void) strcat(output, cp); in parse_bootlist()
199 (void) strcat(strcat(output, ":"), in parse_bootlist()
205 (void) strcat(output, " "); /* leave space between entries */ in parse_bootlist()
209 output[strlen(output) - 1] = 0; in parse_bootlist()
210 (void) strcat(output, "\042;\n"); in parse_bootlist()
[all …]
/titanic_41/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_upgrade/
H A Dzfs_upgrade_001_pos.ksh55 for file in $output $oldoutput ; do
66 typeset output=/tmp/zfs-versions.$$
101 $ZFS upgrade | $NAWK '$1 ~ "^[0-9]+$" {print $2}'> $output
102 COUNT=$( $WC -l $output | $AWK '{print $1}' )
106 log_must $GREP "^$fs$" $output
111 $CAT $output
128 $ZFS upgrade | $NAWK '$1 ~ "^[0-9]+$" {print $2}'> $output
129 COUNT=$( $WC -l $output | $AWK '{print $1}' )
132 $CAT $output
/titanic_41/usr/src/uts/common/gssapi/mechs/krb5/crypto/dk/
H A Ddk_encrypt.c63 krb5_data *output) in krb5_dk_encrypt() argument
92 if (output->length < enclen) in krb5_dk_encrypt()
116 d2.data = output->data; in krb5_dk_encrypt()
133 d2.data = output->data+plainlen; in krb5_dk_encrypt()
135 output->length = enclen; in krb5_dk_encrypt()
188 const krb5_data *input, krb5_data *output) in trunc_hmac() argument
196 if (hashsize < output->length) in trunc_hmac()
209 (void) memset(output->data, 0, output->length); in trunc_hmac()
212 (void) memcpy(output->data, tmphash.data, output->length); in trunc_hmac()
227 krb5_data *output) in krb5int_aes_dk_encrypt() argument
[all …]
H A Ddk_decrypt.c46 krb5_data *output,
56 krb5_data *output) in krb5_dk_decrypt() argument
59 ivec, input, output, 0); in krb5_dk_decrypt()
69 krb5_data *output) in krb5int_aes_dk_decrypt() argument
72 ivec, input, output, 96 / 8); in krb5int_aes_dk_decrypt()
82 krb5_data *output, size_t hmacsize) in krb5_dk_decrypt_maybe_trunc_hmac() argument
117 if (output->length < input->length - blocksize - hmacsize) in krb5_dk_decrypt_maybe_trunc_hmac()
174 if (output->length < plainlen) { in krb5_dk_decrypt_maybe_trunc_hmac()
179 output->length = plainlen; in krb5_dk_decrypt_maybe_trunc_hmac()
181 (void) memcpy(output->data, d2.data+blocksize, output->length); in krb5_dk_decrypt_maybe_trunc_hmac()
/titanic_41/usr/src/uts/common/gssapi/mechs/krb5/crypto/hash_provider/
H A Dhash_crc32.c35 krb5_data *output) in k5_crc32_hash() argument
40 if (output->length != CRC32_CKSUM_LENGTH) in k5_crc32_hash()
49 output->data[0] = c&0xff; in k5_crc32_hash()
50 output->data[1] = (c>>8)&0xff; in k5_crc32_hash()
51 output->data[2] = (c>>16)&0xff; in k5_crc32_hash()
52 output->data[3] = (c>>24)&0xff; in k5_crc32_hash()
/titanic_41/usr/src/cmd/refer/
H A Dhunt6.c44 char res[100], *ar[50], output[TXTLEN], *mput; in baddrop() local
77 if (!auxil(res, output)) { in baddrop()
91 len = corout(res, output, rprog, "", TXTLEN); in baddrop()
95 strncpy(output, mput, TXTLEN); in baddrop()
104 i, nf, res, len, output); in baddrop()
115 ar[na++] = output; in baddrop()
133 fputs(output, stdout); in baddrop()
135 strcpy(soutput, output); in baddrop()
145 auxil(char *res, char *output) in auxil() argument
156 fgets(output, len, fd); in auxil()
/titanic_41/usr/src/cmd/dtrace/test/tst/common/java_api/
H A Dtst.MultiAggPrinta.ksh.out3 }, tuples = [[]], output =
6 }, tuples = [[]], output = count: 1
7 …rintaRecord[aggregations = [], formattedStrings = {[]= }, tuples = [[]], output = ], org.opensola…
10 }, tuples = [[1, 3], [1, 2]], output =
17 }, tuples = [[2, 3], [1, 2], [1, 3]], output =
22 }, tuples = [[]], output = 3 4
24 }, tuples = [[]], output = 3 4
26 }, tuples = [[]], output = 3
30 }, tuples = [[2, 3], [1, 2], [1, 3]], output = [2, 3] 0 4
36 }, tuples = [[2, 3], [1, 3], [1, 2]], output = [2, 3] 0 4
[all …]
/titanic_41/usr/src/cmd/abi/appcert/scripts/
H A Dsymreport.pl404 my ($summary_result, $msg, $output, $object);
467 $output .= $msg;
473 $output .= sprintf($fmt1, $n_passed, $n_checked);
474 $output .= "\n\n";
477 $output .= "${sp}$object\n";
479 $output .= "\n";
487 $output .= sprintf($fmt2, $n_incomp, $n_checked);
488 $output .= "\n\n";
492 $output .= "${si}$object\t($msg)\n";
494 $output .= "\n";
[all …]
/titanic_41/usr/src/lib/libcmd/common/
H A Duname.c236 #define output(f,v,u) do \ macro
383 output(OPT_system, ut.sysname, "sysname"); in b_uname()
390 output(OPT_nodename, s, "nodename"); in b_uname()
392 output(OPT_release, ut.release, "release"); in b_uname()
393 output(OPT_version, ut.version, "version"); in b_uname()
394 output(OPT_machine, ut.machine, "machine"); in b_uname()
399 output(OPT_processor, s, "processor"); in b_uname()
411 output(OPT_implementation, s, "implementation"); in b_uname()
422 output(OPT_operating_system, s, "operating-system"); in b_uname()
427 output(OPT_extended_release, s, "extended-release"); in b_uname()
[all …]

12345678910>>...25