Home
last modified time | relevance | path

Searched refs:code (Results 1 – 15 of 15) sorted by relevance

/lib/zlib_inflate/
Dinflate.h97 code const *lencode; /* starting table for length/literal codes */
98 code const *distcode; /* starting table for distance codes */
106 code *next; /* next available space in codes[] */
109 code codes[ENOUGH]; /* space for code tables */
Dinffixed.h10 static const code lenfix[512] = {
87 static const code distfix[32] = {
Dinftrees.h31 } code; typedef
57 unsigned codes, code **table,
Dinftrees.c24 code **table, unsigned *bits, unsigned short *work) in zlib_inflate_table()
39 code this; /* table entry for duplication */ in zlib_inflate_table()
40 code *next; /* next available space in table */ in zlib_inflate_table()
Dinffast.c105 code const *lcode; /* local strm->lencode */ in inflate_fast()
106 code const *dcode; /* local strm->distcode */ in inflate_fast()
109 code this; /* retrieved table entry */ in inflate_fast()
Dinflate.c328 code this; /* current decoding table entry */ in zlib_inflate()
329 code last; /* parent table entry */ in zlib_inflate()
473 state->lencode = (code const *)(state->next); in zlib_inflate()
538 state->lencode = (code const *)(state->next); in zlib_inflate()
547 state->distcode = (code const *)(state->next); in zlib_inflate()
/lib/zlib_deflate/
Ddeftree.c231 int code; /* code value */ in tr_static_init() local
240 for (code = 0; code < LENGTH_CODES-1; code++) { in tr_static_init()
241 base_length[code] = length; in tr_static_init()
242 for (n = 0; n < (1<<extra_lbits[code]); n++) { in tr_static_init()
243 length_code[length++] = (uch)code; in tr_static_init()
251 length_code[length-1] = (uch)code; in tr_static_init()
255 for (code = 0 ; code < 16; code++) { in tr_static_init()
256 base_dist[code] = dist; in tr_static_init()
257 for (n = 0; n < (1<<extra_dbits[code]); n++) { in tr_static_init()
258 dist_code[dist++] = (uch)code; in tr_static_init()
[all …]
Ddefutil.h43 ush code; /* bit string */ member
52 #define Code fc.code
300 static inline unsigned bi_reverse(unsigned code, /* the value to invert */ in bi_reverse() argument
305 res |= code & 1; in bi_reverse()
306 code >>= 1, res <<= 1; in bi_reverse()
/lib/
Ddecompress_unlzma.c73 uint32_t code; member
114 rc->code = 0; in rc_init()
125 rc->code = (rc->code << 8) | *rc->ptr++; in rc_init_code()
136 rc->code = (rc->code << 8) | *rc->ptr++; in rc_do_normalize()
157 return rc->code < t; in rc_is_bit_0()
169 rc->code -= rc->bound; in rc_update_bit_1()
192 if (rc->code >= rc->range) { in rc_direct_bit()
193 rc->code -= rc->range; in rc_direct_bit()
DKconfig.kmemcheck20 will insert extra code at *every* read and write to tracked memory
21 thus slow down the kernel code (but user code is unaffected).
DKconfig.debug168 variables in gdb on optimized code.
206 bool "Generate readable assembler code"
262 any use of code/data previously in these sections would
264 In the code, functions and variables are annotated with
266 which results in the code/data being placed in specific sections.
320 To ensure that generic code follows the above rules, this
362 If you say Y here, additional code will be inserted into the
370 This enables the selftest of the object debug code.
385 If you say Y here, additional code will be inserted into the
393 If you say Y here, additional code will be inserted into the
[all …]
DKconfig405 # is ridiculous for the amount of code involved. Until an out-of-tree
412 simple text pattern matching. It originated in the ATA code
428 working on the code to ensure they haven't introduced any
431 It only adds a little bit of code and slows kernel boot (or
Dtest_bpf.c1817 if (fp[len].code != 0 || fp[len].k != 0) in probe_filter_length()
/lib/xz/
Dxz_dec_lzma2.c97 uint32_t code; member
441 rc->code = 0; in rc_reset()
455 rc->code = (rc->code << 8) + b->in[b->in_pos++]; in rc_read_init()
474 return rc->code == 0; in rc_is_finished()
482 rc->code = (rc->code << RC_SHIFT_BITS) + rc->in[rc->in_pos++]; in rc_normalize()
504 if (rc->code < bound) { in rc_bit()
510 rc->code -= bound; in rc_bit()
560 rc->code -= rc->range; in rc_direct()
561 mask = (uint32_t)0 - (rc->code >> 31); in rc_direct()
562 rc->code += rc->range & mask; in rc_direct()
/lib/raid6/
Daltivec.uc66 Altivec code around the enable/disable code */