Home
last modified time | relevance | path

Searched refs:more (Results 1 – 12 of 12) sorted by relevance

/lib/zlib_deflate/
Ddeflate.c743 unsigned more; /* Amount of free space at the end of the window. */ in fill_window() local
747 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart); in fill_window()
750 if (more == 0 && s->strstart == 0 && s->lookahead == 0) { in fill_window()
751 more = wsize; in fill_window()
753 } else if (more == (unsigned)(-1)) { in fill_window()
757 more--; in fill_window()
792 more += wsize; in fill_window()
807 Assert(more >= 2, "more < 2"); in fill_window()
809 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more); in fill_window()
817 Call UPDATE_HASH() MIN_MATCH-3 more times in fill_window()
[all …]
/lib/kunit/
DKconfig13 architectures. For more information, please see
44 itself, lib/kunit/example-test.c, for more information. This option
57 For more information on KUnit and unit tests in general please refer
/lib/
DKconfig.kcsan39 See <file:Documentation/dev-tools/kcsan.rst> for more details.
53 bool "Show verbose reports with more information about system state"
56 If enabled, reports show more information about the system state that
60 While this option should generally be benign, we call into more
141 results in more aggressive race detection, whereas a larger value
DKconfig.debug470 that runtime stack traces are more reliable.
475 For more information, see
617 be under a more specific debug option but isn't.
701 There is no support for more fine grained debug control like
736 allocations. See Documentation/dev-tools/kmemleak.rst for more
1037 mode for more than 20 seconds, without giving other tasks a
1047 mode for more than 20 seconds (configurable using the watchdog_thresh
1091 for more than 10 seconds, without letting other interrupts have a
1101 mode with interrupts disabled for more than 10 seconds (configurable
1301 For more details, see Documentation/locking/lockdep-design.rst.
[all …]
DKconfig.kfence17 See <file:Documentation/dev-tools/kfence.rst> for more details.
DKconfig466 for more information.
486 for more information.
514 them on the stack. This is a bit more expensive, but avoids
DKconfig.ubsan10 behaviours at runtime. For more details, see:
DKconfig.kgdb19 CONFIG_FRAME_POINTER to aid in producing more reliable stack
DKconfig.kasan191 For more information on KUnit and unit tests in general, please refer
/lib/fonts/
DKconfig33 lot more readable.
118 for long (8 and more hours per day) work with computers.
/lib/xz/
DKconfig8 CRC32 is supported. See Documentation/staging/xz.rst for more information.
/lib/lz4/
Dlz4_compress.c354 unsigned const int more = LZ4_count(ip, in LZ4_compress_generic() local
358 matchCode += more; in LZ4_compress_generic()
359 ip += more; in LZ4_compress_generic()