HomeSort by relevance Sort by last modified time
    Searched refs:traps (Results 1 - 25 of 35) sorted by null

1 2

  /external/u-boot/arch/nios2/cpu/
Makefile 8 obj-y += cpu.o interrupts.o traps.o
  /external/u-boot/arch/m68k/lib/
Makefile 14 obj-y += traps.o
  /external/python/cpython3/Modules/_decimal/libmpdec/
context.c 91 ctx->traps=MPD_Traps;
105 ctx->traps=MPD_Traps;
119 ctx->traps=MPD_Traps|MPD_Clamped;
137 ctx->traps=0;
173 return ctx->traps;
236 mpd_qsettraps(mpd_context_t *ctx, uint32_t traps)
238 if (traps > MPD_Max_status) {
241 ctx->traps = traps;
280 if (flags&ctx->traps) {
    [all...]
  /external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/
traps.pass.cpp 12 // traps
29 static_assert(std::numeric_limits<T>::traps == expected, "traps test 1");
30 static_assert(std::numeric_limits<const T>::traps == expected, "traps test 2");
31 static_assert(std::numeric_limits<volatile T>::traps == expected, "traps test 3");
32 static_assert(std::numeric_limits<const volatile T>::traps == expected, "traps test 4");
const_data_members.pass.cpp 37 traps
66 test(std::numeric_limits<type>::traps); \
  /external/u-boot/arch/mips/lib/
Makefile 11 obj-y += traps.o
  /external/u-boot/arch/powerpc/cpu/mpc8xx/
Makefile 7 extra-y += traps.o
  /external/u-boot/arch/powerpc/cpu/mpc86xx/
Makefile 12 extra-y += traps.o
u-boot.lds 15 arch/powerpc/cpu/mpc86xx/traps.o (.text*)
  /external/u-boot/arch/powerpc/cpu/mpc83xx/
Makefile 24 obj-y += traps.o
  /external/icu/icu4c/source/i18n/
decContext.cpp 71 context->traps=DEC_Errors; /* all but informational */
86 context->traps=0; /* no traps set */
97 context->traps=0; /* no traps set */
108 context->traps=0; /* no traps set */
207 if (status & context->traps) raise(SIGFPE);
decContext.h 50 /* traps -- only defined bits may be set */
64 #include <signal.h> /* for traps */
95 uint32_t traps; /* trap-enabler flags */ member in struct:__anon23977
number_utils.cpp 98 fContext.traps = 0; // no traps, thank you (what does this even mean?)
  /external/u-boot/board/cssi/MCR3000/
u-boot.lds 20 arch/powerpc/cpu/mpc8xx/traps.o (.text*)
  /external/python/cpython3/Lib/test/
test_decimal.py 101 prec=9, rounding=ROUND_HALF_EVEN, traps=dict.fromkeys(Signals[m], 0)
370 self.context.traps[exception] = 1 #Catch these bugs...
372 self.context.traps[exception] = 0
386 self.context.traps[error] = 1
396 self.context.traps[error] = 0
406 self.context.traps[error] = 1
416 self.context.traps[error] = 0
418 # as above, but add traps cumulatively, to check precedence
421 self.context.traps[error] = 1
431 # reset traps
    [all...]
  /external/libcxx/test/std/language.support/support.limits/limits/numeric.limits/
default.pass.cpp 77 static_assert(std::numeric_limits<A>::traps == false,
78 "std::numeric_limits<A>::traps == false");
  /external/u-boot/scripts/basic/
fixdep.c 450 static void traps(void) function
464 traps();
  /external/u-boot/arch/powerpc/cpu/mpc85xx/
Makefile 104 obj-y += traps.o
  /external/python/cpython3/Modules/_decimal/
_decimal.c 80 PyObject *traps; member in struct:__anon37214
475 if (status & (ctx->traps|MPD_Malloc_error)) {
483 ex = flags_as_exception(ctx->traps&status);
487 siglist = flags_as_list(ctx->traps&status);
527 new context is created, context.traps and context.flags are
736 Dec_CONTEXT_GET_ULONG(traps)
1111 if (PyUnicode_CompareWithASCIIString(name, "traps") == 0) {
1112 retval = ((PyDecContextObject *)self)->traps;
1136 if (PyUnicode_CompareWithASCIIString(name, "traps") == 0) {
1150 CTX(self)->traps = 0
1239 PyObject *traps = Py_None; local
1312 char traps[MPD_MAX_SIGNAL_LIST]; local
1419 PyObject *traps; local
    [all...]
  /external/python/cpython3/Modules/_decimal/tests/
deccheck.py 179 self.settraps([sig for sig in self.c.traps if self.c.traps[sig]])
243 for trap in self.p.traps:
244 self.p.traps[trap] = False
254 self.c.traps[signal] = True
255 self.p.traps[CondMap[signal]] = True
290 maxcontext.traps = copy(context.p.traps)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_decimal.py 59 traps = dict.fromkeys(Signals, 0)
309 self.context.traps[exception] = 1 #Catch these bugs...
311 self.context.traps[exception] = 0
325 self.context.traps[error] = 1
335 self.context.traps[error] = 0
345 self.context.traps[error] = 1
355 self.context.traps[error] = 0
357 # as above, but add traps cumulatively, to check precedence
360 self.context.traps[error] = 1
370 # reset traps
    [all...]
  /external/u-boot/drivers/qe/
qe.c 487 /* Program the traps for this processor */
489 u32 trap = be32_to_cpu(ucode->traps[j]);
495 /* Enable traps */
615 /* Program the traps for this processor */
617 u32 trap = be32_to_cpu(ucode->traps[j]);
623 /* Enable traps */
685 /* Program the traps for this processor */
687 u32 trap = be32_to_cpu(ucode->traps[j]);
693 /* Enable traps */
  /external/python/cpython3/Lib/
_pydecimal.py 79 >>> getcontext().traps[DivisionByZero] = 1
87 >>> c.traps[InvalidOperation] = 0
92 >>> c.traps[InvalidOperation] = 1
107 >>> c.traps[InvalidOperation] = 0
417 # List of public traps and flags
6074 traps=[DivisionByZero, Overflow, InvalidOperation], variable
6089 traps=[DivisionByZero, Overflow, InvalidOperation, Clamped, Underflow], variable
6095 traps=[], variable
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
decimal.py 82 >>> getcontext().traps[DivisionByZero] = 1
90 >>> c.traps[InvalidOperation] = 0
95 >>> c.traps[InvalidOperation] = 1
110 >>> c.traps[InvalidOperation] = 0
375 # List of public traps and flags
5826 traps=[DivisionByZero, Overflow, InvalidOperation, Clamped, Underflow], variable
5832 traps=[], variable
    [all...]
  /external/python/cpython2/Lib/
decimal.py 82 >>> getcontext().traps[DivisionByZero] = 1
90 >>> c.traps[InvalidOperation] = 0
95 >>> c.traps[InvalidOperation] = 1
110 >>> c.traps[InvalidOperation] = 0
374 # List of public traps and flags
5895 traps=[DivisionByZero, Overflow, InvalidOperation, Clamped, Underflow], variable
5901 traps=[], variable
    [all...]

Completed in 537 milliseconds

1 2