/illumos-gate/usr/src/lib/libc/sparc/fp/ |
H A D | _Q_set_except.c | 37 * _Q_set_exception(ex) simulates the floating point exceptions indicated by 38 * ex. This routine is not used by the new quad emulation routines but is 42 _Q_set_exception(unsigned int ex) argument 47 if (ex == 0) 50 if ((ex & (1 << fp_invalid)) != 0) 52 if ((ex & (1 << fp_overflow)) != 0) 54 if ((ex & (1 << fp_underflow)) != 0) { 55 if ((ex & (1 << fp_inexact)) != 0 || 61 if ((ex & (1 << fp_division)) != 0) 63 if ((ex [all...] |
H A D | __quad_mag.c | 48 unsigned int lx, ly, ex, ey, frac2, frac3, frac4; local 53 ex = (x->l.msw & 0x7fffffff) >> 16; 55 if (ex == 0) 56 ex = 1; 68 e = (int) ex - (int) ey; 139 ex++; 164 ex++; 170 if (ex >= 0x7fff) { 183 z->l.msw |= (ex << 16); 208 unsigned int lx, ly, ex, e local [all...] |
/illumos-gate/usr/src/ucblib/libcurses/ |
H A D | touchwin.c | 50 touchline(WINDOW *win, int y, int sx, int ex) argument 53 fprintf(outf, "TOUCHLINE(%0.2o, %d, %d, %d)\n", win, y, sx, ex); 58 ex += win->_ch_off; 61 win->_lastch[y] = (short)ex; 65 if (win->_lastch[y] < ex) 66 win->_lastch[y] = (short)ex;
|
/illumos-gate/usr/src/lib/libast/common/sfio/ |
H A D | sfclose.c | 36 reg int local, ex, rv; local 74 if(f->disc && (ex = SFRAISE(f,local ? SF_NEW : SF_CLOSING,NIL(Void_t*))) != 0) 75 SFMTXRETURN(f,ex); 152 { if(f->disc && (ex = SFRAISE(f,SF_FINAL,NIL(Void_t*))) != 0 ) 153 { rv = ex;
|
/illumos-gate/usr/src/lib/libbc/libc/gen/common/ |
H A D | _Q_add.c | 51 _Q_set_exception(unsigned ex) argument 55 if((ex&(1<<fp_invalid))!=0) t = (zero/zero); 56 if((ex&(1<<fp_overflow))!=0) t = (huge*huge); 57 if((ex&(1<<fp_underflow))!=0) t = (tiny*tiny); 58 if((ex&(1<<fp_division))!=0) t = (tiny/zero); 59 if((ex&(1<<fp_inexact))!=0) t = (huge+tiny);
|
H A D | _unpack_dble.c | 80 _fp_set_exception(enum fp_exception_type ex) argument 82 _fp_current_exceptions |= 1 << (int) ex;
|
/illumos-gate/usr/src/lib/libm/common/m9x/ |
H A D | lroundl.c | 105 int ex, sx, i; local 108 ex = xx.i[2] & 0x7fff; 110 if (ex < 0x403e) { /* |x| < 2^63 */ 111 if (ex < 0x3fff) { /* |x| < 1 */ 112 if (ex >= 0x3ffe) 118 if (ex < 0x401e) { 119 i = 1 << (0x401d - ex); 123 i = 1 << (0x403d - ex); 130 xx.i[2] = sx | ++ex;
|
H A D | roundl.c | 128 int ex, sx, i; local 131 ex = xx.i[2] & 0x7fff; 133 if (ex < 0x403e) { /* |x| < 2^63 */ 134 if (ex < 0x3fff) { /* |x| < 1 */ 135 if (ex >= 0x3ffe) 141 if (ex < 0x401e) { 142 i = 1 << (0x401d - ex); 146 i = 1 << (0x403d - ex); 153 xx.i[2] = sx | ++ex; 157 } else if (ex < [all...] |
H A D | truncl.c | 82 int ex, sx, i; local 85 ex = xx.i[2] & 0x7fff; 87 if (ex < 0x403e) { /* |x| < 2^63 */ 88 if (ex < 0x3fff) /* |x| < 1 */ 92 if (ex < 0x401e) { 93 i = 1 << (0x401d - ex); 97 i = 1 << (0x403d - ex); 101 } else if (ex < 0x7fff) /* x is integral */
|
H A D | llroundl.c | 127 int ex, sx, i; local 130 ex = xx.i[2] & 0x7fff; 133 if (ex < 0x403e) { /* |x| < 2^63 */ 135 if (ex < 0x3fff) { 136 if (ex >= 0x3ffe) 142 if (ex < 0x401e) { 143 i = 1 << (0x401d - ex); 147 i = 1 << (0x403d - ex); 154 xx.i[2] = sx | ++ex;
|
H A D | lrintl.c | 134 int ex; local 137 ex = xx.i[2] & 0x7fff; 138 if (ex < 0x403e) { /* |x| < 2^63 */
|
H A D | llrintl.c | 155 int ex; local 158 ex = xx.i[2] & 0x7fff; 160 if (ex < 0x403e) { /* |x| < 2^63 */
|
/illumos-gate/usr/src/cmd/fs.d/nfs/dfshares/ |
H A D | dfshares.c | 102 struct exportnode *ex = NULL; local 134 0, xdr_exports, (caddr_t)&ex, tout)) { 140 if (ex == NULL) { 151 while (ex) { 153 host, ex->ex_dir, host, " -", " -"); 154 ex = ex->ex_next; 156 free_ex(ex); 161 free_ex(ex) 162 struct exportnode *ex; [all...] |
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/ |
H A D | SLPServerHeaderV2.java | 207 SrvLocMsg makeErrorReply(Exception ex) { argument 232 Assert.slpassert(ex != null, 234 new Object[] {ex}); 236 if (ex instanceof ServiceLocationException) { 238 hdr.errCode = ((ServiceLocationException)ex).getErrorCode(); 245 } else if (ex instanceof IllegalArgumentException || 246 ex instanceof IOException) { 270 } catch (CloneNotSupportedException ex) {
|
/illumos-gate/usr/src/lib/libc/port/fp/ |
H A D | pack_float.c | 100 round(unpacked *pu, int roundword, enum fp_direction_type rd, int *ex) argument 118 *ex |= (1 << fp_inexact); 155 fp_exception_field_type *ex) 214 *ex = (fp_exception_field_type)e; 219 fp_exception_field_type *ex) 287 *ex = (fp_exception_field_type)e; 292 fp_exception_field_type *ex) 355 *ex = (fp_exception_field_type)e; 360 fp_exception_field_type *ex) 442 *ex 154 __pack_single(unpacked *pu, single *px, enum fp_direction_type rd, fp_exception_field_type *ex) argument 218 __pack_double(unpacked *pu, double *px, enum fp_direction_type rd, fp_exception_field_type *ex) argument 291 __pack_extended(unpacked *pu, extended *px, enum fp_direction_type rd, fp_exception_field_type *ex) argument 359 __pack_quadruple(unpacked *pu, quadruple *px, enum fp_direction_type rd, fp_exception_field_type *ex) argument [all...] |
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | select.c | 61 long *in, *out, *ex; local 111 ex = (long *)ex0->fds_bits; 113 b = (ulong_t)(*in | *out | *ex); 124 if (*ex & m) 131 ex++; 162 ex = (long *)ex0->fds_bits; 164 *ex++ = 0; 222 ex = (long *)&ex0->fds_bits[j]; 232 *ex = 0; 246 *ex | [all...] |
H A D | select_large_fdset.c | 76 long *in, *out, *ex; local 138 ex = (long *)ex0->fds_bits; 147 b = (ulong_t)(*in | *out | *ex); 157 if (*ex & m) 176 ex++; 207 ex = (long *)ex0->fds_bits; 209 *ex++ = 0; 271 ex = (long *)&ex0->fds_bits[j]; 281 *ex = 0; 295 *ex | [all...] |
/illumos-gate/usr/src/lib/libm/common/C/ |
H A D | cbrt.c | 228 unsigned int hx, sx, ex, j, offset; local 255 ex = hx & 0x7ff00000; 256 j = (ex >> 2) + (ex >> 4) + (ex >> 6); 258 j = 0x7ff00000 & (j + 0x2aa00); /* j is ex/3 */
|
/illumos-gate/usr/src/cmd/vi/port/ |
H A D | Makefile | 29 PROG= ex 30 XPG4PROG= ex 31 XPG6PROG= ex 36 EXOBJS= bcopy.o ex.o ex_addr.o ex_cmds.o ex_cmds2.o \ 50 TXTS = READ_ME makeoptions asfix.c70 ex.news port.mk.370 port.mk.70 \ 83 ex := LDLIBS += -lmapmalloc -lcurses -lgen -lcrypt_i macro 91 # hard links to ex 109 ex.xpg4: $(XD4) $(XPG4EXOBJS) 113 ex.xpg6: $(XD6) $(XPG6EXOBJS)
|
/illumos-gate/usr/src/cmd/fs.d/nfs/mountd/ |
H A D | exportlist.c | 170 freeexports(struct exportnode *ex) argument 175 while (ex) { 176 groups = ex->ex_groups; 183 tmpex = ex->ex_next; 184 free(ex->ex_dir); 185 free(ex); 186 ex = tmpex;
|
/illumos-gate/usr/src/lib/libast/common/string/ |
H A D | strexpr.c | 43 #define getchr(ex) (*(ex)->nextchr++) 44 #define peekchr(ex) (*(ex)->nextchr) 45 #define ungetchr(ex) ((ex)->nextchr--) 47 #define error(ex,msg) return(seterror(ex,msg)) 63 seterror(register Expr_t* ex, char* msg) argument 65 if (!ex 76 expr(register Expr_t* ex, register int precedence) argument 277 Expr_t ex; local [all...] |
/illumos-gate/usr/src/lib/libc/port/threads/ |
H A D | cancel.c | 291 __pthread_cleanup_pop(int ex, _cleanup_t *clnup_info) argument 297 if (ex)
|
/illumos-gate/usr/src/cmd/fs.d/nfs/showmount/ |
H A D | showmount.c | 263 struct exportnode *ex = NULL; local 274 xdr_void, 0, xdr_exports, (caddr_t)&ex, tout)) { 279 if (ex == NULL) { 285 for (e = ex; e != NULL; e = e->ex_next) { 290 while (ex) { 291 printf("%-*s ", max, ex->ex_dir); 292 gr = ex->ex_groups; 304 ex = ex->ex_next;
|
/illumos-gate/usr/src/uts/common/io/kbtrans/ |
H A D | kbtrans.c | 539 struct exception_map *ex; local 549 ex = kp->k_except; 550 if (ex != NULL) { 551 for (; ex->exc_care != 0; ex++) { 552 if ((mask & ex->exc_care) == ex->exc_mask && 553 key_station == ex->exc_key) 554 return (&ex->exc_entry);
|
/illumos-gate/usr/src/uts/sparc/fpu/ |
H A D | pack.c | 508 } ex; local 549 packextended(pfpsd, pu, &ex.x, &ex.y[1], 550 &ex.y[2], &ex.y[3]); 555 pfpsd->fp_current_write_dreg(&ex.ll[0], 557 pfpsd->fp_current_write_dreg(&ex.ll[1],
|