/lib/xz/ |
D | xz_private.h | 70 # define DEC_IS_SINGLE(mode) ((mode) == XZ_SINGLE) argument 72 # define DEC_IS_SINGLE(mode) (false) argument 76 # define DEC_IS_PREALLOC(mode) ((mode) == XZ_PREALLOC) argument 78 # define DEC_IS_PREALLOC(mode) (false) argument 82 # define DEC_IS_DYNALLOC(mode) ((mode) == XZ_DYNALLOC) argument 84 # define DEC_IS_DYNALLOC(mode) (false) argument 88 # define DEC_IS_MULTI(mode) (true) argument 90 # define DEC_IS_MULTI(mode) ((mode) != XZ_SINGLE) argument 92 # define DEC_IS_MULTI(mode) (false) argument 116 XZ_EXTERN struct xz_dec_lzma2 *xz_dec_lzma2_create(enum xz_mode mode,
|
D | xz_dec_lzma2.c | 91 enum xz_mode mode; member 292 if (DEC_IS_SINGLE(dict->mode)) { in dict_reset() 407 if (DEC_IS_MULTI(dict->mode)) { in dict_uncompressed() 441 if (DEC_IS_MULTI(dict->mode)) { in dict_flush() 1141 XZ_EXTERN struct xz_dec_lzma2 *xz_dec_lzma2_create(enum xz_mode mode, in xz_dec_lzma2_create() argument 1148 s->dict.mode = mode; in xz_dec_lzma2_create() 1151 if (DEC_IS_PREALLOC(mode)) { in xz_dec_lzma2_create() 1157 } else if (DEC_IS_DYNALLOC(mode)) { in xz_dec_lzma2_create() 1174 if (DEC_IS_MULTI(s->dict.mode)) { in xz_dec_lzma2_reset() 1180 if (DEC_IS_DYNALLOC(s->dict.mode)) { in xz_dec_lzma2_reset() [all …]
|
D | xz_dec_stream.c | 52 enum xz_mode mode; member 756 if (DEC_IS_SINGLE(s->mode)) in xz_dec_run() 763 if (DEC_IS_SINGLE(s->mode)) { in xz_dec_run() 786 XZ_EXTERN struct xz_dec *xz_dec_init(enum xz_mode mode, uint32_t dict_max) in xz_dec_init() argument 792 s->mode = mode; in xz_dec_init() 795 s->bcj = xz_dec_bcj_create(DEC_IS_SINGLE(mode)); in xz_dec_init() 800 s->lzma2 = xz_dec_lzma2_create(mode, dict_max); in xz_dec_init()
|
/lib/ |
D | fault-inject.c | 171 static void debugfs_create_ul(const char *name, umode_t mode, in debugfs_create_ul() argument 174 debugfs_create_file(name, mode, parent, value, &fops_ul); in debugfs_create_ul() 190 static void debugfs_create_stacktrace_depth(const char *name, umode_t mode, in debugfs_create_stacktrace_depth() argument 194 debugfs_create_file(name, mode, parent, value, &fops_stacktrace_depth); in debugfs_create_stacktrace_depth() 202 umode_t mode = S_IFREG | S_IRUSR | S_IWUSR; in fault_create_debugfs_attr() local 209 debugfs_create_ul("probability", mode, dir, &attr->probability); in fault_create_debugfs_attr() 210 debugfs_create_ul("interval", mode, dir, &attr->interval); in fault_create_debugfs_attr() 211 debugfs_create_atomic_t("times", mode, dir, &attr->times); in fault_create_debugfs_attr() 212 debugfs_create_atomic_t("space", mode, dir, &attr->space); in fault_create_debugfs_attr() 213 debugfs_create_ul("verbose", mode, dir, &attr->verbose); in fault_create_debugfs_attr() [all …]
|
D | test_sysctl.c | 79 .mode = 0644, 88 .mode = 0644, 95 .mode = 0644, 102 .mode = 0644, 111 .mode = 0644, 118 .mode = 0644, 125 .mode = 0644, 135 .mode = 0555, 145 .mode = 0555,
|
D | Kconfig.kasan | 2 # This config refers to the generic KASAN mode. 50 prompt "KASAN mode" 67 bool "Generic mode" 73 Enables generic KASAN mode. 75 This mode is supported in both GCC and Clang. With GCC it requires 80 This mode consumes about 1/8th of available memory at kernel start 88 bool "Software tag-based mode" 94 Enables software tag-based KASAN mode. 96 This mode require software memory tagging support in the form of 99 Currently this mode is only implemented for arm64 CPUs and relies on [all …]
|
D | notifier-error-inject.c | 21 static struct dentry *debugfs_create_errno(const char *name, umode_t mode, in debugfs_create_errno() argument 24 return debugfs_create_file(name, mode, parent, value, &fops_errno); in debugfs_create_errno() 54 umode_t mode = S_IFREG | S_IRUSR | S_IWUSR; in notifier_err_inject_init() local 75 debugfs_create_errno("error", mode, action_dir, &action->error); in notifier_err_inject_init()
|
D | Kconfig | 95 bool "Access I/O in non-MMIO mode" 99 hosts which can not be accessed in MMIO mode. Using the logical PIO
|
D | Kconfig.debug | 1037 mode for more than 20 seconds, without giving other tasks a 1047 mode for more than 20 seconds (configurable using the watchdog_thresh 1090 Hardlockups are bugs that cause the CPU to loop in kernel mode 1101 mode with interrupts disabled for more than 10 seconds (configurable
|
/lib/zlib_inflate/ |
D | inflate.c | 42 state->mode = HEAD; in zlib_inflateReset() 172 if (state->mode == STORED && state->bits == 0) { in zlib_inflateSyncPacket() 173 state->mode = TYPE; in zlib_inflateSyncPacket() 358 if (state->mode == TYPE) state->mode = TYPEDO; /* skip check */ in zlib_inflate() 364 switch (state->mode) { in zlib_inflate() 367 state->mode = TYPEDO; in zlib_inflate() 374 state->mode = BAD; in zlib_inflate() 379 state->mode = BAD; in zlib_inflate() 386 state->mode = BAD; in zlib_inflate() 391 state->mode = hold & 0x200 ? DICTID : TYPE; in zlib_inflate() [all …]
|
D | inffast.c | 173 state->mode = BAD; in inflate_fast() 184 state->mode = BAD; in inflate_fast() 291 state->mode = BAD; in inflate_fast() 300 state->mode = TYPE; in inflate_fast() 305 state->mode = BAD; in inflate_fast()
|
D | inflate.h | 75 inflate_mode mode; /* current inflate mode */ member
|
/lib/zlib_dfltcc/ |
D | dfltcc_inflate.c | 109 state->mode = CHECK; in dfltcc_inflate() 117 state->mode = MEM; in dfltcc_inflate() 144 state->mode = BAD; in dfltcc_inflate() 147 state->mode = TYPEDO; in dfltcc_inflate()
|
/lib/mpi/ |
D | mpi-internal.h | 217 typedef unsigned int UQItype __attribute__ ((mode(QI))); 218 typedef int SItype __attribute__ ((mode(SI))); 219 typedef unsigned int USItype __attribute__ ((mode(SI))); 220 typedef int DItype __attribute__ ((mode(DI))); 221 typedef unsigned int UDItype __attribute__ ((mode(DI)));
|
D | longlong.h | 675 typedef unsigned int __ll_UTItype __attribute__((mode(TI))); \
|
/lib/fonts/ |
D | Kconfig | 43 provided by the VGA text console 80x25 mode.
|