Home
last modified time | relevance | path

Searched refs:ex (Results 26 – 50 of 159) sorted by relevance

1234567

/illumos-gate/usr/src/lib/libm/common/Q/
H A Dsqrtl.c137 int ex; in __q_unpack() local
142 if (ex) in __q_unpack()
156 ex = 1; in __q_unpack()
164 ex = -31; in __q_unpack()
171 ex = -63; in __q_unpack()
177 ex = -95; in __q_unpack()
185 ex--; in __q_unpack()
222 return ex - 0x3fff; in __q_unpack()
452 ex = __q_unpack(&x, xx); in sqrtl()
453 if (ex & 1) in sqrtl()
[all …]
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DSLPServerHeaderV2.java207 SrvLocMsg makeErrorReply(Exception ex) { in makeErrorReply() argument
232 Assert.slpassert(ex != null, in makeErrorReply()
234 new Object[] {ex}); in makeErrorReply()
236 if (ex instanceof ServiceLocationException) { in makeErrorReply()
238 hdr.errCode = ((ServiceLocationException)ex).getErrorCode(); in makeErrorReply()
245 } else if (ex instanceof IllegalArgumentException || in makeErrorReply()
246 ex instanceof IOException) { in makeErrorReply()
270 } catch (CloneNotSupportedException ex) { in makeReplyHeader()
H A DServiceStoreFactory.java106 } catch (ClassNotFoundException ex) { in createServiceStoreFromProperty()
121 } catch (InstantiationException ex) { in createServiceStoreFromProperty()
129 ex.getMessage()}); in createServiceStoreFromProperty()
131 } catch (IllegalAccessException ex) { in createServiceStoreFromProperty()
139 ex.getMessage()}); in createServiceStoreFromProperty()
141 } catch (ClassCastException ex) { in createServiceStoreFromProperty()
171 } catch (IOException ex) { in deserializeServiceStore()
176 new Object[] {ex.getMessage()}); in deserializeServiceStore()
303 } catch (NumberFormatException ex) { in deserialize()
311 } catch (IllegalArgumentException ex) { in deserialize()
[all …]
H A DURLAttributeVerifier.java95 } catch (MalformedURLException ex) { in initialize()
103 } catch (IOException ex) { in initialize()
109 new Object[] { urlName, ex.getMessage()}); in initialize()
117 } catch (IOException ex) { in initialize()
H A DStreamListener.java98 } catch (IOException ex) { in StreamListener()
102 new Object[] {interfac, ex.getMessage()}); in StreamListener()
145 } catch (SocketException ex) { in run()
151 ex.getMessage()}); in run()
157 } catch (IOException ex) { in run()
H A DSLPV1Manager.java170 } catch (ServiceLocationException ex) { in getOutbuf()
270 } catch (ServiceLocationException ex) { in start()
273 new Object[] {ex.getMessage()}); in start()
275 } catch (UnknownHostException ex) { in start()
278 new Object[] {ex.getMessage()}); in start()
298 } catch (IOException ex) { in start()
H A DClientMsgManager.java74 } catch (ClassNotFoundException ex) { in addClientMsgClass()
123 } catch (Exception ex) { in newInstance()
128 new Object[] { ex, in newInstance()
131 ex.getMessage()}); in newInstance()
H A DSLPHeaderV1.java156 } catch (UnsupportedEncodingException ex) { in parseHeader()
333 } catch (ServiceLocationException ex) { in externalize()
352 SrvLocMsg makeErrorReply(Exception ex) { in makeErrorReply() argument
384 Assert.slpassert(ex != null, in makeErrorReply()
386 new Object[] {ex}); in makeErrorReply()
388 if (ex instanceof ServiceLocationException) { in makeErrorReply()
432 } else if (ex instanceof IllegalArgumentException || in makeErrorReply()
433 ex instanceof IOException) { in makeErrorReply()
457 } catch (CloneNotSupportedException ex) { in makeReplyHeader()
702 } catch (IllegalArgumentException ex) { in parseServiceURLIn()
[all …]
H A DSLPTemplateRegistry.java164 } catch (ServiceLocationException ex) { in registerServiceTemplate()
169 if (ex.getErrorCode() != in registerServiceTemplate()
171 throw ex; in registerServiceTemplate()
432 } catch (ServiceLocationException ex) { in findVersionedURL()
436 if (ex.getErrorCode() != in findVersionedURL()
438 throw ex; in findVersionedURL()
494 } catch (NumberFormatException ex) { in findVersionedURL()
H A DListener.java152 } catch (IOException ex) { in addListenerToMulticastGroup()
156 new Object[] {maddr, ex.getMessage()}); in addListenerToMulticastGroup()
249 } catch (IOException ex) { in run()
256 ex.getMessage()}); in run()
262 ex.getMessage()}); in run()
H A DSunServerDATable.java83 } catch (ServiceLocationException ex) { in SunServerDATable()
192 } catch (NumberFormatException ex) { in recordNewDA()
226 } catch (ServiceLocationException ex) { in recordNewDA()
229 ex.getMessage(), in recordNewDA()
271 } catch (ServiceLocationException ex) { in removeDA()
274 ex.getMessage(), in removeDA()
475 } catch (ServiceLocationException ex) { in formServiceTableDAURL()
477 new Object[] {attr, ex.getMessage()}); in formServiceTableDAURL()
/illumos-gate/usr/src/cmd/fs.d/nfs/mountd/
H A Dexportlist.c168 freeexports(struct exportnode *ex) in freeexports() argument
173 while (ex) { in freeexports()
174 groups = ex->ex_groups; in freeexports()
181 tmpex = ex->ex_next; in freeexports()
182 free(ex->ex_dir); in freeexports()
183 free(ex); in freeexports()
184 ex = tmpex; in freeexports()
/illumos-gate/usr/src/boot/i386/isoboot/
H A Disoboot.c344 struct exec ex; in load() member
367 if (N_GETMAGIC(hdr.ex) == ZMAGIC) in load()
376 addr = hdr.ex.a_entry & 0xffffff; in load()
379 if (xfsread(ino, p, hdr.ex.a_text)) in load()
382 if (xfsread(ino, p, hdr.ex.a_data)) in load()
384 p += hdr.ex.a_data + roundup2(hdr.ex.a_bss, PAGE_SIZE); in load()
386 memcpy(p, &hdr.ex.a_syms, sizeof (hdr.ex.a_syms)); in load()
387 p += sizeof (hdr.ex.a_syms); in load()
388 if (hdr.ex.a_syms) { in load()
389 if (xfsread(ino, p, hdr.ex.a_syms)) in load()
[all …]
/illumos-gate/usr/src/lib/libm/common/C/
H A Dcbrt.c228 unsigned int hx, sx, ex, j, offset; in __cbrt() local
255 ex = hx & 0x7ff00000; in __cbrt()
256 j = (ex >> 2) + (ex >> 4) + (ex >> 6); in __cbrt()
/illumos-gate/usr/src/lib/libc/sparcv9/fp/
H A D__quad_mag64.S71 ! if (ex == 0)
72 ! ex = 1;
117 ! ex++;
140 ! ex++;
364 ! if (ex == 0)
365 ! ex = 1;
435 ! ex > 64) {
439 ! ex -= 64;
445 ! ex--;
464 ! ex--;
[all …]
/illumos-gate/usr/src/cmd/vi/port/
H A DMakefile30 PROG= ex
31 XPG4PROG= ex
32 XPG6PROG= ex
37 EXOBJS= bcopy.o ex.o ex_addr.o ex_cmds.o ex_cmds2.o \
51 TXTS = READ_ME makeoptions ex.news
86 ex := LDLIBS += -lmapmalloc -lcurses -lgen -lcrypt_i macro
111 ex.xpg4: $(XD4) $(XPG4EXOBJS)
115 ex.xpg6: $(XD6) $(XPG6EXOBJS)
/illumos-gate/usr/src/lib/libm/common/m9x/
H A D__fex_i386.c578 ex = sip->si_code; in __fex_get_op()
741 if (ex == FPE_FLTRES) { in __fex_get_op()
762 if (ex == FPE_FLTOVF || ex == FPE_FLTUND || ex == FPE_FLTRES) { in __fex_get_op()
797 if (ex == FPE_FLTOVF) { in __fex_get_op()
1244 ex = sip->si_code; in __fex_st_result()
1353 if (ex == FPE_FLTOVF || ex == FPE_FLTUND) { in __fex_st_result()
1364 if (ex == FPE_FLTOVF) in __fex_st_result()
1380 if (ex == FPE_FLTOVF) in __fex_st_result()
1390 else if (ex != FPE_FLTRES) in __fex_st_result()
1582 if (ex != FPE_FLTRES) in __fex_st_result()
[all …]
/illumos-gate/usr/src/boot/i386/gptzfsboot/
H A Dzfsboot.c370 struct exec ex; in load() member
387 if (N_GETMAGIC(hdr.ex) == ZMAGIC) { in load()
397 addr = hdr.ex.a_entry & 0xffffff; in load()
400 if (read(fd, p, hdr.ex.a_text) != hdr.ex.a_text) { in load()
405 if (read(fd, p, hdr.ex.a_data) != hdr.ex.a_data) { in load()
409 p += hdr.ex.a_data + roundup2(hdr.ex.a_bss, PAGE_SIZE); in load()
411 memcpy(p, &hdr.ex.a_syms, sizeof (hdr.ex.a_syms)); in load()
412 p += sizeof (hdr.ex.a_syms); in load()
413 if (hdr.ex.a_syms) { in load()
414 if (read(fd, p, hdr.ex.a_syms) != hdr.ex.a_syms) { in load()
[all …]
/illumos-gate/usr/src/uts/common/io/kbtrans/
H A Dkbtrans.c519 struct exception_map *ex; in kbtrans_find_entry() local
529 ex = kp->k_except; in kbtrans_find_entry()
530 if (ex != NULL) { in kbtrans_find_entry()
531 for (; ex->exc_care != 0; ex++) { in kbtrans_find_entry()
532 if ((mask & ex->exc_care) == ex->exc_mask && in kbtrans_find_entry()
533 key_station == ex->exc_key) in kbtrans_find_entry()
534 return (&ex->exc_entry); in kbtrans_find_entry()
/illumos-gate/usr/src/cmd/lp/cmd/lpsched/
H A Ddowait.c102 pps = ep->ex.printer; in dowait()
329 prs = ep->ex.request; in dowait()
330 ep->ex.request = 0; in dowait()
433 prs = ep->ex.request; in dowait()
434 ep->ex.request = 0; in dowait()
452 pas = ep->ex.printer->alert; in dowait()
456 pas = ep->ex.form->alert; in dowait()
460 pas = ep->ex.pwheel->alert; in dowait()
474 if (exec(ep->type, ep->ex.form) == 0) { in dowait()
/illumos-gate/usr/src/lib/libc/sparc/fp/
H A D_Q_sqrt.c99 int ex, ez; in _Qp_sqrt() local
164 ex = (int)(xm >> 16); in _Qp_sqrt()
166 if (ex) { in _Qp_sqrt()
176 ex = 1; in _Qp_sqrt()
182 ex = -31; in _Qp_sqrt()
187 ex = -63; in _Qp_sqrt()
191 ex = -95; in _Qp_sqrt()
198 ex--; in _Qp_sqrt()
201 ez = ex - 0x3fff; in _Qp_sqrt()
/illumos-gate/usr/src/cmd/fm/eversholt/common/
H A Dcheck.c581 return (ex); in record_iterators()
585 ex = record_iterators(np->u.arrow.lhs, ex); in record_iterators()
586 ex = record_iterators(np->u.arrow.rhs, ex); in record_iterators()
590 ex = record_iterators(np->u.expr.left, ex); in record_iterators()
591 ex = record_iterators(np->u.expr.right, ex); in record_iterators()
595 ex = record_iterators(np->u.event.epname, ex); in record_iterators()
600 ex = lut_add(ex, (void *) np->u.name.child->u.name.s, in record_iterators()
602 ex = record_iterators(np->u.name.next, ex); in record_iterators()
611 return (ex); in record_iterators()
632 if (lut_lookup(ex, in check_exprscope()
[all …]
/illumos-gate/usr/src/cmd/fs.d/autofs/
H A Dautod_parse.c1919 if (ex == NULL) { in do_mapent_hosts()
1927 exlist = ex; in do_mapent_hosts()
1929 for (; ex; ex = exnext) { in do_mapent_hosts()
1939 freeex_ent(ex); in do_mapent_hosts()
1945 *texp = ex; in do_mapent_hosts()
1958 for (ex = exlist; ex; ex = ex->ex_next) { in do_mapent_hosts()
2037 free(ex->ex_dir); in freeex_ent()
2045 free(ex); in freeex_ent()
2053 while (ex) { in freeex()
2055 freeex_ent(ex); in freeex()
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/sfio/
H A Dsfclose.c36 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);
160 { if(f->disc && (ex = SFRAISE(f,SF_FINAL,NIL(Void_t*))) != 0 )
161 { rv = ex;
/illumos-gate/usr/src/tools/scripts/
H A Dinterface_cmp.pl173 foreach my $ex (@$SymList) {
174 return 1 if ($obj =~ /$$ex[2]/) && ($ver =~ /$$ex[1]/) &&
175 ($sym =~ /$$ex[0]/);
195 foreach my $ex (@EmptyTopVerList) {
196 return 1 if ($obj =~ /$$ex[1]/) && ($ver =~ /$$ex[0]/);

1234567