Searched defs:px (Results 76 - 94 of 94) sorted by relevance

1234

/illumos-gate/usr/src/lib/libm/common/Q/
H A D__tanl.c115 int *pt = (int *) &t, *px = (int *) &x; local
119 hx = px[i0];
H A Dpowl.c69 int *px = (int *) &x; local
74 ix = px[i0];
78 if (((ix - 0x3fff0000) | px[i1] | px[i2] | px[i3]) == 0) {
97 ix = px[i0];
102 px[i0] = ix;
140 int *px = (int *) &x; local
143 hx = px[i0];
144 lx = px[i
[all...]
/illumos-gate/usr/src/lib/libm/common/R/
H A Dpowf.c233 int *px = (int *)&dx, *pz = (int *)&dz, i, n, m; local
242 i = px[HIWORD] + 0x4000;
276 px[HIWORD] += m << 20;
/illumos-gate/usr/src/lib/libmvec/common/
H A D__vhypot.c78 __vhypot_n(int n, double * restrict px, int stridex, double * restrict py,
90 hx0 = HI(px); \
92 spx = px; spy = py; spz = pz; \
100 __vhypot(int n, double * restrict px, int stridex, double * restrict py, argument
116 spx = px;
119 hx0 = HI(px);
123 px += stridex;
133 x = *(px - stridex);
139 int lx = LO((px - stridex));
175 x = *(px
345 __vhypot_n(int n, double * restrict px, int stridex, double * restrict py, int stridey, double * restrict pz, int stridez) argument
[all...]
H A D__vpowf.c108 static void __vpowfx(int n, float * restrict px, float * restrict py,
111 static void __vpowf_n(int n, float * restrict px, int stridex, float * restrict py,
412 px += stridex; \
417 spx = px; spy = py; spz = pz; \
425 __vpowf(int n, float * restrict px, int stridex, float * restrict py, argument
437 unsigned hx = *(unsigned*)px;
443 __vpowfx(n, px, py, stridey, pz, stridez);
452 spx = px;
458 ux = *(unsigned int*)px;
471 RETURN (*px
570 __vpowf_n(int n, float * restrict px, int stridex, float * restrict py, int stridey, float * restrict pz, int stridez) argument
696 __vpowfx(int n, float * restrict px, float * restrict py, int stridey, float * restrict pz, int stridez) argument
[all...]
H A D__vrhypotf.c230 __vrhypotf_n(int n, float * restrict px, int stridex, float * restrict py,
241 spx = px; spy = py; spz = pz; \
251 __vrhypotf(int n, float * restrict px, int stridex, float * restrict py, argument
261 spx = px;
264 ax0 = *(int*)px;
271 px += stridex;
275 x0 = *(px - stridex);
280 ax0 = *(int*)px;
284 ax0 = *(int*)px;
288 int tx = *(int*)(px
351 __vrhypotf_n(int n, float * restrict px, int stridex, float * restrict py, int stridey, float * restrict pz, int stridez) argument
[all...]
H A D__vrsqrt.c89 __vrsqrt_n(int n, double * restrict px, int stridex, double * restrict py, int stridey);
99 spx = px; spy = py; \
100 hx = HI(px); \
117 __vrsqrt(int n, double * restrict px, int stridex, double * restrict py, int stridey) argument
126 spx = px;
128 hx = HI(px);
131 px += stridex;
134 res = *(px - stridex);
144 lx = LO((px - stridex));
145 res = *(px
287 __vrsqrt_n(int n, double * restrict px, int stridex, double * restrict py, int stridey) argument
[all...]
H A D__vrsqrtf.c222 __vrsqrtf_n(int n, float * restrict px, int stridex, float * restrict py, int stridey);
232 spx = px; spy = py; \
233 ax0 = *(int*)px; \
241 __vrsqrtf(int n, float * restrict px, int stridex, float * restrict py, int stridey) argument
251 spx = px;
253 ax0 = *(int*)px;
256 px += stridex;
259 res = *(px - stridex);
268 res = *(px - stridex);
311 ax0 = *(int*)px;
402 __vrsqrtf_n(int n, float * restrict px, int stridex, float * restrict py, int stridey) argument
[all...]
H A D__vrhypot.c118 px += stridex; \
132 hx##I = HI(px); \
139 lx = LO(px); \
141 x = *px; \
149 x##I = *px; \
155 lx = LO(px); \
207 __vrhypot(int n, double * restrict px, int stridex, double * restrict py, argument
243 px += stridex;
252 px += stridex;
346 px
[all...]
H A D__vpow.c119 __vpowx(int n, double * restrict px, double * restrict py,
504 px += stridex; \
518 hx = HI(px); \
519 lx = LO(px); \
526 ull_y0 = *(unsigned long long*)px; \
530 y0 = *px; \
555 y0 = *px; \
678 __vpow(int n, double * restrict px, int stridex, double * restrict py, argument
719 unsigned hx = HI(px);
720 unsigned lx = LO(px);
1129 __vpowx(int n, double * restrict px, double * restrict py, int stridey, double * restrict pz, int stridez) argument
[all...]
/illumos-gate/usr/src/common/crypto/ecc/
H A Decp_jac.c61 /* Converts a point P(px, py) from affine coordinates to Jacobian
66 ec_GFp_pt_aff2jac(const mp_int *px, const mp_int *py, mp_int *rx, argument
71 if (ec_GFp_pt_is_inf_aff(px, py) == MP_YES) {
74 MP_CHECKOK(mp_copy(px, rx));
85 /* Converts a point P(px, py, pz) from Jacobian projective coordinates to
90 ec_GFp_pt_jac2aff(const mp_int *px, const mp_int *py, const mp_int *pz, argument
99 MP_CHECKOK(mp_init(&z1, FLAG(px)));
100 MP_CHECKOK(mp_init(&z2, FLAG(px)));
101 MP_CHECKOK(mp_init(&z3, FLAG(px)));
104 if (ec_GFp_pt_is_inf_jac(px, p
131 ec_GFp_pt_is_inf_jac(const mp_int *px, const mp_int *py, const mp_int *pz) argument
139 ec_GFp_pt_set_inf_jac(mp_int *px, mp_int *py, mp_int *pz) argument
153 ec_GFp_pt_add_jac_aff(const mp_int *px, const mp_int *py, const mp_int *pz, const mp_int *qx, const mp_int *qy, mp_int *rx, mp_int *ry, mp_int *rz, const ECGroup *group) argument
242 ec_GFp_pt_dbl_jac(const mp_int *px, const mp_int *py, const mp_int *pz, mp_int *rx, mp_int *ry, mp_int *rz, const ECGroup *group) argument
335 ec_GFp_pt_mul_jac(const mp_int *n, const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
416 ec_GFp_pts_mul_jac(const mp_int *k1, const mp_int *k2, const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
[all...]
/illumos-gate/usr/src/uts/sun4/io/px/
H A Dpx_var.h67 * px soft state structure:
69 * Each px node has a px soft state structure.
71 struct px { struct
89 * px device node properties:
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_icmp.c67 char *pt, *pc, *px; local
81 px = "";
304 px = extbuff;
369 if (*px) {
371 pt, pc, px);
/illumos-gate/usr/src/lib/libshell/common/sh/
H A Djobs.c248 struct process *px; local
315 px = 0;
324 px=job_byjid(pw->p_job);
327 if(px)
330 job_unlink(px);
331 px->p_nxtjob = job.pwlist;
332 job.pwlist = px;
411 if(px && pw != px)
415 px
768 register struct process *px; local
845 register struct process *px = pw; local
1085 register struct process *pw, *px; local
1244 register struct process *pw, *px; local
1300 register struct process *pw=0,*px; local
1568 job_unstop(register struct process *px) argument
1649 register struct process *px; local
1795 register struct process *pw, *px, *pwnext; local
[all...]
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Diso9660.h176 } px; member in union:rock_ridge::__anon2191
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/
H A Din.rshd.c452 int pv[2], pw[2], px[2], cc; local
901 if (pipe(px) < 0) {
924 (void) close(px[0]);
939 /* read f (net), write to px[1] (child stdin) */
1000 (void) close(px[1]);
1004 wcc = write(px[1], buf, cc);
1014 (void) close(px[1]);
1046 (void) close(px[1]);
1048 (void) dup2(px[0], 0);
1051 (void) close(px[
[all...]
/illumos-gate/usr/src/cmd/dc/
H A Ddc.c782 struct blk *ps, *px; local
879 px = copy(divr, length(divr)); /* 11/88 don't corrupt ddivr */
880 chsign(px);
881 ps = add(px, divd);
/illumos-gate/usr/src/uts/sun4v/io/px/
H A Dpx_lib4v.c52 * Hypervisor VPCI services information for the px nexus driver.
63 * Hypervisor SDIO services information for the px nexus driver.
73 * Hypervisor SDIO ERR services information for the px nexus driver.
107 cmn_err(CE_WARN, "px: unsupported intr api group: "
2073 * note this depends on px structure being initialized
2193 * its readyness back to px driver
2216 /* see if px iteslf has assigned children */
2219 /* scan dev under this px */
2226 /* Called from px/bridge driver directly to report its readyness */
2230 px_t *px; local
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A DmDNSEmbeddedAPI.h1035 // The RDataBody2 union is the same as above, except it includes fields for the larger types like soa, rp, px
1045 rdataPX px; // This is large; not included in the normal RDataBody definition member in union:__anon53

Completed in 181 milliseconds

1234