/illumos-gate/usr/src/tools/onbld/Checks/ |
H A D | Makefile | 34 CStyle.py \ 35 Cddl.py \ 36 CmtBlk.py \ 37 Comments.py \ 38 Copyright.py \ 39 DbLookups.py \ 40 HdrChk.py \ 41 JStyle.py \ 42 Keywords.py \ 43 ManLint.py \ [all...] |
/illumos-gate/usr/src/tools/onbld/Scm/ |
H A D | Makefile | 31 __init__.py \ 32 Backup.py \ 33 Ignore.py \ 34 Version.py \ 35 WorkSpace.py 37 PYOBJS = $(PYSRCS:%.py=%.pyc)
|
/illumos-gate/usr/src/uts/sparc/fpu/ |
H A D | addsub.c | 32 true_add(px, py, pz) 33 unpacked *px, *py, *pz; 38 if ((int) px->fpclass <= (int) py->fpclass) { /* Reverse. */ 39 pt = py; 40 py = px; 52 if (py->fpclass == fp_zero) { 59 if (px->exponent < py->exponent) { /* Reverse. */ 60 pt = py; 61 py = px; 70 if (px->exponent != py [all...] |
H A D | compare.c | 31 _fp_compare(pfpsd, px, py, strict) 33 unpacked *px, *py; 43 if ((px->fpclass == fp_quiet) || (py->fpclass == fp_quiet) || 44 (px->fpclass == fp_signaling) || (py->fpclass == fp_signaling)) { 48 } else if ((px->fpclass == fp_zero) && (py->fpclass == fp_zero)) 51 else if (px->sign < py->sign) 53 else if (px->sign > py->sign) 56 if ((int) px->fpclass > (int) py->fpclass) 58 else if ((int) px->fpclass < (int) py->fpclass) 63 else if (px->exponent > py [all...] |
/illumos-gate/usr/src/lib/libbc/libc/gen/common/ |
H A D | _Qfaddsub.c | 32 true_add(px, py, pz) 33 unpacked *px, *py, *pz; 39 if ((int) px->fpclass < (int) py->fpclass) { /* Reverse. */ 40 pt = py; 41 py = px; 53 if (py->fpclass == fp_zero) { 60 if (px->exponent < py->exponent) { /* Reverse. */ 61 pt = py; 62 py = px; 71 if (px->exponent != py [all...] |
H A D | _Q_cmp.c | 35 unpacked px,py,pz; local 39 _fp_unpack(&py, (int *)&y,fp_op_extended); 40 fcc = _fp_compare(&px,&py,0); /* quiet NaN unexceptional */
|
H A D | _Q_cmpe.c | 35 unpacked px,py,pz; local 39 _fp_unpack(&py, (int *)&y,fp_op_extended); 40 fcc = _fp_compare(&px,&py,1); /* quiet NaN exceptional */
|
H A D | _Qfcompare.c | 32 _fp_compare(px, py, strict) 33 unpacked *px, *py; 41 if ((px->fpclass == fp_quiet) || (py->fpclass == fp_quiet) || 42 (px->fpclass == fp_signaling) || (py->fpclass == fp_signaling)) { 46 } else if ((px->fpclass == fp_zero) && (py->fpclass == fp_zero)) 49 else if (px->sign < py->sign) 51 else if (px->sign > py->sign) 54 if ((int) px->fpclass > (int) py->fpclass) 56 else if ((int) px->fpclass < (int) py->fpclass) 61 else if (px->exponent > py [all...] |
H A D | _Q_div.c | 35 unpacked px,py,pz; local 40 _fp_unpack(&py, (int *)&y,fp_op_extended); 41 _fp_div(&px,&py,&pz);
|
H A D | _Q_mul.c | 35 unpacked px,py,pz; local 40 _fp_unpack(&py, (int *)&y,fp_op_extended); 41 _fp_mul(&px,&py,&pz);
|
H A D | _Q_sub.c | 35 unpacked px,py,pz; local 40 _fp_unpack(&py,(int *)&y,fp_op_extended); 41 _fp_sub(&px,&py,&pz);
|
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/ |
H A D | wsyncdn.c | 52 int y, py; local 59 for (py = w->_begy - p->_begy, y = 0; y < w->_maxy; ++y, ++py) { 60 if (0 <= p->_last[py]) { 61 w->_first[y] = p->_first[py] - w->_begx; 62 w->_last[y] = p->_last[py] - w->_begx;
|
H A D | wsyncup.c | 62 int y, py; local 67 for (py = w->_begy - p->_begy, y = 0; y < w->_maxy; ++y, ++py) { 69 p->_first[py] = w->_begx + w->_first[y]; 70 p->_last[py] = w->_begx + w->_last[y];
|
/illumos-gate/usr/src/lib/libm/common/Q/ |
H A D | copysignl.c | 37 int *py = (int *) &y; local 39 px[HIXWORD] = (px[HIXWORD] & ~XSGNMSK) | (py[HIXWORD] & XSGNMSK);
|
H A D | scalbl.c | 42 int *py = (int *) &fn, n; local 51 if ((py[n0] & 0x7fff0000) == 0x7fff0000) { 52 if ((py[n0] & 0x80000000) != 0)
|
/illumos-gate/usr/src/lib/pyzfs/ |
H A D | Makefile.com | 29 PYSRCS= __init__.py util.py dataset.py \ 30 allow.py unallow.py \ 31 userspace.py groupspace.py holds.py table.py 39 PYOBJS= $(PYSRCS:%.py [all...] |
/illumos-gate/usr/src/tools/onbld/hgext/ |
H A D | Makefile | 30 __init__.py \ 31 cdm.py 37 # An exception to this is cdm.py, which is typically loaded using an 41 # it to be overwritten, causing packaging noise. Logic within cdm.py 45 PYSRC2 = $(PYSRCS:cdm.py=) 46 PYOBJS = $(PYSRC2:%.py=%.pyc)
|
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/ |
H A D | wsyncdn.c | 49 int y, py; local 56 for (py = w->_begy - p->_begy, y = 0; y < w->_maxy; ++y, ++py) { 57 if (0 <= p->_last[py]) { 58 w->_first[y] = p->_first[py] - w->_begx; 59 w->_last[y] = p->_last[py] - w->_begx;
|
H A D | wsyncup.c | 63 int y, py; local 72 for (py = w->_begy - p->_begy, y = 0; y < w->_maxy; ++y, ++py) { 74 p->_first[py] = w->_begx + w->_first[y]; 75 p->_last[py] = w->_begx + w->_last[y]; 86 int y, py; local
|
H A D | mvwin.c | 96 mvderwin(w, py, px) 98 int py, px; 104 __m_trace("mvderwin(%p, %d, %d)", w, py, px); 113 py += parent->_begy; 116 code = mvwin(w, py, px);
|
/illumos-gate/usr/src/common/crypto/ecc/ |
H A D | ecp.h | 52 /* Checks if point P(px, py) is at infinity. Uses affine coordinates. */ 53 mp_err ec_GFp_pt_is_inf_aff(const mp_int *px, const mp_int *py); 55 /* Sets P(px, py) to be the point at infinity. Uses affine coordinates. */ 56 mp_err ec_GFp_pt_set_inf_aff(mp_int *px, mp_int *py); 58 /* Computes R = P + Q where R is (rx, ry), P is (px, py) and Q is (qx, 60 mp_err ec_GFp_pt_add_aff(const mp_int *px, const mp_int *py, 65 mp_err ec_GFp_pt_sub_aff(const mp_int *px, const mp_int *py, 70 mp_err ec_GFp_pt_dbl_aff(const mp_int *px, const mp_int *py, mp_int *rx, 74 mp_err ec_GFp_validate_point(const mp_int *px, const mp_int *py, const ECGroup *group); 77 /* Computes R = nP where R is (rx, ry) and P is (px, py) [all...] |
H A D | ec2.h | 52 /* Checks if point P(px, py) is at infinity. Uses affine coordinates. */ 53 mp_err ec_GF2m_pt_is_inf_aff(const mp_int *px, const mp_int *py); 55 /* Sets P(px, py) to be the point at infinity. Uses affine coordinates. */ 56 mp_err ec_GF2m_pt_set_inf_aff(mp_int *px, mp_int *py); 58 /* Computes R = P + Q where R is (rx, ry), P is (px, py) and Q is (qx, 60 mp_err ec_GF2m_pt_add_aff(const mp_int *px, const mp_int *py, 65 mp_err ec_GF2m_pt_sub_aff(const mp_int *px, const mp_int *py, 70 mp_err ec_GF2m_pt_dbl_aff(const mp_int *px, const mp_int *py, mp_int *rx, 74 mp_err ec_GF2m_validate_point(const mp_int *px, const mp_int *py, const ECGroup *group); 78 /* Computes R = nP where R is (rx, ry) and P is (px, py) [all...] |
/illumos-gate/usr/src/lib/libm/common/LD/ |
H A D | scalbl.c | 43 int *py = (int *) &fn, n; local 51 if ((py[0] & 0x7fff0000) == 0x7fff0000) { 52 if ((py[0] & 0x80000000) != 0) 54 if ((py[2] & 0x7fff) == 0x7fff) { 55 if ((py[2] & 0x8000) != 0)
|
/illumos-gate/usr/src/cmd/pyzfs/ |
H A D | Makefile | 29 PYSRCS= pyzfs.py 30 PYOBJS= $(PYSRCS:%.py=%.pyc)
|
/illumos-gate/usr/src/lib/libcurses/screen/ |
H A D | wsyncdown.c | 53 int wy, px, py, endy; local 56 py = win->_pary; 66 pbch = par->_firstch + py; 67 pech = par->_lastch + py; 87 py += par->_pary;
|