Searched defs:out (Results 51 - 75 of 354) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libresolv2/common/isc/
H A Dlogging_p.h39 log_output out; member in struct:log_channel
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dselect.c61 long *in, *out, *ex; local
110 out = (long *)out0->fds_bits;
113 b = (ulong_t)(*in | *out | *ex);
122 if (*out & m)
130 out++;
147 * Clear out bit masks, just in case.
157 out = (long *)out0->fds_bits;
159 *out++ = 0;
189 * BUT until we figure out how not to break Xsun's
221 out
[all...]
/illumos-gate/usr/src/lib/libcmd/common/
H A Dcomm.c66 static int comm(Sfio_t *in1, Sfio_t *in2, register Sfio_t *out,register int mode) argument
83 sfputc(out,'\t');
85 sfputc(out,'\t');
87 if(sfwrite(out,cp1,n) < 0)
100 sfputc(out,'\t');
101 if(sfwrite(out,cp2,n2) < 0)
109 if((mode&C_FILE1) && sfwrite(out,cp1,n1) < 0)
137 sfputc(out,'\t');
138 if(sfwrite(out,cp1,n1) < 0)
H A Dfold.c89 static void fold(Sfio_t *in, Sfio_t *out, register int width, const char *cont, size_t contsize, char *cols) argument
107 sfwrite(out,cp,n);
122 sfwrite(out,first,col);
127 sfwrite(out, cont, contsize);
147 sfwrite(out,first,(--cp)-first);
148 sfwrite(out, cont, contsize);
165 sfwrite(out,first,cp-first);
/illumos-gate/usr/src/common/crypto/arcfour/
H A Darcfour_crypt.c94 * out Buffer to contain output text
95 * len Length, in bytes, of the in and out buffers
98 * out Buffer containing output text
100 * Note: in and out can point to the same location
103 arcfour_crypt(ARCFour_key *key, uchar_t *in, uchar_t *out, size_t len) argument
107 arcfour_crypt_asm(key, in, out, len);
139 len--, in++, out++) {
146 *out = *in ^ key->arr[tmp];
155 /* See if we're fortunate and 'out' got aligned as well */
157 if ((((uint64_t)(uintptr_t)out)
[all...]
/illumos-gate/usr/src/common/crypto/arcfour/sun4v/
H A Darcfour_crypt.c59 * in and out can point to the same location
62 arcfour_crypt(ARCFour_key *key, uchar_t *in, uchar_t *out, size_t len) argument
81 len--, in++, out++) {
89 *out = *in ^ key->arr[tmp];
98 /* See if we're fortunate and 'out' got aligned as well */
107 if ((((uintptr_t)out) & 7) != 0) {
120 out[ii] = in[ii] ^ base[tmp0];
152 * Note - in and out may now be misaligned -
153 * as updating [out] in 8B chunks need to handle this
155 * Need to drop out o
[all...]
/illumos-gate/usr/src/common/crypto/modes/
H A Dcbc.c43 crypto_data_t *out, size_t block_size,
70 if (out != NULL)
71 crypto_init_ptrs(out, &iov_or_mp, &offset);
89 if (out == NULL) {
113 crypto_get_ptrs(out, &iov_or_mp, &offset, &out_data_1,
128 out->cd_offset += block_size;
146 goto out;
152 out:
170 crypto_data_t *out, size_t block_size,
197 if (out !
42 cbc_encrypt_contiguous_blocks(cbc_ctx_t *ctx, char *data, size_t length, crypto_data_t *out, size_t block_size, int (*encrypt)(const void *, const uint8_t *, uint8_t *), void (*copy_block)(uint8_t *, uint8_t *), void (*xor_block)(uint8_t *, uint8_t *)) argument
169 cbc_decrypt_contiguous_blocks(cbc_ctx_t *ctx, char *data, size_t length, crypto_data_t *out, size_t block_size, int (*decrypt)(const void *, const uint8_t *, uint8_t *), void (*copy_block)(uint8_t *, uint8_t *), void (*xor_block)(uint8_t *, uint8_t *)) argument
[all...]
H A Decb.c43 crypto_data_t *out, size_t block_size,
68 if (out != NULL)
69 crypto_init_ptrs(out, &iov_or_mp, &offset);
87 if (out == NULL) {
101 crypto_get_ptrs(out, &iov_or_mp, &offset, &out_data_1,
111 out->cd_offset += block_size;
129 goto out;
135 out:
42 ecb_cipher_contiguous_blocks(ecb_ctx_t *ctx, char *data, size_t length, crypto_data_t *out, size_t block_size, int (*cipher)(const void *ks, const uint8_t *pt, uint8_t *ct)) argument
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dterminfo.c59 char *out; local
61 out = out_buffer;
70 *out = (*in) - 'A';
75 *out = '^';
91 *out++ = (char)(n & 0xff);
103 *out++ = '\e';
106 *out++ = '\n';
109 *out++ = '\r';
112 *out++ = '\t';
115 *out
164 char *out; local
[all...]
/illumos-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/server/
H A DSysCommand.java40 private String out = null; field in class:SysCommand
52 System.out.println(e);
55 System.out.println(o);
76 out = readOut();
113 out = readOut();
137 out = readOut();
145 if (out == null)
147 return (new String(out));
163 BufferedReader out = null;
165 out
[all...]
/illumos-gate/usr/src/cmd/refer/
H A Dglue3.c31 corout(char *in, char *out, char *rprog, char *arg, int outlen) argument
41 return (callhunt(in, out, arg, outlen));
43 return (dodeliv(in, out, arg, outlen));
66 n = read(fr2, out, outlen);
67 out[n] = 0;
75 callhunt(char *in, char *out, char *arg, int outlen) argument
86 argv[4] = out;
103 dodeliv(char *in, char *out, char *arg, int outlen) argument
116 strncpy(out, mout, outlen);
H A Dhunt7.c33 findline(char *in, char **out, int outlen, long indexdate) argument
115 *out = (char *)malloc(llen + 1);
116 if (*out == NULL) {
119 len = fread(*out, 1, llen, fa);
120 *(*out + llen) = 0;
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Ddist.c44 int *out = mdb_alloc((buckets + 1) * sizeof (*out), UM_SLEEP | UM_GC); local
49 out[pos] = beg + (pos * dist)/buckets;
50 out[buckets] = end + 1;
52 return (out);
86 int *out = mdb_alloc((buckets + 1) * sizeof (*out), UM_SLEEP | UM_GC);
98 out[0] = beg;
99 out[1] = end + 1;
100 return (out);
[all...]
/illumos-gate/usr/src/cmd/audio/utilities/
H A DAudioTypeMux.cc80 unsigned char *out; local
116 // Figure out if we're multiplexing or demultiplexing
144 out = (unsigned char *)multibuf[i]->GetAddress();
151 *out++ = *in++;
199 out = (unsigned char *)outbuf->GetAddress();
206 *out++ = *in++;
/illumos-gate/usr/src/cmd/bnu/
H A Duuencode.c121 /* figure out the input file mode */
177 * copy from in to out, encoding as you go along.
180 encode(FILE *in, FILE *out, int base64) argument
214 out);
216 if (ferror(out)) {
254 (size_t)(optr - out_buf), out);
256 if (ferror(out)) {
297 (size_t)(optr - out_buf), out);
299 if (ferror(out)) {
/illumos-gate/usr/src/uts/common/crypto/io/
H A Ddca_rng.c91 crypto_data_t *out = reqp->dr_out; local
103 len = out->cd_raw.iov_len - out->cd_length;
124 * Setup for scattering the result back out
140 /* write out the context structure */
/illumos-gate/usr/src/uts/common/zmod/
H A Dinffast.c35 Decode literal, length, and distance codes and write out the resulting
52 LEN -- ran out of enough output space or enough available input
76 unsigned char FAR *out; /* local strm->next_out */ local
78 unsigned char FAR *end; /* while out < end, enough space available */
103 out = strm->next_out - OFF;
104 beg = out - (start - strm->avail_out);
105 end = out + (strm->avail_out - 257);
139 PUP(out) = (unsigned char)(this.val);
188 op = (unsigned)(out - beg); /* max distance in output */
202 PUP(out)
[all...]
/illumos-gate/usr/src/lib/libast/common/port/
H A Dastdynamic.c64 _ast_libinit(void* in, void* out, void* err) argument
71 sp = (Sfio_t*)out;
/illumos-gate/usr/src/tools/cscope-fast/
H A Dinput.c171 shellpath(char *out, int limit, char *in) argument
180 lastchar = out + limit - 1;
187 *out++ = *in++; /* copy the ~ because it may not be expanded */
190 s = out;
198 if (*out == '\0') {
201 v = logdir(out);
205 (void) strcpy(out - 1, v);
206 out += strlen(v) - 1;
209 out += strlen(out);
[all...]
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_sign_kcf.c87 crypto_data_t out; local
90 bzero(&out, sizeof (out));
91 out.cd_format = CRYPTO_DATA_RAW;
92 out.cd_length = MD5_DIGEST_LENGTH;
93 out.cd_raw.iov_len = MD5_DIGEST_LENGTH;
94 out.cd_raw.iov_base = (void *)digest16;
96 rv = crypto_digest_final(ctx, &out, 0);
166 crypto_data_t out; local
169 bzero(&out, sizeo
[all...]
/illumos-gate/usr/src/boot/lib/libz/
H A Dinffast.c33 Decode literal, length, and distance codes and write out the resulting
50 LEN -- ran out of enough output space or enough available input
74 unsigned char FAR *out; /* local strm->next_out */ local
76 unsigned char FAR *end; /* while out < end, enough space available */
101 out = strm->next_out - OFF;
102 beg = out - (start - strm->avail_out);
103 end = out + (strm->avail_out - 257);
137 PUP(out) = (unsigned char)(here.val);
186 op = (unsigned)(out - beg); /* max distance in output */
199 PUP(out)
[all...]
/illumos-gate/usr/src/lib/nsswitch/ldap/common/
H A Dtsol_getrhent.c49 escape_colon(char *in, char *out) { argument
53 out[j++] = '\\';
54 out[j++] = in[i];
56 out[j++] = in[i];
58 out[j] = '\0';
/illumos-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftBlowfishCrypt.c155 crypto_data_t out; local
266 out.cd_format = CRYPTO_DATA_RAW;
267 out.cd_offset = 0;
268 out.cd_length = out_len;
269 out.cd_raw.iov_base = (char *)out_buf;
270 out.cd_raw.iov_len = out_len;
275 (char *)in_buf, out_len, &out);
331 crypto_data_t out; local
433 out.cd_format = CRYPTO_DATA_RAW;
434 out
[all...]
H A DsoftDecryptUtil.c75 * CKR_HOST_MEMORY: run out of system memory
575 crypto_data_t out; local
581 out.cd_format = CRYPTO_DATA_RAW;
582 out.cd_offset = 0;
583 out.cd_length = DES_BLOCK_LEN;
584 out.cd_raw.iov_base = (char *)pLastPart;
585 out.cd_raw.iov_len = DES_BLOCK_LEN;
590 (char *)pLastPart, DES_BLOCK_LEN, &out);
684 crypto_data_t out; local
690 out
757 crypto_data_t out; local
[all...]
/illumos-gate/usr/src/lib/smbsrv/libmlrpc/common/
H A Dndr_heap.c184 ndr_heap_mstring(ndr_heap_t *heap, const char *s, ndr_mstring_t *out) argument
186 if (s == NULL || out == NULL)
189 out->length = smb_wcequiv_strlen(s);
190 out->allosize = out->length + sizeof (smb_wchar_t);
192 if ((out->str = ndr_heap_strdup(heap, s)) == NULL)

Completed in 850 milliseconds

1234567891011>>