HomeSort by relevance Sort by last modified time
    Searched full:mpd_malloc_error (Results 1 - 5 of 5) sorted by null

  /external/python/cpython3/Modules/_decimal/libmpdec/
memory.c 191 /* Allocate new decimal. Caller can check for NULL or MPD_Malloc_error.
200 mpd_addstatus_raise(ctx, MPD_Malloc_error);
211 * Otherwise, set 'result' to NaN and update 'status' with MPD_Malloc_error.
226 *status |= MPD_Malloc_error;
240 * malloc fails, set 'result' to NaN and update 'status' with MPD_Malloc_error.
253 *status |= MPD_Malloc_error;
270 * Set 'result' to NaN, update status with MPD_Malloc_error and return 0.
290 *status |= MPD_Malloc_error;
mpdecimal.c 477 * 'result' is NaN, status is updated with MPD_Malloc_error. Return 0.
537 * the old memory area is always big enough, so checking for MPD_Malloc_error
    [all...]
io.c 307 mpd_seterror(dec, MPD_Malloc_error, status);
434 * set to NULL indicates MPD_Malloc_error.
1114 *status |= MPD_Malloc_error;
1148 *status |= MPD_Malloc_error;
    [all...]
mpdecimal.h 283 #define MPD_Malloc_error 0x00000200U
298 MPD_Malloc_error) \
311 #define MPD_Insufficient_storage MPD_Malloc_error
    [all...]
  /external/python/cpython3/Modules/_decimal/
_decimal.c 186 {"MallocError", "decimal.MallocError", MPD_Malloc_error, NULL},
485 if (status & (ctx->traps|MPD_Malloc_error)) {
488 if (status & MPD_Malloc_error) {
    [all...]

Completed in 830 milliseconds