Home
last modified time | relevance | path

Searched refs:except (Results 1 – 25 of 904) sorted by relevance

12345678910>>...37

/openbsd-src/regress/lib/libm/msun/
H A Dfenv_test.c403 int except, pass, raise, status; in ATF_TC_BODY() local
416 except = fegetexcept(); in ATF_TC_BODY()
417 if (except == 0) { in ATF_TC_BODY()
420 } else if ((except & ALL_STD_EXCEPT) != ALL_STD_EXCEPT) { in ATF_TC_BODY()
422 "set to trap: %#x vs %#x", except, ALL_STD_EXCEPT); in ATF_TC_BODY()
439 except = std_excepts[i]; in ATF_TC_BODY()
441 if (except == FE_INEXACT) in ATF_TC_BODY()
444 raise = ALL_STD_EXCEPT ^ except; in ATF_TC_BODY()
454 ATF_REQUIRE_EQ(0, (feenableexcept(except) & ALL_STD_EXCEPT)); in ATF_TC_BODY()
455 ATF_CHECK_EQ(except, fegetexcept()); in ATF_TC_BODY()
[all …]
H A Dnext_test.c247 int except) in _testl() argument
256 if (actual_except != except) { in _testl()
259 except); in _testl()
/openbsd-src/regress/lib/libm/fenv/
H A Dfenv.c327 int except, i, pass, raise, status; in test_masking() local
345 except = std_excepts[i]; in test_masking()
347 if (except == FE_INEXACT) in test_masking()
350 raise = ALL_STD_EXCEPT ^ except; in test_masking()
360 assert((feenableexcept(except) in test_masking()
362 assert(fegetexcept() == except); in test_masking()
370 raiseexcept(except); in test_masking()
372 feraiseexcept(except); in test_masking()
408 int except, i, pass, status, raise; in test_feholdupdate() local
415 except = std_excepts[i]; in test_feholdupdate()
[all …]
/openbsd-src/lib/libc/arch/aarch64/gen/
H A Dfpsetsticky.c39 fpsetsticky(fp_except except) in fpsetsticky() argument
45 new &= ~except; in fpsetsticky()
48 return (old & except); in fpsetsticky()
/openbsd-src/lib/libc/arch/arm/gen/
H A Dfpsetsticky.c30 fpsetsticky(fp_except except) in fpsetsticky() argument
36 new |= (except & FP_X_MASK); in fpsetsticky()
40 float_exception_flags = except; in fpsetsticky()
/openbsd-src/usr.bin/lndir/
H A Dlndir.c75 struct except { struct
77 struct except *next; argument
80 struct except *exceptions;
158 struct except *new; in addexcept()
160 new = malloc(sizeof(struct except)); in addexcept()
189 struct except *cur; in dodir()
/openbsd-src/lib/libc/softfloat/
H A Dfpsetsticky.c43 fpsetsticky(fp_except except) in fpsetsticky() argument
48 float_exception_flags = except; in fpsetsticky()
/openbsd-src/gnu/usr.bin/gcc/gcc/cp/
H A DMake-lang.in87 cp/spew.o cp/typeck.o cp/cvt.o cp/except.o cp/friend.o cp/init.o cp/method.o \
238 output.h $(EXPR_H) except.h toplev.h $(HASHTAB_H) $(GGC_H) $(RTL_H) \
242 output.h except.h toplev.h $(GGC_H) $(RTL_H) c-common.h gt-cp-decl2.h \
253 diagnostic.h $(GGC_H) except.h
262 cp/except.o: cp/except.c $(CXX_TREE_H) flags.h $(RTL_H) except.h toplev.h \
265 except.h $(TM_P_H)
267 toplev.h $(GGC_H) $(RTL_H) except.h tree-inline.h gt-cp-pt.h
272 cp/semantics.o: cp/semantics.c $(CXX_TREE_H) cp/lex.h except.h toplev.h \
280 cp/parse.o: cp/parse.c $(CXX_TREE_H) flags.h cp/lex.h except.h output.h \
/openbsd-src/gnu/llvm/llvm/lib/MC/MCParser/
H A DCOFFAsmParser.cpp141 bool ParseAtUnwindOrAtExcept(bool &unwind, bool &except);
664 bool unwind = false, except = false; in ParseSEHDirectiveHandler() local
665 if (ParseAtUnwindOrAtExcept(unwind, except)) in ParseSEHDirectiveHandler()
669 if (ParseAtUnwindOrAtExcept(unwind, except)) in ParseSEHDirectiveHandler()
678 getStreamer().emitWinEHHandler(handler, unwind, except, Loc); in ParseSEHDirectiveHandler()
707 bool COFFAsmParser::ParseAtUnwindOrAtExcept(bool &unwind, bool &except) { in ParseAtUnwindOrAtExcept() argument
718 except = true; in ParseAtUnwindOrAtExcept()
/openbsd-src/gnu/gcc/gcc/cp/
H A DMake-lang.in83 cp/typeck.o cp/cvt.o cp/except.o cp/friend.o cp/init.o cp/method.o \
236 output.h $(EXPR_H) except.h toplev.h $(HASHTAB_H) $(RTL_H) \
240 output.h except.h toplev.h $(RTL_H) $(C_COMMON_H) gt-cp-decl2.h $(CGRAPH_H) \
257 toplev.h except.h $(TARGET_H)
269 cp/except.o: cp/except.c $(CXX_TREE_H) $(TM_H) $(FLAGS_H) $(RTL_H) except.h \
272 toplev.h except.h $(TM_P_H)
274 toplev.h $(RTL_H) except.h $(TREE_INLINE_H) pointer-set.h gt-cp-pt.h \
280 cp/semantics.o: cp/semantics.c $(CXX_TREE_H) $(TM_H) except.h toplev.h \
H A DChangeLog-1997105 * except.c (expand_builtin_throw): Remove.
119 * except.c (expand_builtin_throw): Use get_saved_pc_ref instead of
142 * except.c (expand_start_catch_block): suspend_momentary for the
191 * except.c (expand_end_catch_block): Lose rethrow region.
234 * except.c (do_pop_exception): Likewise.
257 * except.c: Lose Unexpected, SetTerminate, SetUnexpected,
284 * except.c (expand_throw): Call mark_used on the destructor.
305 * except.c: Call terminate without caching so many bits.
307 * except.c (expand_start_catch_block): Fix catching a reference
326 * except.c (call_eh_info): Add handlers field.
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/java/
H A DMake-lang.in108 java/constants.o java/lang.o java/typeck.o java/except.o java/verify.o \
285 toplev.h flags.h $(SYSTEM_H) function.h expr.h libfuncs.h except.h \
286 java/java-except.h $(GGC_H) real.h gt-java-decl.h
287 java/except.o: java/except.c $(CONFIG_H) $(JAVA_TREE_H) java/jcf.h real.h \
288 $(RTL_H) java/javaop.h java/java-opcodes.h except.h java/java-except.h \
291 $(RTL_H) $(EXPR_H) java/javaop.h java/java-opcodes.h except.h \
292 java/java-except.h java/java-except.h java/parse.h toplev.h \
303 input.h java/java-except.h $(SYSTEM_H) toplev.h java/parse.h $(GGC_H) \
323 java/javaop.h java/java-opcodes.h java/java-except.h toplev.h $(SYSTEM_H)
/openbsd-src/gnu/lib/libreadline/doc/
H A Drluserman.texinfo29 notice identical to this one except for the removal of this paragraph
40 except that this permission notice may be stated in a translation approved
71 except that this permission notice may be stated in a translation approved
H A Dhist.texinfo30 notice identical to this one except for the removal of this paragraph
41 except that this permission notice may be stated in a translation approved
72 except that this permission notice may be stated in a translation approved
H A Drlman.texinfo30 notice identical to this one except for the removal of this paragraph
41 except that this permission notice may be stated in a translation approved
72 except that this permission notice may be stated in a translation approved
/openbsd-src/gnu/llvm/llvm/utils/gn/build/
H A Dcompiled_action.gni3 # compiled_action() is like action(), except that it runs a built binary
18 # to action()'s `args`, except that `tool` is implicitly added as first
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dgenmultilib179 for except in ${exceptions}; do
180 echo " /${except}/) : ;;" >> tmpmultilib2
/openbsd-src/gnu/llvm/llvm/docs/CommandGuide/
H A Dllvm-as.rst28 same name, except that the suffix is changed to ``.bc``.
31 output file has the same name as the input file, except that the ``.bc``
/openbsd-src/regress/lib/libc/ieeefp/
H A DMakefile4 SUBDIR+= except inf infinity round
/openbsd-src/gnu/gcc/gcc/
H A Dgenmultilib185 for except in ${exceptions}; do
186 echo " /${except}/) : ;;" >> tmpmultilib2
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dsimd-5.x7 # On SPARC64/SPARC-V9 it fails, except with -m32.
/openbsd-src/gnu/llvm/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDBProperties.td8 Desc<"Enable GDB's JIT compilation interface (default: enabled on all platforms except macOS)">;
/openbsd-src/regress/lib/libc/ieeefp/except/
H A DMakefile3 PROG=except
/openbsd-src/usr.bin/calendar/calendars/
H A Dcalendar.world2 * World wide calendar files, except national calendars
/openbsd-src/gnu/usr.bin/binutils/gdb/config/i386/
H A Di386sco5.mh2 # Much like 3.2v4, except we don't have to avoid problems with const

12345678910>>...37