HomeSort by: relevance | last modified time | path
    Searched defs:except (Results 1 - 19 of 19) sorted by relevancy

  /src/tests/lib/libm/
t_errhandling.c 63 int except; local
77 ATF_CHECK_MSG(((except = fetestexcept(FE_ALL_EXCEPT)) &
79 "expected=0x%x actual=0x%x", cases[i].e, except);
t_scalbn.c 50 int except; member in struct:testcase
98 tests[i].except);
100 /* scalbn is always exact except for underflow or overflow. */
245 /* scalbn is always exact except for underflow or overflow. */
390 /* scalbn is always exact except for underflow or overflow. */
t_fenv.c 372 int except; local
377 ATF_CHECK_EQ_MSG((except = fegetexcept()), 0,
378 "fegetexcept()=0x%x", except);
381 ATF_CHECK_EQ_MSG((except = fegetexcept()), 0,
382 "fegetexcept()=0x%x", except);
385 ATF_CHECK_EQ_MSG((except = fegetexcept()), FE_TRAP_EXCEPT,
386 "fegetexcept()=0x%x FE_TRAP_EXCEPT=0x%x", except, FE_TRAP_EXCEPT);
389 ATF_CHECK_EQ_MSG((except = fegetexcept()), FE_TRAP_EXCEPT,
390 "fegetexcept()=0x%x FE_ALL_EXCEPT=0x%x", except, FE_TRAP_EXCEPT);
  /src/usr.bin/chpass/
chpass.h 39 const char *except, *save; member in struct:_entry
  /src/lib/libm/arch/aarch64/
fenv.c 77 _DIAGASSERT((except & ~FE_ALL_EXCEPT) == 0);
93 _DIAGASSERT((except & ~FE_ALL_EXCEPT) == 0);
107 _DIAGASSERT((except & ~FE_ALL_EXCEPT) == 0);
129 _DIAGASSERT((except & ~FE_ALL_EXCEPT) == 0);
146 _DIAGASSERT((except & ~FE_ALL_EXCEPT) == 0);
227 int except = fetestexcept(FE_ALL_EXCEPT); local
230 feraiseexcept(except);
  /src/usr.bin/rdist/
