Home
last modified time | relevance | path

Searched refs:this (Results 1 – 15 of 15) 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.c328 code this; /* current decoding table entry */ in zlib_inflate() local
493 this = state->lencode[BITS(state->lenbits)]; in zlib_inflate()
494 if ((unsigned)(this.bits) <= bits) break; in zlib_inflate()
497 if (this.val < 16) { in zlib_inflate()
498 NEEDBITS(this.bits); in zlib_inflate()
499 DROPBITS(this.bits); in zlib_inflate()
500 state->lens[state->have++] = this.val; in zlib_inflate()
503 if (this.val == 16) { in zlib_inflate()
504 NEEDBITS(this.bits + 2); in zlib_inflate()
505 DROPBITS(this.bits); in zlib_inflate()
[all …]
Dinffast.c109 code this; /* retrieved table entry */ in inflate_fast() local
146 this = lcode[hold & lmask]; in inflate_fast()
148 op = (unsigned)(this.bits); in inflate_fast()
151 op = (unsigned)(this.op); in inflate_fast()
153 PUP(out) = (unsigned char)(this.val); in inflate_fast()
156 len = (unsigned)(this.val); in inflate_fast()
173 this = dcode[hold & dmask]; in inflate_fast()
175 op = (unsigned)(this.bits); in inflate_fast()
178 op = (unsigned)(this.op); in inflate_fast()
180 dist = (unsigned)(this.val); in inflate_fast()
[all …]
/lib/
DKconfig.ubsan21 # So dependsy bellow used to disable this option in allmodconfig
26 If you don't enable this option, you have to explicitly specify
28 Enabling this option will get kernel image size increased
38 Disabling this option on architectures that support unaligned
DKconfig.debug10 Selecting this option causes time stamps of the printk()
25 Selecting this option causes printk() to add a caller "thread id" (if
60 When "quiet" is passed on the kernel commandline this loglevel
92 NOTE: Using this option may adversely affect SMP systems.
120 filesystem must first be mounted before making use of this feature.
228 Turning this on expects presence of pahole tool, which will convert
246 Enable the __must_check logic in the kernel build. Disable this to
258 Tell gcc to warn at build time for stack frames larger than this.
259 Setting this too low will cause a lot of warnings.
284 debugging files into. Enable this option to be able to read and
[all …]
DKconfig95 sure your devices really need this configure item enabled.
165 Most modern processors have enough cache to hold this table without
168 This is the default implementation choice. Choose this one unless
178 Only choose this option if you know what you are doing.
186 Only choose this option if you know what you are doing.
194 Only choose this option if you are debugging crc32.
236 This option provides CRC8 function. Drivers may select this
365 Drivers may select this option to force specific constant
373 When this option is selected, the BCH library supports
385 Drivers should declare a default value for this symbol if
[all …]
Ddevres.c274 struct pcim_iomap_devres *this = res; in pcim_iomap_release() local
278 if (this->table[i]) in pcim_iomap_release()
279 pci_iounmap(dev, this->table[i]); in pcim_iomap_release()
DKconfig.kgdb41 the tests. The most basic of this I/O module is to boot
121 kernel is still usable in this situation.
123 No guarantees that the kernel is still usable in this situation.
DKconfig.kasan103 For CONFIG_KASAN_GENERIC this requires GCC 5.0 or later.
/lib/mpi/
Dmpicoder.c152 #error please implement for this limb size. in mpi_read_buffer()
181 #error please implement for this limb size. in mpi_read_buffer()
256 #error please implement for this limb size. in mpi_write_to_sgl()
298 #error please implement for this limb size. in mpi_write_to_sgl()
/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/xz/
DKconfig57 Unless you are developing the XZ decoder, you don't need this
/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... */