Searched refs:in (Results 1 - 25 of 1242) sorted by relevance

1234567891011>>

/osnet-11/usr/src/lib/libc/sparc/gen/
H A Dbyteorder.c6 * You may not use this file except in compliance with the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
45 htonll(uint64_t in) argument
47 return (in);
51 ntohll(uint64_t in) argument
53 return (in);
57 htonl(uint32_t in) argument
59 return (in);
63 ntohl(uint32_t in) argument
65 return (in);
69 htons(uint16_t in) argument
75 ntohs(uint16_t in) argument
[all...]
/osnet-11/usr/src/lib/libc/sparcv9/gen/
H A Dbyteorder.c6 * You may not use this file except in compliance with the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
45 htonll(uint64_t in) argument
47 return (in);
51 ntohll(uint64_t in) argument
53 return (in);
57 htonl(uint32_t in) argument
59 return (in);
63 ntohl(uint32_t in) argument
65 return (in);
69 htons(uint16_t in) argument
75 ntohs(uint16_t in) argument
[all...]
/osnet-11/usr/src/lib/krb5/plugins/preauth/pkinit/
H A Dpkinit_lib.c10 * Michigan is not used in any advertising or publicity
14 * University of Michigan is included in any copy of any
114 free_krb5_pa_pk_as_req(krb5_pa_pk_as_req **in) argument
116 if (*in == NULL) return;
117 free((*in)->signedAuthPack.data);
118 if ((*in)->trustedCertifiers != NULL)
119 free_krb5_external_principal_identifier(&(*in)->trustedCertifiers);
120 free((*in)->kdcPkId.data);
121 free(*in);
125 free_krb5_pa_pk_as_req_draft9(krb5_pa_pk_as_req_draft9 **in) argument
137 free_krb5_reply_key_pack(krb5_reply_key_pack **in) argument
146 free_krb5_reply_key_pack_draft9(krb5_reply_key_pack_draft9 **in) argument
154 free_krb5_auth_pack(krb5_auth_pack **in) argument
170 free_krb5_auth_pack_draft9(krb5_context context, krb5_auth_pack_draft9 **in) argument
179 free_krb5_pa_pk_as_rep(krb5_pa_pk_as_rep **in) argument
196 free_krb5_pa_pk_as_rep_draft9(krb5_pa_pk_as_rep_draft9 **in) argument
204 free_krb5_external_principal_identifier(krb5_external_principal_identifier ***in) argument
219 free_krb5_trusted_ca(krb5_trusted_ca ***in) argument
243 free_krb5_typed_data(krb5_typed_data ***in) argument
256 free_krb5_algorithm_identifier(krb5_algorithm_identifier *in) argument
266 free_krb5_algorithm_identifiers(krb5_algorithm_identifier ***in) argument
278 free_krb5_subject_pk_info(krb5_subject_pk_info **in) argument
287 free_krb5_kdc_dh_key_info(krb5_kdc_dh_key_info **in) argument
295 init_krb5_pa_pk_as_req(krb5_pa_pk_as_req **in) argument
307 init_krb5_pa_pk_as_req_draft9(krb5_pa_pk_as_req_draft9 **in) argument
321 init_krb5_reply_key_pack(krb5_reply_key_pack **in) argument
332 init_krb5_reply_key_pack_draft9(krb5_reply_key_pack_draft9 **in) argument
341 init_krb5_auth_pack(krb5_auth_pack **in) argument
353 init_krb5_auth_pack_draft9(krb5_auth_pack_draft9 **in) argument
361 init_krb5_pa_pk_as_rep(krb5_pa_pk_as_rep **in) argument
374 init_krb5_pa_pk_as_rep_draft9(krb5_pa_pk_as_rep_draft9 **in) argument
385 init_krb5_typed_data(krb5_typed_data **in) argument
395 init_krb5_subject_pk_info(krb5_subject_pk_info **in) argument
[all...]
/osnet-11/usr/src/grub/grub2/tests/
H A Dgrub_script_for1.in3 for x in one two 'three 3' "four 4" five six-6; do echo $x; done
5 for x in one two 'three 3' "four 4" five six-6
11 for x in ab${foo}cd; do echo $x; done
12 for x in "ab${foo}cd"; do echo $x; done
17 for y in $a; do
24 for z in $b; do
H A Dgrub_script_break.in10 # GRUB is distributed in the hope that it will be useful,
19 for i in 1 2 3 4 5 6 7 8 9 10
29 for i in 1 2 3 4 5 6 7 8 9 10
39 for i in 1 2 3 4 5
41 for j in a b c d e f
55 for i in 1 2 3 4 5
57 for j in a b c d e f
75 for i in 1 2 3 4
H A Dgrub_script_continue.in10 # GRUB is distributed in the hope that it will be useful,
19 for i in 1 2 3 4 5 6 7 8 9 10
29 for i in 1 2 3 4 5 6 7 8 9 10
39 for i in 1 2 3 4 5
41 for j in a b c d e f
55 for i in 1 2 3 4 5
57 for j in a b c d e f
75 for i in 1 2 3 4
H A Dgrub_script_setparams.in3 # Run GRUB script in a Qemu instance
11 # GRUB is distributed in the hope that it will be useful,
32 for v in "$@"; do echo $v; done
35 for v in "$@"; do echo $v; done
49 for v in "$@"; do echo $v; done
52 for v in "$@"; do echo $v; done
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Dcopy_kdcreq.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 krb5_copy_kdc_req(krb5_context context, const krb5_kdc_req *in, argument
39 req->magic = in->magic;
40 req->msg_type = in->msg_type;
42 if (in->padata != NULL) {
43 code = krb5_copy_pa_datas(context, in->padata, &req->padata);
48 req->kdc_options = in->kdc_options;
50 if (in->client != NULL) {
51 code = krb5_copy_principal(context, in
[all...]
H A Dcopy_padata.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 krb5_copy_pa_data(krb5_context context, const krb5_pa_data *in, argument
38 pa_data->magic = in->magic;
39 pa_data->pa_type = in->pa_type;
41 pa_data->contents = malloc(in->length);
46 memcpy(pa_data->contents, in->contents, in->length);
47 pa_data->length = in->length;
55 krb5_copy_pa_datas(krb5_context context, krb5_pa_data * const *in, argument
[all...]
/osnet-11/usr/src/grub/grub-0.97/stage2/
H A Dterminfo.c11 * This program is distributed in the hope that it will be useful,
25 * in the serial driver.
43 /* A number of escape sequences are provided in the string valued
55 ti_unescape_memory (const char *in, const char *end) argument
64 c = *(in++);
68 if (*in >= 'A' && *in <= 'Z')
70 *out = (*in) - 'A';
71 in++;
79 c = *(in
151 ti_unescape_string(const char *in) argument
160 ti_escape_memory(const char *in, const char *end) argument
213 ti_escape_string(const char *in) argument
[all...]
H A Dterminfo.h11 * This program is distributed in the hope that it will be useful,
39 char *ti_escape_memory (const char *in, const char *end);
40 char *ti_escape_string (const char *in);
41 char *ti_unescape_memory (const char *in, const char *end);
42 char *ti_unescape_string (const char *in);
/osnet-11/usr/src/lib/libresolv2/common/inet/
H A Dinet_lnaof.c5 * Redistribution and use in source and binary forms, with or without
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
41 #include <netinet/in.h>
52 inet_lnaof(in)
53 struct in_addr in;
55 register u_long i = ntohl(in.s_addr);
H A Dinet_netof.c5 * Redistribution and use in source and binary forms, with or without
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
41 #include <netinet/in.h>
51 inet_netof(in)
52 struct in_addr in;
54 register u_long i = ntohl(in.s_addr);
/osnet-11/usr/src/lib/libc/i386/gen/
H A Dbyteorder64.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>
39 htonll(uint64_t in) argument
41 return (htonl(in >> 32) | ((uint64_t)htonl(in) << 32));
45 ntohll(uint64_t in) argument
47 return (ntohl(in >> 32) | (uint64_t)ntohl(in) << 32);
/osnet-11/usr/src/lib/libpp/common/
H A Dgentab.sh35 case `(typeset -u s=a n=0; ((n=n+1)); print $s$n) 2>/dev/null` in
53 do case $1 in
60 case $1 in
68 do case $shell in
74 case $1 in
77 do case $1 in
94 case $1 in
97 case $define:$last in
98 1:?*) case $shell in
105 case $type in
[all...]
/osnet-11/usr/src/lib/libsocket/inet/
H A Dinet_lnaof.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 #include <netinet/in.h>
48 inet_lnaof(struct in_addr in) argument
50 uint32_t i = ntohl(in.s_addr);
/osnet-11/usr/src/grub/grub2/grub-core/
H A Dgenmoddep.awk9 # This program is distributed in the hope that it will be useful,
24 if ($3 in symtab)
27 printf "%s in %s is not defined\n", $3, $2 >"/dev/stderr";
44 for (mod in modtab) {
47 for (depmod in uniqmods) {
50 for (i in depmods) {
57 for (depmod in uniqmods) {
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/List/Util/t/
H A Dshuffle.t31 my @in = 1..100;
32 @r = shuffle(@in);
33 print "not " unless @r == @in;
36 print "not " if join("",@r) eq join("",@in);
39 print "not " if join("",sort { $a <=> $b } @r) ne join("",@in);
/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/libcmd/common/
H A Drevlib.c33 * copy the lines starting at offset <start> from in <in> to <out>
34 * in reverse order
36 int rev_line(Sfio_t *in, Sfio_t *out, off_t start) argument
42 if(sfseek(in,(off_t)0,SEEK_CUR) < 0)
47 if(start>0 && sfmove(in, (Sfio_t*)0, start, -1) != start)
49 if(sfmove(in, tmp, SF_UNBOUND, -1) < 0 || !sfeof(in) || sferror(tmp))
51 in = tmp;
54 if((offset = sfseek(in,(off_
[all...]
/osnet-11/usr/src/grub/grub2/include/grub/
H A Dlegacy_parse.h10 * GRUB is distributed in the hope that it will be useful,
25 char *grub_legacy_escape (const char *in, grub_size_t len);
/osnet-11/usr/src/grub/grub2/util/
H A Dgrub-macho2img.c11 * GRUB is distributed in the hope that it will be useful,
37 FILE *in, *out; local
55 in = fopen (argv[1 + do_bss], "rb");
56 if (! in)
64 fclose (in);
68 fseek (in, 0, SEEK_END);
69 bufsize = ftell (in);
70 fseek (in, 0, SEEK_SET);
74 fclose (in);
79 fread (buf, 1, bufsize, in);
[all...]
/osnet-11/usr/src/lib/libsqlite/src/
H A Dmd5.c21 * written by Colin Plumb in 1993, no copyright is claimed.
22 * This code is in the public domain; do with it what you wish.
53 unsigned char in[64]; member in struct:Context
77 /* This is the central step in the MD5 algorithm. */
86 static void MD5Transform(uint32 buf[4], const uint32 in[16]){ argument
94 MD5STEP(F1, a, b, c, d, in[ 0]+0xd76aa478, 7);
95 MD5STEP(F1, d, a, b, c, in[ 1]+0xe8c7b756, 12);
96 MD5STEP(F1, c, d, a, b, in[ 2]+0x242070db, 17);
97 MD5STEP(F1, b, c, d, a, in[ 3]+0xc1bdceee, 22);
98 MD5STEP(F1, a, b, c, d, in[
320 FILE *in; local
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_dh/backend/crypto/
H A Dmd5.c25 ** Digest Algorithm" in all material mentioning or referencing this **
30 ** Data Security, Inc. MD5 Message-Digest Algorithm" in all **
38 ** These notices must be retained in any copies of any part of this **
51 ** The message digest is now in mdContext->digest[0...15] **
56 static void Transform (UINT4 *buf, UINT4 *in);
121 * in the message whose digest is being computed.
125 UINT4 in[16]; local
140 mdContext->in[mdi++] = *inBuf++;
145 in[i] = (((UINT4)mdContext->in[i
161 UINT4 in[16]; local
201 Transform(UINT4 *buf, UINT4 *in) argument
[all...]
/osnet-11/usr/src/lib/libresolv2/include/arpa/
H A Dport_inet.h19 * these are libresolv2 functions that were made local in previous versions
24 ulong_t inet_lnaof(struct in_addr in);
30 ulong_t inet_netof(struct in_addr in);

Completed in 104 milliseconds

1234567891011>>