| /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_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_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);
|
| 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
|
| 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);
|
| 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) {
|
| 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.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;
|
| 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/dist/gdb/ |
| mingw-hdep.c | 87 HANDLE read = NULL, except = NULL; local 102 serial_wait_handle (scb, &read, &except); 108 if (except == NULL) 113 except = never_handle; 125 handles[num_handles++] = except;
|
| mingw-hdep.c | 87 HANDLE read = NULL, except = NULL; local 102 serial_wait_handle (scb, &read, &except); 108 if (except == NULL) 113 except = never_handle; 125 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...] |
| 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)))))
|
| 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)))))
|
| 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));
|
| 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));
|
| /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"
|