Searched defs:in (Results 51 - 75 of 196) sorted by relevance

12345678

/osnet-11/usr/src/lib/fm/topo/modules/sun4v/pcibus/common/
H A Dpci_sun4v.c6 * You may not use this file except in compliance with the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
58 platform_pci_label(topo_mod_t *mod, tnode_t *node, nvlist_t *in, argument
77 return (pci_label_cmn(mod, node, in, out));
81 * We have crossed a FRU boundary. Use the value in the
99 platform_pci_fru(topo_mod_t *mod, tnode_t *node, nvlist_t *in, argument
150 if (nvlist_lookup_uint64(in, "nv1", &ptr) != 0) {
183 return (pci_fru_compute(mod, node, in, out));
/osnet-11/usr/src/lib/gss_mechs/mech_dh/backend/mech/
H A Dseq.c6 * (the "License"). You may not use this file except in compliance
14 * When distributing Covered Code, include this CDDL HEADER in each
37 #define WBITS_DEF 8 * sizeof (seq_word_t) /* Bits in a seq_word_t */
38 static const int WBITS = WBITS_DEF; /* Stored in a static int for debuging */
39 static const int NBITS = SSIZE * WBITS_DEF; /* Total bits in the sequence */
254 /* Clear all the bits in a sequence array */
264 /* Check that a bit is set in a sequence array */
274 /* Set a bit in a sequence array */
282 /* Clear a bit in a sequence array */
295 * Sift the bits in
313 seq_word_t in = 0, out; local
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/crypto/md4/
H A Dmd4.c26 ** Digest Algorithm" in all material mentioning or referencing this **
31 ** Data Security, Inc. MD4 Message Digest Algorithm" in all **
39 ** These notices must be retained in any copies of any part of this **
100 krb5_ui_4 in[16]; local
115 mdContext->in[mdi++] = *inBuf++;
120 in[i] = (((krb5_ui_4)mdContext->in[ii+3]) << 24) |
121 (((krb5_ui_4)mdContext->in[ii+2]) << 16) |
122 (((krb5_ui_4)mdContext->in[ii+1]) << 8) |
123 ((krb5_ui_4)mdContext->in[i
133 krb5_ui_4 in[16]; local
172 Transform(krb5_ui_4 *buf, krb5_ui_4 *in) argument
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Dfwd_tgt.c16 * notice appear in all copies and that both that copyright notice and
17 * this permission notice appear in supporting documentation, and that
18 * the name of M.I.T. not be used in advertising or publicity pertaining
21 * your software as modified software and not distribute it in such a
86 krb5_creds in, *out = 0; local
87 memset (&in, 0, sizeof(in));
89 retval = krb5_copy_principal (context, server, &in.server);
92 retval = krb5_copy_principal (context, client, &in.client);
95 retval = krb5_get_credentials (context, 0, cc, &in,
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Doid_ops.c16 * notice appear in all copies and that both that copyright notice and
17 * this permission notice appear in supporting documentation, and that
18 * the name of M.I.T. not be used in advertising or publicity pertaining
21 * your software as modified software and not distribute it in such a
66 * gss_nt_service_name just in case if some gss applications use
146 /* Copy in the old junk */
370 /* Have to fill in the bytes msb-first */
490 * provided that the above copyright notice appears in all copies and
491 * that both that copyright notice and this permission notice appear in
493 * in advertisin
542 gss_OID_desc *in = &oidset->elements[i]; local
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt/cipher/
H A Dmd4.c11 * Libgcrypt is distributed in the hope that it will be useful,
20 * Based on md5.c in libgcrypt, but rewritten to compute md4 checksums
24 * The original code and all modifications are in the public domain.
95 u32 in[16]; local
106 for(i=0, p1=data, p2=(byte*)in; i < 16; i++, p2 += 4 )
115 memcpy (in, data, 64);
119 #define function(a,b,c,d,k,s) a=rol(a+F(b,c,d)+in[k],s);
140 #define function(a,b,c,d,k,s) a=rol(a+G(b,c,d)+in[k]+0x5a827999,s);
162 #define function(a,b,c,d,k,s) a=rol(a+H(b,c,d)+in[k]+0x6ed9eba1,s);
182 /* Put checksum in contex
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt-grub/cipher/
H A Dmd4.c15 * Libgcrypt is distributed in the hope that it will be useful,
24 * Based on md5.c in libgcrypt, but rewritten to compute md4 checksums
28 * The original code and all modifications are in the public domain.
95 u32 in[16]; local
106 for(i=0, p1=data, p2=(byte*)in; i < 16; i++, p2 += 4 )
115 memcpy (in, data, 64);
119 #define function(a,b,c,d,k,s) a=rol(a+F(b,c,d)+in[k],s);
140 #define function(a,b,c,d,k,s) a=rol(a+G(b,c,d)+in[k]+0x5a827999,s);
162 #define function(a,b,c,d,k,s) a=rol(a+H(b,c,d)+in[k]+0x6ed9eba1,s);
182 /* Put checksum in contex
[all...]
/osnet-11/usr/src/grub/grub2/util/
H A Dgrub-mklayout.c10 * GRUB is distributed in the hope that it will be useful,
157 /* "Undead" keys since no dead key support in GRUB. */
171 /* Unused in GRUB. */
352 write_keymaps (FILE *in, FILE *out) argument
362 while (fgets (line, sizeof (line), in))
433 FILE *in, *out; local
477 in = fopen (infile_name, "r");
479 in = stdin;
481 if (!in)
491 if (in !
[all...]
/osnet-11/usr/src/lib/libc/port/gen/
H A Dselect_large_fdset.c6 * You may not use this file except in compliance with the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
40 * in particular conditions that would return EFAULT are far too
41 * difficult to check for in a library routine.
76 long *in, *out, *ex; local
136 in = (long *)in0->fds_bits;
147 b = (ulong_t)(*in | *out | *ex);
153 if (*in & m)
174 in++;
192 * Clear out bit masks, just in cas
[all...]
/osnet-11/usr/src/lib/libsrpt/common/
H A Dlibsrpt.c6 * You may not use this file except in compliance with the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
48 * cfg Current SRPT configuration in nvlist form
111 * cfg SRPT configuration in nvlist form
438 * in HCA GUID. Must be in one of the following forms:
454 srpt_NormalizeGuid(char *in, char *buf, size_t buflen, uint64_t *int_guid) argument
457 char *bufp = in;
460 if ((in == NULL) || (buf == NULL)) {
/osnet-11/usr/src/lib/nsswitch/ldap/common/
H A Dgetnetent.c6 * You may not use this file except in compliance with the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
29 #include <netinet/in.h>
100 * If "cn" is a MAY attribute, it does not appear in RDN and can't
144 * Takes an unsigned integer in host order, and returns a printable
154 struct in_addr in; local
159 in = inet_makeaddr(anet, INADDR_ANY);
160 addr = in.s_addr;
161 if (inet_ntop(AF_INET, (const void *)&in, buf2, INET_ADDRSTRLEN)
H A Dtsol_getrhent.c6 * You may not use this file except in compliance with the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
32 #include <netinet/in.h>
49 escape_colon(char *in, char *out) { argument
51 for (i = 0, j = 0; in[i] != '\0'; i++) {
52 if (in[i] == ':') {
54 out[j++] = in[i];
56 out[j++] = in[i];
93 * Escape ':' in IPV6.
94 * The value is stored in LDA
[all...]
/osnet-11/usr/src/lib/libpp/common/
H A Dppsearch.c62 * (2) symbolic links in combination with .. may cause two
107 * search for file using directories in dp
425 struct ppinstk* in; local
432 for (in = pp.in; in; in = in->prev)
433 if (in->type == IN_FILE && in
[all...]
/osnet-11/usr/src/lib/libresolv2/common/isc/
H A Dev_connects.c7 * copyright notice and this permission notice appear in all copies.
285 struct sockaddr_in in; member in union:__anon2424
320 struct sockaddr_in in; member in union:__anon2425
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A DRequestHandler.java6 * You may not use this file except in compliance with the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
27 // RequestHandler.java: Handle an incoming request in a separate thread.
42 * Handle an incoming request in a separate thread. The request
53 private ServerDATable daTable; // DA table in server for reg and dereg
54 private InetAddress interfac = null; // Interface on which request came in.
65 // Keeps track of in progress requests
75 RequestHandler(InputStream in, OutputStream out, SLPConfig config_in) { argument
78 inStream = in;
89 // Taken care of in initializatio
[all...]
/osnet-11/usr/src/lib/libsmbns/common/
H A Dsmbns_netbios.c6 * You may not use this file except in compliance with the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
89 * and then sit in a loop providing a 1 second resolution timer.
188 smb_first_level_name_decode(unsigned char *in, struct name_entry *name) argument
190 return (netbios_first_level_name_decode((char *)in, (char *)name->name,
197 * Set up the name and scope fields in the destination name_entry structure.
/osnet-11/usr/src/lib/libkmf/libkmf/common/
H A Dpem_encode.c15 * apply to all code found in this distribution, be it the RC4, RSA,
20 * Copyright remains Eric Young's, and as such any Copyright notices in
22 * If this package is used in a product, Eric Young should be given attribution
24 * This can be in the form of a textual message at program startup or
25 * in documentation (online or textual) provided with the package.
27 * Redistribution and use in source and binary forms, with or without
32 * 2. Redistributions in binary form must reproduce the above copyright
33 * notice, this list of conditions and the following disclaimer in the
139 unsigned char *in, int inl)
148 (void) memcpy(&(ctx->enc_data[ctx->num]), in, in
138 PEM_EncodeUpdate(PEM_ENCODE_CTX *ctx, unsigned char *out, int *outl, unsigned char *in, int inl) argument
319 PEM_DecodeUpdate(PEM_ENCODE_CTX *ctx, unsigned char *out, int *outl, unsigned char *in, int inl) argument
467 get_line(unsigned char *in, int inlen, char *buf, int buflen) argument
480 Pem2Der(unsigned char *in, int inlen, unsigned char **out, int *outlen) argument
[all...]
/osnet-11/usr/src/lib/libndr/common/
H A Dndr_svc.c6 * You may not use this file except in compliance with the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
40 * Global list of allocated handles. Handles are used in various
260 * Lookup a handle by id. If the handle is in the list and it matches
338 ndr_uuid_parse(char *in, ndr_uuid_t *uuid) argument
340 char *p = in;
345 if (strlen(in) != UUID_PRINTABLE_STRING_LENGTH - 1)
/osnet-11/usr/src/lib/libnsl/dial/
H A Dcallers.c6 * You may not use this file except in compliance with the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
80 exphone(char *in, char *out) argument
87 if (!isalpha(*in)) {
88 (void) strcpy(out, in);
93 while (isalpha(*in))
94 *s1++ = *in++;
97 while (*in != NULLCHAR)
98 *s1++ = *in++;
119 * repphone - Replace \D and \T sequences in ar
[all...]
/osnet-11/usr/src/lib/libcmd/common/
H A Dfmt.c28 "separated words into lines \awidth\a characters or less in length and "
31 "preserved in the output. Indentation is preserved, and lines with "
34 "also be useful for other simple tasks. For example, in \bvi\b(1) the "
35 "command \b:!}fmt\b will justify the lines in the current paragraph.]"
60 Sfio_t* in; member in struct:Fmt_s
245 while (cp || (cp = sfgetr(fp->in, '\n', 0)) && !(splice = 0) && (lp = cp + sfvalue(fp->in) - 1) || (cp = sfgetr(fp->in, '\n', SF_LASTR)) && (splice = 1) && (lp = cp + sfvalue(fp->in)))
620 fmt.in
[all...]
H A Dwho.c33 "logged in users to standard output.]"
36 "in user it reports.]"
47 "[H:heading?Put a heading line in before of the output.]"
211 static int who(Sfio_t *in, Sfio_t *out, int flags) argument
243 while(sfread(in,&ut,sizeof(struct utmpx))>0)
/osnet-11/usr/src/lib/libcmdutils/common/
H A Ddecompress.c6 * You may not use this file except in compliance with the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
51 int in; /* input fd */ member in struct:thr_args
212 * The other end of pipe may be closed in the middle of input
218 while ((nread = (*args->readf)(args->in, args->buf)) != 0) {
239 * Copy from input fd to output fd in separate thread.
243 splice(FILE *out, int (*readf)(int, char *), int in, char *buf, size_t rsz) argument
253 args->in = in;
/osnet-11/usr/src/lib/libdtrace/common/
H A Ddt_dis.c6 * (the "License"). You may not use this file except in compliance
14 * When distributing Covered Code, include this CDDL HEADER in each
37 dt_dis_log(const dtrace_difo_t *dp, const char *name, dif_instr_t in, FILE *fp) argument
40 DIF_INSTR_R1(in), DIF_INSTR_R2(in), DIF_INSTR_RD(in));
46 dif_instr_t in, FILE *fp)
48 (void) fprintf(fp, "%-4s %u", name, DIF_INSTR_LABEL(in));
53 dt_dis_load(const dtrace_difo_t *dp, const char *name, dif_instr_t in, FILE *fp) argument
56 DIF_INSTR_R1(in), DIF_INSTR_R
45 dt_dis_branch(const dtrace_difo_t *dp, const char *name, dif_instr_t in, FILE *fp) argument
61 dt_dis_store(const dtrace_difo_t *dp, const char *name, dif_instr_t in, FILE *fp) argument
70 dt_dis_str(const dtrace_difo_t *dp, const char *name, dif_instr_t in, FILE *fp) argument
77 dt_dis_r1rd(const dtrace_difo_t *dp, const char *name, dif_instr_t in, FILE *fp) argument
85 dt_dis_cmp(const dtrace_difo_t *dp, const char *name, dif_instr_t in, FILE *fp) argument
93 dt_dis_tst(const dtrace_difo_t *dp, const char *name, dif_instr_t in, FILE *fp) argument
127 dt_dis_lda(const dtrace_difo_t *dp, const char *name, dif_instr_t in, FILE *fp) argument
140 dt_dis_ldv(const dtrace_difo_t *dp, const char *name, dif_instr_t in, FILE *fp) argument
153 dt_dis_stv(const dtrace_difo_t *dp, const char *name, dif_instr_t in, FILE *fp) argument
166 dt_dis_setx(const dtrace_difo_t *dp, const char *name, dif_instr_t in, FILE *fp) argument
180 dt_dis_sets(const dtrace_difo_t *dp, const char *name, dif_instr_t in, FILE *fp) argument
193 dt_dis_ret(const dtrace_difo_t *dp, const char *name, dif_instr_t in, FILE *fp) argument
200 dt_dis_call(const dtrace_difo_t *dp, const char *name, dif_instr_t in, FILE *fp) argument
210 dt_dis_pushts(const dtrace_difo_t *dp, const char *name, dif_instr_t in, FILE *fp) argument
224 dt_dis_xlate(const dtrace_difo_t *dp, const char *name, dif_instr_t in, FILE *fp) argument
[all...]
/osnet-11/usr/src/lib/libidmap/common/
H A Dutils.c6 * You may not use this file except in compliance with the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
207 * When they succeed, indicating that there are no requests in flight and
222 const caddr_t in,
266 clntstat = clnt_call(idmap_handle.client, procnum, inproc, in,
219 _idmap_clnt_call( const rpcproc_t procnum, const xdrproc_t inproc, const caddr_t in, const xdrproc_t outproc, caddr_t out, const struct timeval tout) argument
/osnet-11/usr/src/lib/fm/topo/libtopo/common/
H A Dmem.c6 * You may not use this file except in compliance with the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
144 * is one that is either alphanumeric or one of the marks defined in S2.3.
193 nvlist_t *in, nvlist_t **out)
208 if (nvlist_lookup_string(in, FM_FMRI_MEM_UNUM, &unum) != 0) {
214 * If we have a DIMM offset, include it in the string. If we have a
217 if (nvlist_lookup_uint64(in, FM_FMRI_MEM_OFFSET, &val) == 0) {
220 } else if (nvlist_lookup_uint64(in, FM_FMRI_MEM_PHYSADDR, &val) == 0) {
282 nvlist_t *in, nvlist_t **out)
295 if (nvlist_lookup_string(in, "fmr
192 mem_fmri_nvl2str(topo_mod_t *mod, tnode_t *node, topo_version_t version, nvlist_t *in, nvlist_t **out) argument
281 mem_fmri_str2nvl(topo_mod_t *mod, tnode_t *node, topo_version_t version, nvlist_t *in, nvlist_t **out) argument
[all...]

Completed in 122 milliseconds

12345678