/osnet-11/usr/src/lib/libsocket/inet/ |
H A D | inet_lnaof.c | 6 * 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/lib/libc/i386/gen/ |
H A D | byteorder64.c | 6 * 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/fm/topo/modules/sun4/pcibus/ |
H A D | pci_sun4.c | 6 * You may not use this file except in compliance with the License. 13 * When distributing Covered Code, include this CDDL HEADER in each 38 pci_fru_compute(topo_mod_t *mod, tnode_t *node, nvlist_t *in, nvlist_t **out) argument 40 return (pci_fru_cmn(mod, node, in, out));
|
/osnet-11/usr/src/lib/gss_mechs/mech_dh/backend/crypto/ |
H A D | md5.h | 15 ** -- FF, GG, HH modified to add in last register done ** 28 ** Digest Algorithm" in all material mentioning or referencing this ** 33 ** Data Security, Inc. MD5 Message-Digest Algorithm" in all ** 41 ** These notices must be retained in any copies of any part of this ** 53 unsigned char in[64]; /* input buffer */ member in struct:__anon1004
|
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/ |
H A D | copy_kdcreq.c | 6 * 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 D | copy_padata.c | 6 * 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...] |
H A D | copy_tick.c | 16 * 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 132 krb5_copy_tickets(krb5_context context, krb5_ticket * const *in, argument 139 for (i = 0; in[i] != NULL; i++) 146 for (i = 0; in[i] != NULL; i++) { 147 retval = krb5_copy_ticket(context, in[i], &tkt[i]);
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/ |
H A D | hashassign.t | 15 # The peephole optimiser already knows that it should convert the string in 20 # And really we should also try utf8 literals in {} and => in utf8.t 22 # Some of these tests are (effectively) duplicated in each.t 119 sub in { subroutine 124 ok (in (%names), "pass hash into a method"); 275 # now some tests for hash assignment in scalar and list context with 280 'hash assignment in list context removes duplicates' ); 282 'hash assignment in scalar context' ); 284 'scalar + hash assignment in scala [all...] |
/osnet-11/usr/src/lib/libc/sparc/gen/ |
H A D | byteorder.c | 6 * 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 D | byteorder.c | 6 * 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/libcmd/common/ |
H A D | asa.c | 62 static int asa(register Sfio_t *in, Sfio_t *out, int reclen) argument 69 cp = sfreserve(in,n=reclen, -1); 71 cp = sfgetr(in,'\n',0); 75 n = sfvalue(in)-2;
|
H A D | revlib.c | 33 * 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...] |
H A D | rev.c | 60 static int rev_char(Sfio_t *in, Sfio_t *out) argument 71 while(cp = bp = sfgetr(in,'\n',0)) 73 ep = bp + (n=sfvalue(in)) - 1; 97 while(cp = bp = sfgetr(in,'\n',0)) 99 ep = bp + (n=sfvalue(in)) -1;
|
/osnet-11/usr/src/lib/fm/topo/modules/i86pc/pcibus/common/ |
H A D | pci_i86pc.c | 6 * You may not use this file except in compliance with the License. 13 * When distributing Covered Code, include this CDDL HEADER in each 42 platform_pci_label(topo_mod_t *mod, tnode_t *node, nvlist_t *in, argument 45 return (pci_label_cmn(mod, node, in, out)); 49 platform_pci_fru(topo_mod_t *mod, tnode_t *node, nvlist_t *in, argument 52 return (pci_fru_cmn(mod, node, in, out));
|
/osnet-11/usr/src/lib/fm/topo/modules/sun4u/pcibus/common/ |
H A D | pci_sun4u.c | 6 * You may not use this file except in compliance with the License. 13 * When distributing Covered Code, include this CDDL HEADER in each 41 platform_pci_label(topo_mod_t *mod, tnode_t *node, nvlist_t *in, argument 44 return (pci_label_cmn(mod, node, in, out)); 47 platform_pci_fru(topo_mod_t *mod, tnode_t *node, nvlist_t *in, argument 50 return (pci_fru_compute(mod, node, in, out));
|
/osnet-11/usr/src/grub/grub2/util/ |
H A D | grub-macho2img.c | 11 * 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...] |
H A D | grub-menulst2cfg.c | 10 * GRUB is distributed in the hope that it will be useful, 32 FILE *in, *out; local 47 in = fopen (argv[1], "r"); 48 if (!in) 56 in = stdin; 63 if (in != stdin) 64 fclose (in); 77 if (getline (&buf, &bufsize, in) < 0) 121 if (in != stdin) 122 fclose (in); [all...] |
/osnet-11/usr/src/common/crypto/ecc/ |
H A D | ec_naf.c | 6 * 1.1 (the "License"); you may not use this file except in compliance with 28 * in which case the provisions of the GPL or the LGPL are applicable instead 65 * of bits of out, in is the original scalar, and w is the window size. 66 * NAF is discussed in the paper: D. Hankerson, J. Hernandez and A. 70 ec_compute_wNAF(signed char *out, int bitsize, const mp_int *in, int w) argument 80 MP_CHECKOK(mp_init_copy(&k, in));
|
/osnet-11/usr/src/lib/nsswitch/nis/common/ |
H A D | getnetent.c | 6 * You may not use this file except in compliance with the License. 13 * When distributing Covered Code, include this CDDL HEADER in each 36 #include <netinet/in.h> 99 * Takes an unsigned integer in host order, and returns a printable 102 * where the string is truncated (or set to '\0') is returned in *pnull. 108 struct in_addr in; local 115 in = inet_makeaddr(anet, INADDR_ANY); 116 addr = in.s_addr; 117 (void) strncpy(buf, inet_ntoa(in), buflen);
|
/osnet-11/usr/src/lib/libpp/common/ |
H A D | ppbuiltin.c | 50 struct ppinstk* in; local 80 error(2, "%s in #(...) argument", pptokchr(c)); 104 error(2, "%s in #(...) argument", pptokchr(c)); 126 error(2, "%s in #(...) argument", pptokchr(c)); 144 error(2, "%s in #(...) argument", pptokchr(c)); 169 error(2, "%s in #(...) argument", pptokchr(c)); 180 for (in = pp.in; in; in [all...] |
/osnet-11/usr/src/lib/libproc/common/ |
H A D | proc_stdio.c | 6 * (the "License"). You may not use this file except in compliance 14 * When distributing Covered Code, include this CDDL HEADER in each 107 copy_fd(int out, FILE *in, size_t len) argument 113 rewind(in); 116 alen = read(fileno(in), buffer, rlen); 126 rewind(in);
|
/osnet-11/usr/src/lib/libshell/common/sh/ |
H A D | shcomp.c | 45 "[D:dictionary?Generate a list of strings that need to be placed in a message " 72 Sfio_t *in, *out; local 106 in = sh_pathopen(cp); 109 in = sfstdin; 138 if(t = (Shnode_t*)sh_parse(shp,in,0)) 145 else if(sfeof(in)) 147 if(sferror(in)) 171 sfmove(in,out,SF_UNBOUND,-1); 172 if(in!=sfstdin) 173 sfclose(in); [all...] |
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/ |
H A D | ServiceStoreFactory.java | 6 * You may not use this file except in compliance with the License. 13 * When distributing Covered Code, include this CDDL HEADER in each 43 * DA/slpd is configured. It could be an in-memory database, 183 // Read the service store in the standard format from the input 185 private static void deserialize(BufferedReader in, ServiceStore store) argument 194 while (in.ready()) { 196 String line = in.readLine().trim(); 334 while (in.ready()) { 336 line = in.readLine(); 425 // Write the service store in th [all...] |
/osnet-11/usr/src/lib/libnsl/rpc/ |
H A D | inet_ntoa.c | 6 * You may not use this file except in compliance with the License. 13 * When distributing Covered Code, include this CDDL HEADER in each 39 * Redistribution and use in source and binary forms, with or without 44 * 2. Redistributions in binary form must reproduce the above copyright 45 * notice, this list of conditions and the following disclaimer in the 73 * copyright notice and this permission notice appear in all copies, and that 74 * the name of Digital Equipment Corporation not be used in advertising or 93 * copyright notice and this permission notice appear in all copies. 119 #include <netinet/in.h> 125 inet_ntoa_r(in, 277 inet_netof(struct in_addr in) argument [all...] |
/osnet-11/usr/src/lib/fm/topo/modules/common/ipmi/common/ |
H A D | ipmi_methods.c | 6 * You may not use this file except in compliance with the License. 13 * When distributing Covered Code, include this CDDL HEADER in each 38 get_fmtstr(topo_mod_t *mod, nvlist_t *in) argument 46 if ((ret = nvlist_lookup_nvlist(in, TOPO_PROP_ARGS, &args)) != 0) { 127 nvlist_t *in, nvlist_t **out) 135 if ((ret = nvlist_lookup_nvlist(in, TOPO_PROP_ARGS, &args)) != 0) { 146 if ((fmtstr = get_fmtstr(mod, in)) == NULL) { 175 nvlist_t *in, nvlist_t **out) 182 if ((ret = nvlist_lookup_nvlist(in, TOPO_PROP_ARGS, &args)) != 0) { 126 ipmi_fru_label(topo_mod_t *mod, tnode_t *node, topo_version_t vers, nvlist_t *in, nvlist_t **out) argument 174 ipmi_fru_fmri(topo_mod_t *mod, tnode_t *node, topo_version_t vers, nvlist_t *in, nvlist_t **out) argument
|