/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/ |
D | traps.pass.cpp | 27 static_assert(std::numeric_limits<T>::traps == expected, "traps test 1"); in test() 28 static_assert(std::numeric_limits<const T>::traps == expected, "traps test 2"); in test() 29 static_assert(std::numeric_limits<volatile T>::traps == expected, "traps test 3"); in test() 30 static_assert(std::numeric_limits<const volatile T>::traps == expected, "traps test 4"); in test()
|
D | const_data_members.pass.cpp | 64 test(std::numeric_limits<type>::traps); \
|
/external/icu/icu4c/source/i18n/ |
D | decContext.c | 71 context->traps=DEC_Errors; /* all but informational */ in uprv_decContextDefault() 86 context->traps=0; /* no traps set */ in uprv_decContextDefault() 97 context->traps=0; /* no traps set */ in uprv_decContextDefault() 108 context->traps=0; /* no traps set */ in uprv_decContextDefault() 207 if (status & context->traps) raise(SIGFPE); in uprv_decContextSetStatus()
|
D | decContext.h | 95 uint32_t traps; /* trap-enabler flags */ member
|
D | digitlst.cpp | 97 fContext.traps = 0; in DigitList() 169 c.traps = 0; in operator ==()
|
/external/libcxx/include/ |
D | limits | 58 static constexpr bool traps = false; 180 static _LIBCPP_CONSTEXPR const bool traps = false; 242 static _LIBCPP_CONSTEXPR const bool traps = true; 244 static _LIBCPP_CONSTEXPR const bool traps = false; 293 static _LIBCPP_CONSTEXPR const bool traps = false; 339 static _LIBCPP_CONSTEXPR const bool traps = false; 385 static _LIBCPP_CONSTEXPR const bool traps = false; 435 static _LIBCPP_CONSTEXPR const bool traps = false; 481 static _LIBCPP_CONSTEXPR const bool traps = __base::traps; 527 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::traps; [all …]
|
/external/llvm/test/CodeGen/SystemZ/ |
D | trap-01.ll | 1 ; Test traps and conditional traps 7 ; Check unconditional traps 161 ; Check conditional traps that don't have a valid Compare and Trap
|
/external/python/cpython2/Doc/library/ |
D | decimal.rst | 124 precision, rounding, or enabled traps:: 129 capitals=1, flags=[], traps=[Overflow, DivisionByZero, 238 former is especially useful for debugging because many of the traps are 251 capitals=1, flags=[], traps=[]) 276 capitals=1, flags=[Rounded, Inexact], traps=[]) 282 Individual traps are set using the dictionary in the :attr:`traps` field of a 290 >>> getcontext().traps[DivisionByZero] = 1 355 malformed string. If the context traps :const:`InvalidOperation`, an exception 990 :const:`ROUND_HALF_UP`. All flags are cleared. All traps are enabled (treated 994 Because many of the traps are enabled, this context is useful for debugging. [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_decimal.py | 60 traps = dict.fromkeys(Signals, 0) 308 self.context.traps[exception] = 1 #Catch these bugs... 310 self.context.traps[exception] = 0 324 self.context.traps[error] = 1 334 self.context.traps[error] = 0 344 self.context.traps[error] = 1 354 self.context.traps[error] = 0 359 self.context.traps[error] = 1 371 self.context.traps[error] = 0 1181 ctx.traps[InvalidOperation] = 1 [all …]
|
/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits/ |
D | default.pass.cpp | 77 static_assert(std::numeric_limits<A>::traps == false, in main()
|
/external/python/cpython2/Lib/ |
D | decimal.py | 2362 newcontext.traps[exception] = 0 3783 traps=None, flags=None, argument 3806 if traps is None: 3807 self.traps = dc.traps.copy() 3808 elif not isinstance(traps, dict): 3809 self.traps = dict((s, int(s in traps)) for s in _signals) 3811 self.traps = traps 3828 names = [t.__name__ for t, v in self.traps.items() if v] 3839 nc = Context(self.prec, self.rounding, self.traps, 3846 nc = Context(self.prec, self.rounding, self.traps.copy(), [all …]
|
/external/swiftshader/third_party/LLVM/test/Transforms/InstCombine/ |
D | rem.ll | 11 define i32 @test2(i32 %A) { ; 0 % X = 0, we don't need to preserve traps
|
D | div.ll | 21 ; => 0, don't need to keep traps
|
/external/zlib/src/contrib/asm686/ |
D | README.686 | 10 PPro's speed traps. My own tests show a speedup of around 10-20% at
|
/external/libchrome/sandbox/linux/bpf_dsl/ |
D | bpf_dsl_unittest.cc | 67 TestTrapRegistry traps; in PolicyEmulator() local 68 program_ = PolicyCompiler(&policy, &traps).Compile(); in PolicyEmulator()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonSystemInst.td | 117 // traps and pause
|
/external/ltp/testcases/kernel/fs/fs_bind/ |
D | CHANGELOG | 34 Added some traps to the test scripts to detect unexpected errors and log them
|
/external/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyInstrConv.td | 38 // Conversion from floating point to integer traps on overflow and invalid.
|
/external/python/cpython2/Lib/test/decimaltestdata/ |
D | compare.decTest | 268 -- misalignment traps for little-endian 402 -- check some unit-y traps
|
D | dqCompare.decTest | 267 -- misalignment traps for little-endian 393 -- check some unit-y traps
|
D | ddCompare.decTest | 269 -- misalignment traps for little-endian 395 -- check some unit-y traps
|
D | dqMin.decTest | 265 -- misalignment traps for little-endian
|
D | ddMin.decTest | 265 -- misalignment traps for little-endian
|
D | dqMax.decTest | 276 -- misalignment traps for little-endian
|
D | ddMax.decTest | 276 -- misalignment traps for little-endian
|