docmd.c 441 if (except(name))
621 except(char *file) function
629 printf("except(%s)\n", file);
632 if (sc->sc_type != EXCEPT && sc->sc_type != PATTERN)
635 if (sc->sc_type == EXCEPT) {
  /src/external/gpl3/gdb/dist/gdb/
mingw-hdep.c 83 HANDLE read = NULL, except = NULL; local
98 serial_wait_handle (scb, &read, &except);
104 if (except == NULL)
109 except = never_handle;
121 handles[num_handles++] = except;
  /src/external/gpl3/gdb.old/dist/gdb/
mingw-hdep.c 83 HANDLE read = NULL, except = NULL; local
98 serial_wait_handle (scb, &read, &except);
104 if (except == NULL)
109 except = never_handle;
121 handles[num_handles++] = except;
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
COFFAsmParser.cpp 144 bool ParseAtUnwindOrAtExcept(bool &unwind, bool &except);
658 return TokError("you must specify one or both of @unwind or @except");
660 bool unwind = false, except = false; local
661 if (ParseAtUnwindOrAtExcept(unwind, except))
665 if (ParseAtUnwindOrAtExcept(unwind, except))
674 getStreamer().EmitWinEHHandler(handler, unwind, except, Loc);
703 bool COFFAsmParser::ParseAtUnwindOrAtExcept(bool &unwind, bool &except) {
710 return Error(startLoc, "expected @unwind or @except");
713 else if (identifier == "except")
714 except = true
    [all...]
  /src/external/gpl3/gdb/dist/gnulib/import/
select.c 138 BOOL read, write, except; local
148 read = write = except = FALSE;
217 except = TRUE;
225 except = TRUE;
257 if (except && (xbits->in[fd / CHAR_BIT] & (1 << (fd & (CHAR_BIT - 1)))))
  /src/external/gpl3/gdb.old/dist/gnulib/import/
select.c 138 BOOL read, write, except; local
148 read = write = except = FALSE;
217 except = TRUE;
225 except = TRUE;
257 if (except && (xbits->in[fd / CHAR_BIT] & (1 << (fd & (CHAR_BIT - 1)))))
  /src/external/ibm-public/postfix/dist/src/smtpstone/
qmqp-source.c 220 static char *exception_text(int except)
224 switch (except) {
234 msg_panic("exception_text: unknown exception %d", except);
382 int except; local
387 if ((except = vstream_setjmp(session->stream)) != 0)
388 msg_fatal("%s while sending message", exception_text(except));
415 int except; local
420 if ((except = vstream_setjmp(session->stream)) != 0)
421 msg_fatal("%s while receiving server reply", exception_text(except));
smtp-source.c 391 static char *exception_text(int except)
393 switch (except) {
399 msg_panic("exception_text: unknown exception %d", except);
555 int except; local
560 if ((except = vstream_setjmp(session->stream)) != 0)
561 msg_fatal("%s while reading server greeting", exception_text(except));
587 int except; local
593 if ((except = vstream_setjmp(session->stream)) != 0)
594 msg_fatal("%s while sending %s", exception_text(except), protocol);
610 int except; local
638 int except; local
660 int except; local
690 int except; local
720 int except; local
756 int except; local
777 int except; local
869 int except; local
918 int except; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/cp/
except.cc 78 /* [except.terminate]
149 tree except = ecf & ECF_NOTHROW ? empty_except_spec : NULL_TREE; local
156 tree res = push_library_fn (ident, fntype, except, ecf);
672 /* [except.throw]
850 /* C++11 [except.handle] The exception-declaration shall not denote
857 const volatile void*. Except for these restriction and the
943 handler for type TO, as per [except.handle]. */
1389 #include "gt-cp-except.h"
  /src/external/gpl3/gcc.old/dist/gcc/cp/
except.cc 75 /* [except.terminate]
146 tree except = ecf & ECF_NOTHROW ? empty_except_spec : NULL_TREE; local
153 tree res = push_library_fn (ident, fntype, except, ecf);
671 /* [except.throw]
864 /* C++11 [except.handle] The exception-declaration shall not denote
871 const volatile void*. Except for these restriction and the
952 handler for type TO, as per [except.handle]. */
1382 #include "gt-cp-except.h"
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.guile/
scm-pretty-print.scm 35 (define (make-pointer-iterator-except pointer len)
105 (make-pointer-iterator-except elements (value->integer len))))))
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.guile/
scm-pretty-print.scm 35 (define (make-pointer-iterator-except pointer len)
105 (make-pointer-iterator-except elements (value->integer len))))))
  /src/external/ibm-public/postfix/dist/src/smtp/
smtp_proto.c 306 int except; local
360 if ((except = vstream_setjmp(state->session->stream)) != 0)
361 return (smtp_stream_except(state, except, where));
643 * still deliver such mail to a non-SMTPUTF8 server, except that we must
785 if ((except = vstream_setjmp(state->session->stream)) != 0)
786 return (smtp_stream_except(state, except,
1559 int except; local
1639 if ((except = vstream_setjmp(session->stream)) != 0) {
1642 RETURN(SENDING_MAIL ? smtp_stream_except(state, except,
1670 * available" except for the rewrite context which is preset t
    [all...]
  /src/external/ibm-public/postfix/dist/src/posttls-finger/
posttls-finger.c 616 static char *exception_text(int except)
618 switch (except) {
624 msg_panic("exception_text: unknown exception %d", except);
633 int except; local
640 if ((except = vstream_setjmp(stream)) != 0) {
641 msg_info("%s while reading server greeting", exception_text(except));
659 int except; local
675 if ((except = vstream_setjmp(stream)) != 0) {
676 msg_info("%s while sending %s", exception_text(except), ehlo);
751 int except; local
989 int except; local
    [all...]

Completed in 39 milliseconds