Home
last modified time | relevance | path

Searched refs:this (Results 1 – 19 of 19) sorted by relevance

/lib/zlib_inflate/
Dinftrees.c39 code this; /* table entry for duplication */ in zlib_inflate_table() local
104 this.op = (unsigned char)64; /* invalid code marker */ in zlib_inflate_table()
105 this.bits = (unsigned char)1; in zlib_inflate_table()
106 this.val = (unsigned short)0; in zlib_inflate_table()
107 *(*table)++ = this; /* make a table to force an error */ in zlib_inflate_table()
108 *(*table)++ = this; in zlib_inflate_table()
204 this.bits = (unsigned char)(len - drop); in zlib_inflate_table()
206 this.op = (unsigned char)0; in zlib_inflate_table()
207 this.val = work[sym]; in zlib_inflate_table()
210 this.op = (unsigned char)(extra[work[sym]]); in zlib_inflate_table()
[all …]
Dinflate.c342 code this; /* current decoding table entry */ in zlib_inflate() local
508 this = state->lencode[BITS(state->lenbits)]; in zlib_inflate()
509 if ((unsigned)(this.bits) <= bits) break; in zlib_inflate()
512 if (this.val < 16) { in zlib_inflate()
513 NEEDBITS(this.bits); in zlib_inflate()
514 DROPBITS(this.bits); in zlib_inflate()
515 state->lens[state->have++] = this.val; in zlib_inflate()
518 if (this.val == 16) { in zlib_inflate()
519 NEEDBITS(this.bits + 2); in zlib_inflate()
520 DROPBITS(this.bits); in zlib_inflate()
[all …]
Dinffast.c88 code this; /* retrieved table entry */ in inflate_fast() local
125 this = lcode[hold & lmask]; in inflate_fast()
127 op = (unsigned)(this.bits); in inflate_fast()
130 op = (unsigned)(this.op); in inflate_fast()
132 *out++ = (unsigned char)(this.val); in inflate_fast()
135 len = (unsigned)(this.val); in inflate_fast()
152 this = dcode[hold & dmask]; in inflate_fast()
154 op = (unsigned)(this.bits); in inflate_fast()
157 op = (unsigned)(this.op); in inflate_fast()
159 dist = (unsigned)(this.val); in inflate_fast()
[all …]
/lib/
DKconfig.debug10 Selecting this option causes time stamps of the printk()
25 Selecting this option causes printk() to add a caller "thread id" (if
42 Selecting this option adds build ID information for symbols in
71 When "quiet" is passed on the kernel commandline this loglevel
103 NOTE: Using this option may adversely affect SMP systems.
133 making use of this feature.
254 size of their debug .deb packages with this config set, due to the
256 recompressed with a different compression scheme. But this is still
299 newer revisions of DWARF, you may wish to choose this or have your
300 config select this.
[all …]
DKconfig.ubsan22 text on failure paths. To avoid this, Sanitizer instrumentation
27 the system. For some system builders this is an acceptable
54 Note that this does not protect array overflows via bad calls
82 Enabling this option detects errors due to accesses through a
138 Enabling this option on architectures that support unaligned
147 If you don't enable this option, you have to explicitly specify
149 Enabling this option will get kernel image size increased
DKconfig106 sure your devices really need this configure item enabled.
120 If INDIRECT_IOMEM is selected, this enables falling back to plain
195 Most modern processors have enough cache to hold this table without
198 This is the default implementation choice. Choose this one unless
208 Only choose this option if you know what you are doing.
216 Only choose this option if you know what you are doing.
224 Only choose this option if you are debugging crc32.
266 This option provides CRC8 function. Drivers may select this
406 Drivers may select this option to force specific constant
414 When this option is selected, the BCH library supports
[all …]
DKconfig.kgdb36 In particular this disallows instrumentation of functions
61 the tests. The most basic of this I/O module is to boot
141 kernel is still usable in this situation.
143 No guarantees that the kernel is still usable in this situation.
152 when early_param's are parsed then it select this config.
157 NOTE: Even if this isn't selected by an architecture we will
DKconfig.kfence36 Set this to 0 to disable KFENCE by default, in which case only
54 performance has carefully been evaluated with this option.
69 this option is to stress test KFENCE with concurrent error reports
Ddevres.c340 struct pcim_iomap_devres *this = res; in pcim_iomap_release() local
344 if (this->table[i]) in pcim_iomap_release()
345 pci_iounmap(dev, this->table[i]); in pcim_iomap_release()
DKconfig.kasan158 with Clang, this option is deemed unsafe.
177 checked. Enabling this option leads to higher memory usage.
DKconfig.kcsan60 While this option should generally be benign, we call into more
171 reporting to avoid flooding the console with reports. Setting this
/lib/crypto/
DKconfig24 implementation is enabled, this implementation serves the users
40 implementation is enabled, this implementation serves the users
66 implementation is enabled, this implementation serves the users
102 implementation is enabled, this implementation serves the users
/lib/xz/
DKconfig53 Unless you know that you need this, say N.
70 Unless you are developing the XZ decoder, you don't need this
/lib/vdso/
DKconfig12 Each architecture that enables this feature has to
/lib/fonts/
DKconfig18 Note that the answer to this question won't directly affect the
32 Note that this is a poor quality font. The VGA 8x16 font is quite a
53 framebuffer drivers don't support this one at all.
/lib/mpi/
Dmpicoder.c259 #error please implement for this limb size. in mpi_read_buffer()
288 #error please implement for this limb size. in mpi_read_buffer()
363 #error please implement for this limb size. in mpi_write_to_sgl()
405 #error please implement for this limb size. in mpi_write_to_sgl()
/lib/kunit/
DKconfig22 Enable debugfs representation for kunit. Currently this consists
/lib/raid6/
Daltivec.uc22 * bracked this with preempt_disable/enable or in a lock)
Dint.uc27 /* Change this from BITS_PER_LONG if there is something better... */