Searched defs:ip (Results 1 - 25 of 119) sorted by relevance

12345

/osnet-11/usr/src/lib/libnsl/rpc/
H A Dauthsys_prot.c89 xdr_uid_t(XDR *xdrs, uid_t *ip) argument
93 return (xdr_short(xdrs, (short *)ip));
94 return (xdr_int(xdrs, (int *)ip));
101 xdr_gid_t(XDR *xdrs, gid_t *ip) argument
105 return (xdr_short(xdrs, (short *)ip));
106 return (xdr_int(xdrs, (int *)ip));
H A Dxdr_sizeof.c42 x_putlong(XDR *xdrs, long *ip) argument
51 x_putint32_t(XDR *xdrs, int32_t *ip) argument
/osnet-11/usr/src/lib/libeti/menu/common/
H A Dmenuopts.c41 ITEM **ip; local
63 for (ip = Items(m); *ip; ip++) {
65 Value(*ip) = FALSE;
H A Dconnect.c48 ITEM **ip; local
51 for (ip = Items(m); *ip; ip++) {
52 if (NameLen(*ip) > maxn) {
53 maxn = NameLen(*ip);
55 if (DescriptionLen(*ip) > maxd) {
56 maxd = DescriptionLen(*ip);
66 ITEM **ip; local
70 for (ip
118 ITEM **ip; local
[all...]
H A Dpost.c187 ITEM **ip; local
236 for (ip = Items(m); *ip; ip++) {
237 Value(*ip) = FALSE;
/osnet-11/usr/src/lib/libast/common/port/
H A Dastquery.c48 Sfio_t* ip; local
73 ip = rfp;
78 ip = sfstdin;
84 for (n = c = sfgetc(ip);; c = sfgetc(ip))
/osnet-11/usr/src/lib/libdtrace/common/
H A Ddt_inttab.c38 dt_inttab_t *ip; local
42 if ((ip = dt_zalloc(dtp, sizeof (dt_inttab_t))) == NULL ||
43 (ip->int_hash = dt_zalloc(dtp, sizeof (void *) * len)) == NULL) {
44 dt_free(dtp, ip);
48 ip->int_hdl = dtp;
49 ip->int_hashlen = len;
51 return (ip);
55 dt_inttab_destroy(dt_inttab_t *ip) argument
59 for (hp = ip->int_head; hp != NULL; hp = np) {
61 dt_free(ip
69 dt_inttab_insert(dt_inttab_t *ip, uint64_t value, uint_t flags) argument
103 dt_inttab_size(const dt_inttab_t *ip) argument
109 dt_inttab_write(const dt_inttab_t *ip, uint64_t *dst) argument
[all...]
/osnet-11/usr/src/lib/efcode/engine/
H A Dinterp.c94 token_t *ip; local
96 ip = IP;
100 IP = ip;
106 token_t *ip, *wa; local
114 ip = IP;
119 IP = ip;
/osnet-11/usr/src/lib/fm/topo/modules/i86pc/x86pi/common/
H A Dx86pi_chassis.c43 smbios_info_t ip; local
60 rv = smbios_info_common(shp, smb_id, &ip);
73 ip.smbi_serial, 0);
74 ch_hcfmri.version = x86pi_cleanup_smbios_str(mod, ip.smbi_version, 0);
76 ip.smbi_manufacturer, 0);
/osnet-11/usr/src/lib/krb5/plugins/kdb/db2/libdb2/recno/
H A Drec_delete.c160 indx_t *ip, cnt, offset; local
189 for (cnt = &h->linp[idx] - (ip = &h->linp[0]); cnt--; ++ip)
190 if (ip[0] < offset)
191 ip[0] += nbytes;
192 for (cnt = &h->linp[NEXTINDEX(h)] - ip; --cnt; ++ip)
193 ip[0] = ip[1] < offset ? ip[
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/fs/zfs/
H A Dzfs_fletcher.c45 const grub_uint64_t *ip = buf; local
46 const grub_uint64_t *ipend = ip + (size / sizeof (grub_uint64_t));
49 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2)
51 a0 += grub_zfs_to_cpu64 (ip[0], endian);
52 a1 += grub_zfs_to_cpu64 (ip[1], endian);
67 const grub_uint32_t *ip = buf; local
68 const grub_uint32_t *ipend = ip + (size / sizeof (grub_uint32_t));
71 for (a = b = c = d = 0; ip < ipend; ip
[all...]
/osnet-11/usr/src/grub/grub-0.97/netboot/
H A Digmp.h21 struct igmp_ip_t { /* Format of an igmp ip packet */
22 struct iphdr ip; member in struct:igmp_ip_t
/osnet-11/usr/src/lib/libast/common/string/
H A Dfmtfs.c59 register Id_t* ip; local
75 else if (ip = (Id_t*)dtmatch(dict, &st->st_dev))
76 return ip->name;
84 if (!dict || !(ip = newof(0, Id_t, 1, strlen(s))))
93 strcpy(ip->name, s);
96 dtinsert(dict, ip);
97 return ip->name;
H A Dfmtgid.c62 register Id_t* ip; local
76 else if (ip = (Id_t*)dtmatch(dict, &gid))
77 return ip->name;
93 if (dict && (ip = newof(0, Id_t, 1, strlen(name))))
95 ip->id = gid;
96 strcpy(ip->name, name);
97 dtinsert(dict, ip);
98 return ip->name;
H A Dfmtuid.c62 register Id_t* ip; local
76 else if (ip = (Id_t*)dtmatch(dict, &uid))
77 return ip->name;
93 if (dict && (ip = newof(0, Id_t, 1, strlen(name))))
95 ip->id = uid;
96 strcpy(ip->name, name);
97 dtinsert(dict, ip);
98 return ip->name;
H A Dstrgid.c72 register Id_t* ip; local
86 else if (ip = (Id_t*)dtmatch(dict, name))
87 return ip->id;
114 if (dict && (ip = newof(0, Id_t, 1, strlen(name))))
116 strcpy(ip->name, name);
117 ip->id = id >= 0 ? id : -2;
118 dtinsert(dict, ip);
H A Dstruid.c67 register Id_t* ip; local
80 else if (ip = (Id_t*)dtmatch(dict, name))
81 return ip->id;
102 if (dict && (ip = newof(0, Id_t, 1, strlen(name))))
104 strcpy(ip->name, name);
105 ip->id = id >= 0 ? id : -2;
106 dtinsert(dict, ip);
/osnet-11/usr/src/grub/grub-0.97/stage2/
H A Dzfs_fletcher.c32 const uint64_t *ip = buf; local
33 const uint64_t *ipend = ip + (size / sizeof (uint64_t));
36 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) {
37 a0 += ip[0];
38 a1 += ip[1];
49 const uint64_t *ip = buf; local
50 const uint64_t *ipend = ip + (size / sizeof (uint64_t));
53 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip
66 const uint32_t *ip = buf; local
83 const uint32_t *ip = buf; local
[all...]
/osnet-11/usr/src/cmd/sendmail/libsm/
H A Dutil.c147 char *ip, *op; local
155 for (ip = ibp, olen = 1; *ip != '\0'; ip++, olen++)
157 if (SM_MM_QUOTE(*ip))
197 for (ip = ibp, op = obp, bufused = 0; *ip != '\0'; ip++)
199 if (SM_MM_QUOTE(*ip))
205 op[bufused++] = *ip;
230 char *ip, *op; local
[all...]
/osnet-11/usr/src/lib/libc/port/gen/
H A Dgetopt.c132 char *ip; /* ptr into optstring, traverses every char */ local
136 cp = ip = (char *)optstring;
138 if (*ip != '(' && *++ip == '\0')
140 if (*ip == ':' && *++ip == '\0')
142 while (*ip == '(') {
143 if (*++ip == '\0')
147 while (*ip != ')' && *ip !
[all...]
/osnet-11/usr/src/lib/libwrap/
H A Dfix_options.c20 #include <netinet/ip.h>
47 struct protoent *ip; local
53 if ((ip = getprotobyname("ip")) != 0)
54 ipproto = ip->p_proto;
/osnet-11/usr/src/lib/libshadowfs/common/
H A Dshadow_pq.c37 uint64_t ip, jp; local
57 ip = pqp->shpq_priority(p);
66 if (jp < ip)
82 uint64_t ip, cp0, cp1, cp; local
95 ip = pqp->shpq_priority(pqp->shpq_items[i]);
118 if (ip <= cp)
/osnet-11/usr/src/lib/libsmedia/plugins/blkdev/common/
H A Db_generic.c77 _m_get_media_info(rmedia_handle_t *handle, void *ip) argument
79 smmedium_prop_t *mp = (smmedium_prop_t *)ip;
135 _m_get_device_info(rmedia_handle_t *handle, void *ip) argument
137 smdevice_info_t *mp = (smdevice_info_t *)ip;
186 _m_free_device_info(rmedia_handle_t *handle, void *ip) argument
188 struct smdevice_info *dev_info = ip;
/osnet-11/usr/src/lib/libsmedia/plugins/pcata/common/
H A Da_generic.c82 _m_get_media_info(rmedia_handle_t *handle, void *ip) argument
84 smmedium_prop_t *medinfo = ip;
170 _m_get_device_info(rmedia_handle_t *handle, void *ip) argument
172 smdevice_info_t *mp = (smdevice_info_t *)ip;
227 _m_free_device_info(rmedia_handle_t *handle, void *ip) argument
229 struct smdevice_info *dev_info = ip;
/osnet-11/usr/src/lib/libipmi/common/
H A Dipmi_sel.c43 ipmi_sel_info_t *ip; local
56 ip = (ipmi_sel_info_t *)rsp->ic_data;
58 tmp16 = LE_IN16(&ip->isel_entries);
59 (void) memcpy(&ip->isel_entries, &tmp16, sizeof (tmp16));
60 tmp16 = LE_IN16(&ip->isel_free);
61 (void) memcpy(&ip->isel_free, &tmp16, sizeof (tmp16));
62 tmp32 = LE_IN32(&ip->isel_add_ts);
63 (void) memcpy(&ip->isel_add_ts, &tmp32, sizeof (tmp32));
64 tmp32 = LE_IN32(&ip->isel_erase_ts);
65 (void) memcpy(&ip
[all...]

Completed in 128 milliseconds

12345