Home
last modified time | relevance | path

Searched refs:mode (Results 1 – 16 of 16) sorted by relevance

/lib/xz/
Dxz_private.h67 # define DEC_IS_SINGLE(mode) ((mode) == XZ_SINGLE) argument
69 # define DEC_IS_SINGLE(mode) (false) argument
73 # define DEC_IS_PREALLOC(mode) ((mode) == XZ_PREALLOC) argument
75 # define DEC_IS_PREALLOC(mode) (false) argument
79 # define DEC_IS_DYNALLOC(mode) ((mode) == XZ_DYNALLOC) argument
81 # define DEC_IS_DYNALLOC(mode) (false) argument
85 # define DEC_IS_MULTI(mode) (true) argument
87 # define DEC_IS_MULTI(mode) ((mode) != XZ_SINGLE) argument
89 # define DEC_IS_MULTI(mode) (false) argument
113 XZ_EXTERN struct xz_dec_lzma2 *xz_dec_lzma2_create(enum xz_mode mode,
Dxz_dec_stream.c52 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()
Dxz_dec_lzma2.c91 enum xz_mode mode; member
288 if (DEC_IS_SINGLE(dict->mode)) { in dict_reset()
396 if (DEC_IS_MULTI(dict->mode)) { in dict_uncompressed()
420 if (DEC_IS_MULTI(dict->mode)) { in dict_flush()
1108 XZ_EXTERN struct xz_dec_lzma2 *xz_dec_lzma2_create(enum xz_mode mode, in xz_dec_lzma2_create() argument
1115 s->dict.mode = mode; in xz_dec_lzma2_create()
1118 if (DEC_IS_PREALLOC(mode)) { in xz_dec_lzma2_create()
1124 } else if (DEC_IS_DYNALLOC(mode)) { in xz_dec_lzma2_create()
1141 if (DEC_IS_MULTI(s->dict.mode)) { in xz_dec_lzma2_reset()
1147 if (DEC_IS_DYNALLOC(s->dict.mode)) { in xz_dec_lzma2_reset()
[all …]
/lib/
Dfault-inject.c169 static void debugfs_create_ul(const char *name, umode_t mode, in debugfs_create_ul() argument
172 debugfs_create_file(name, mode, parent, value, &fops_ul); in debugfs_create_ul()
188 static void debugfs_create_stacktrace_depth(const char *name, umode_t mode, in debugfs_create_stacktrace_depth() argument
192 debugfs_create_file(name, mode, parent, value, &fops_stacktrace_depth); in debugfs_create_stacktrace_depth()
200 umode_t mode = S_IFREG | S_IRUSR | S_IWUSR; in fault_create_debugfs_attr() local
207 debugfs_create_ul("probability", mode, dir, &attr->probability); in fault_create_debugfs_attr()
208 debugfs_create_ul("interval", mode, dir, &attr->interval); in fault_create_debugfs_attr()
209 debugfs_create_atomic_t("times", mode, dir, &attr->times); in fault_create_debugfs_attr()
210 debugfs_create_atomic_t("space", mode, dir, &attr->space); in fault_create_debugfs_attr()
211 debugfs_create_ul("verbose", mode, dir, &attr->verbose); in fault_create_debugfs_attr()
[all …]
Dtest_sysctl.c75 .mode = 0644,
84 .mode = 0644,
91 .mode = 0644,
98 .mode = 0644,
105 .mode = 0644,
112 .mode = 0644,
122 .mode = 0555,
132 .mode = 0555,
DKconfig.kasan2 # This config refers to the generic KASAN mode.
26 prompt "KASAN mode"
38 bool "Generic mode"
45 Enables generic KASAN mode.
49 instrumentation mode (CONFIG_KASAN_INLINE). With Clang it requires
52 This mode consumes about 1/8th of available memory at kernel start
60 bool "Software tag-based mode"
67 Enables software tag-based KASAN mode.
68 This mode requires Top Byte Ignore support by the CPU and therefore
70 This mode requires Clang version 7.0.0 or later.
[all …]
Dnotifier-error-inject.c21 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()
Dtest_bitmap.c291 char *mode = is_user ? "_user" : ""; in __test_bitmap_parselist() local
314 mode, i, ptest.in, err, ptest.errno); in __test_bitmap_parselist()
321 mode, i, ptest.in, bmap[0], in __test_bitmap_parselist()
328 mode, i, ptest.in, time); in __test_bitmap_parselist()
DKconfig84 bool "Access I/O in non-MMIO mode"
88 hosts which can not be accessed in MMIO mode. Using the logical PIO
DKconfig.debug831 mode for more than 20 seconds, without giving other tasks a
841 mode for more than 20 seconds (configurable using the watchdog_thresh
885 Hardlockups are bugs that cause the CPU to loop in kernel mode
896 mode with interrupts disabled for more than 10 seconds (configurable
/lib/zlib_inflate/
Dinflate.c32 state->mode = HEAD; in zlib_inflateReset()
153 if (state->mode == STORED && state->bits == 0) { in zlib_inflateSyncPacket()
154 state->mode = TYPE; in zlib_inflateSyncPacket()
344 if (state->mode == TYPE) state->mode = TYPEDO; /* skip check */ in zlib_inflate()
350 switch (state->mode) { in zlib_inflate()
353 state->mode = TYPEDO; in zlib_inflate()
360 state->mode = BAD; in zlib_inflate()
365 state->mode = BAD; in zlib_inflate()
372 state->mode = BAD; in zlib_inflate()
377 state->mode = hold & 0x200 ? DICTID : TYPE; in zlib_inflate()
[all …]
Dinffast.c194 state->mode = BAD; in inflate_fast()
205 state->mode = BAD; in inflate_fast()
313 state->mode = BAD; in inflate_fast()
322 state->mode = TYPE; in inflate_fast()
327 state->mode = BAD; in inflate_fast()
Dinflate.h73 inflate_mode mode; /* current inflate mode */ member
/lib/mpi/
Dmpi-internal.h164 typedef unsigned int UQItype __attribute__ ((mode(QI)));
165 typedef int SItype __attribute__ ((mode(SI)));
166 typedef unsigned int USItype __attribute__ ((mode(SI)));
167 typedef int DItype __attribute__ ((mode(DI)));
168 typedef unsigned int UDItype __attribute__ ((mode(DI)));
Dlonglong.h675 typedef unsigned int __ll_UTItype __attribute__((mode(TI))); \
/lib/fonts/
DKconfig43 provided by the VGA text console 80x25 mode.