Searched defs:pe (Results 1 - 25 of 61) sorted by relevance

123

/illumos-gate/usr/src/cmd/ipf/lib/common/
H A Dratoi.c17 char *pe; local
19 i = (int)strtol(ps, &pe, 0);
20 if (*pe != '\0' || i < min || i > max)
/illumos-gate/usr/src/cmd/ldap/common/
H A Didtest.c32 PE pe; local
35 /* read the pe from standard in */
44 /* write the pe to standard out */
63 while ( (pe = ps2pe( psin )) != NULLPE ) {
64 pe2pl( pserr, pe );
65 pe2ps( psout, pe );
/illumos-gate/usr/src/lib/libc/inc/
H A Dbase_inlines.h44 __mul_set(double x, double y, int *pe) argument
56 : "=&e" (__result), "=m" (*pe), "=r" (__fsr), "=m" (*__addr)
64 __div_set(double x, double y, int *pe) argument
76 : "=&e" (__result), "=m" (*pe), "=r" (__fsr), "=m" (*__addr)
/illumos-gate/usr/src/cmd/rexd/
H A Dsharetab.c160 char *p, *pe; local
172 if (pe = strchr(p, '=')) {
173 *pe = '\0';
175 return (pe + 1);
/illumos-gate/usr/src/lib/libresolv2/common/irs/
H A Dgetprotoent_r.c41 struct protoent *pe = getprotobyname(name); local
45 if (pe == NULL || (n = copy_protoent(pe, pptr, PROTO_R_COPY)) != 0)
52 if (pe == NULL)
55 return (copy_protoent(pe, pptr, PROTO_R_COPY));
61 struct protoent *pe = getprotobynumber(proto); local
65 if (pe == NULL || (n = copy_protoent(pe, pptr, PROTO_R_COPY)) != 0)
72 if (pe == NULL)
75 return (copy_protoent(pe, ppt
87 struct protoent *pe = getprotoent(); local
139 copy_protoent(struct protoent *pe, struct protoent *pptr, PROTO_R_COPY_ARGS) argument
183 copy_protoent(struct protoent *pe, struct protoent *pptr, PROTO_R_COPY_ARGS) argument
[all...]
/illumos-gate/usr/src/cmd/fs.d/nfs/lib/
H A Dsharetab.c170 char *p, *pe; local
182 if ((pe = strchr(p, '=')) != NULL) {
183 *pe = '\0';
185 val = strdup(pe + 1);
/illumos-gate/usr/src/lib/libc/port/gen/
H A Devent_port.c69 port_get(int port, port_event_t *pe, struct timespec *to) argument
73 r.r_vals = _portfs(PORT_GET, port, (uintptr_t)pe, to->tv_sec,
76 r.r_vals = _portfs(PORT_GET, port, (uintptr_t)pe, 0, 0, NULL);
/illumos-gate/usr/src/cmd/lp/cmd/lpsched/
H A Dfaults.c41 register char *ptr, *pe; local
50 pe = "PrinterError:";
51 peLen = strlen(pe);
52 if (strncmp(reason,pe,peLen) == 0)
58 pe = reason + strlen(reason) -1;
59 pe = reason;
60 while (pe = strchr(pe,'\n'))
61 *pe = ' ';
63 pe
[all...]
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A D_sprintf_sup.c242 _unpacked_to_big_float(unpacked *pu, _big_float *pb, int *pe) argument
245 * Converts pu into a bigfloat *pb of minimal length; exponent *pe
246 * such that pu = *pb * 2 ** *pe
264 *pe = pu->exponent + 1 - 16 * pb->blength;
268 printf(" unpacked to big float 2**%d * ", *pe);
/illumos-gate/usr/src/lib/libc/port/fp/
H A D__flt_decim.c187 * *pe. On entry, nrx is the number of rounding errors already com-
188 * mitted in forming *x. On exit, *pe is 0 if *x was already integral
218 __arint_set_n(double *x, int nrx, int *pe) argument
231 *pe = 0;
233 *pe = 1;
235 *pe = 2;
240 *pe = (*x == halfdec)? 2 : 1;
242 *pe = 1;
248 *pe = (rx == *x)? 0 : 1;
253 *pe
[all...]
H A Ddecimal_bin.c283 * to an integer value in double precision format, and set *pe
287 __digits_to_double(char *s, int n, int *pe) argument
299 *pe = 0;
315 *pe = ((t - th) == tl)? 0 : 1;
/illumos-gate/usr/src/cmd/hal/hald/solaris/
H A Dosspec.c206 port_event_t pe; local
217 (void) port_get(mnttab_port, &pe, &timeout);
/illumos-gate/usr/src/cmd/svc/startd/
H A Dwait.c256 port_event_t pe; local
260 if (port_get(port_fd, &pe, NULL) != 0) {
271 fd = pe.portev_object;
272 wi = pe.portev_user;
276 if ((pe.portev_events & POLLHUP) == POLLHUP) {
305 (pe.portev_events & POLLERR) == 0) {
/illumos-gate/usr/src/cmd/tsol/tninfo/
H A Dtninfo.c279 struct protoent *pe; local
299 if ((pe = getprotobynumber(tsme->tsme_mlp.mlp_ipp)) == NULL)
302 (void) printf("/%s", pe->p_name);
/illumos-gate/usr/src/lib/libm/common/complex/
H A Dk_atan2l.c482 static const long double pe[] = { variable
614 mx_polyl(zz, pe, ee, 3);
657 mx_polyl(zz, pe, ee, 3);
/illumos-gate/usr/src/cmd/oamuser/user/
H A Duserdefs.c74 #define FIELD(up, pe, type) (*(type *)((char *)(up) + (pe)->off))
167 const parsent_t *pe; local
188 pe = scan(&ptr);
190 if (pe != NULL) {
191 switch (pe->type) {
193 FIELD(&defaults, pe, int) =
197 FIELD(&defaults, pe, projid_t) =
201 FIELD(&defaults, pe, char *) = dup_to_nl(ptr);
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/traceroute/
H A Dtraceroute_aux.c150 struct protoent *pe; local
156 if ((pe = getprotobyname("ip")) == NULL) {
183 if (setsockopt(sndsock, pe->p_proto, IP_OPTIONS, (const char *)optlist,
/illumos-gate/usr/src/cmd/ctwatch/
H A Dctwatch.c378 port_event_t pe; local
380 if (port_get(port_fd, &pe, NULL) == -1) {
385 w = pe.portev_user;
386 while (get_event(pe.portev_object, w->wf_type, opt_verbose))
388 if (port_associate(port_fd, PORT_SOURCE_FD, pe.portev_object,
389 POLLIN, pe.portev_user) == -1)
/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dldap.c989 char *pe; local
1013 pe = *result + *resultsz;
1018 p < pe)
1024 pe - p);
1025 if (p < pe)
1030 pe - p);
1032 if (p >= pe)
/illumos-gate/usr/src/cmd/checknr/
H A Dchecknr.c161 static void pe(int lineno);
292 pe(lineno);
299 pe(lineno);
337 pe(lineno);
354 pe(lineno);
380 pe(stk[i].lno);
472 pe(stk[j+1].lno);
485 pe(lineno);
498 pe(int lineno) function
516 pe(linen
[all...]
/illumos-gate/usr/src/cmd/pools/poold/
H A Dpoold.c291 pool_elem_t *pe; local
333 pe = pool_conf_to_elem(conf);
335 if (pool_put_property(conf, pe, "system.poold.sighup",
342 (void) pool_rm_property(conf, pe,
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/rdist/
H A Dexpand.c346 register char *pe, *pm, *pl; local
356 for (pe = ++p; *pe; pe++)
357 switch (*pe) {
370 for (pe++; *pe && *pe != ']'; pe++)
372 if (!*pe)
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/tftp/
H A Dtftp.c624 struct errmsg *pe; local
629 for (pe = errmsgs; pe->e_code >= 0; pe++)
630 if (pe->e_code == error)
632 if (pe->e_code < 0) {
633 pe->e_msg = strerror(error - 100);
636 (void) strlcpy(tp->th_msg, pe->e_msg,
638 length = strlen(pe->e_msg) + 4;
/illumos-gate/usr/src/cmd/sgs/m4/common/
H A Dm4macs.c220 wchar_t *pe; /* used by grammar */ variable
231 pe = ap[1];
/illumos-gate/usr/src/uts/common/io/chxge/
H A Dglue.c174 struct pe_reg *pe; local
201 pe = (struct pe_reg *)dmp->b_rptr;
209 if ((dmp->b_wptr - dmp->b_rptr) != sizeof (*pe)) {
215 pe->addr &= (uint32_t)~3;
217 pe->pe_mask32 = 0xFFFFFFFF;
219 if (pe->addr == 0x950)
220 pe->pe_reg_val = reg = t1_sge_get_ptimeout(chp);
222 pe->pe_reg_val = reg = t1_read_reg_4(chp, pe->addr);
225 iocp->ioc_count = sizeof (*pe);
[all...]

Completed in 109 milliseconds

123