/external/chromium_org/third_party/zlib/ |
inftrees.h | 56 LENS, 60 int ZLIB_INTERNAL inflate_table OF((codetype type, unsigned short FAR *lens,
|
inftrees.c | 22 The code lengths are lens[0..codes-1]. The result starts at *table, 24 lens shorts, which is used as a work area. type is the type of code 25 to be generated, CODES, LENS, or DISTS. On return, zero is success, 32 int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work) 34 unsigned short FAR *lens; 77 code lengths are lens[0..codes-1]. Each length corresponds to the 89 lens[] are in the range 0..MAXBITS. The caller must assure this. 106 /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */ 110 count[lens[sym]]++; 147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym [all...] |
infback.c | 88 while (sym < 144) state->lens[sym++] = 8; 89 while (sym < 256) state->lens[sym++] = 9; 90 while (sym < 280) state->lens[sym++] = 7; 91 while (sym < 288) state->lens[sym++] = 8; 95 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); 99 while (sym < 32) state->lens[sym++] = 5; 102 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); 371 state->lens[order[state->have++]] = (unsigned short)BITS(3); 375 state->lens[order[state->have++]] = 0 [all...] |
inflate.c | 255 while (sym < 144) state->lens[sym++] = 8; 256 while (sym < 256) state->lens[sym++] = 9; 257 while (sym < 280) state->lens[sym++] = 7; 258 while (sym < 288) state->lens[sym++] = 8; 262 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); 266 while (sym < 32) state->lens[sym++] = 5; 269 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); 902 state->lens[order[state->have++]] = (unsigned short)BITS(3); 906 state->lens[order[state->have++]] = 0 [all...] |
/external/qemu/distrib/zlib-1.2.3/ |
inftrees.h | 49 LENS, 53 extern int inflate_table OF((codetype type, unsigned short FAR *lens,
|
inftrees.c | 22 The code lengths are lens[0..codes-1]. The result starts at *table, 24 lens shorts, which is used as a work area. type is the type of code 25 to be generated, CODES, LENS, or DISTS. On return, zero is success, 32 int inflate_table(type, lens, codes, table, bits, work) 34 unsigned short FAR *lens; 77 code lengths are lens[0..codes-1]. Each length corresponds to the 89 lens[] are in the range 0..MAXBITS. The caller must assure this. 106 /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */ 110 count[lens[sym]]++; 147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym [all...] |
infback.c | 88 while (sym < 144) state->lens[sym++] = 8; 89 while (sym < 256) state->lens[sym++] = 9; 90 while (sym < 280) state->lens[sym++] = 7; 91 while (sym < 288) state->lens[sym++] = 8; 95 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); 99 while (sym < 32) state->lens[sym++] = 5; 102 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); 371 state->lens[order[state->have++]] = (unsigned short)BITS(3); 375 state->lens[order[state->have++]] = 0 [all...] |
inflate.c | 220 while (sym < 144) state->lens[sym++] = 8; 221 while (sym < 256) state->lens[sym++] = 9; 222 while (sym < 280) state->lens[sym++] = 7; 223 while (sym < 288) state->lens[sym++] = 8; 227 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); 231 while (sym < 32) state->lens[sym++] = 5; 234 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); 858 state->lens[order[state->have++]] = (unsigned short)BITS(3); 862 state->lens[order[state->have++]] = 0 [all...] |
/external/zlib/src/contrib/infback9/ |
inftree9.h | 55 LENS, 59 extern int inflate_table9 OF((codetype type, unsigned short FAR *lens,
|
inftree9.c | 22 The code lengths are lens[0..codes-1]. The result starts at *table, 24 lens shorts, which is used as a work area. type is the type of code 25 to be generated, CODES, LENS, or DISTS. On return, zero is success, 32 int inflate_table9(type, lens, codes, table, bits, work) 34 unsigned short FAR *lens; 79 code lengths are lens[0..codes-1]. Each length corresponds to the 91 lens[] are in the range 0..MAXBITS. The caller must assure this. 108 /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */ 112 count[lens[sym]]++; 141 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym [all...] |
infback9.c | 63 while (sym < 144) state.lens[sym++] = 8; 64 while (sym < 256) state.lens[sym++] = 9; 65 while (sym < 280) state.lens[sym++] = 7; 66 while (sym < 288) state.lens[sym++] = 8; 70 inflate_table9(LENS, state.lens, 288, &(next), &(bits), state.work); 74 while (sym < 32) state.lens[sym++] = 5; 77 inflate_table9(DISTS, state.lens, 32, &(next), &(bits), state.work); 364 state->lens[order[state->have++]] = (unsigned short)BITS(3); 368 state->lens[order[state->have++]] = 0 [all...] |
/external/zlib/src/ |
inftrees.h | 56 LENS, 60 int ZLIB_INTERNAL inflate_table OF((codetype type, unsigned short FAR *lens,
|
inftrees.c | 22 The code lengths are lens[0..codes-1]. The result starts at *table, 24 lens shorts, which is used as a work area. type is the type of code 25 to be generated, CODES, LENS, or DISTS. On return, zero is success, 32 int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work) 34 unsigned short FAR *lens; 77 code lengths are lens[0..codes-1]. Each length corresponds to the 89 lens[] are in the range 0..MAXBITS. The caller must assure this. 106 /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */ 110 count[lens[sym]]++; 147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym [all...] |
infback.c | 97 while (sym < 144) state->lens[sym++] = 8; 98 while (sym < 256) state->lens[sym++] = 9; 99 while (sym < 280) state->lens[sym++] = 7; 100 while (sym < 288) state->lens[sym++] = 8; 104 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); 108 while (sym < 32) state->lens[sym++] = 5; 111 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); 380 state->lens[order[state->have++]] = (unsigned short)BITS(3); 384 state->lens[order[state->have++]] = 0 [all...] |
inflate.c | 276 while (sym < 144) state->lens[sym++] = 8; 277 while (sym < 256) state->lens[sym++] = 9; 278 while (sym < 280) state->lens[sym++] = 7; 279 while (sym < 288) state->lens[sym++] = 8; 283 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); 287 while (sym < 32) state->lens[sym++] = 5; 290 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); 918 state->lens[order[state->have++]] = (unsigned short)BITS(3); 922 state->lens[order[state->have++]] = 0 [all...] |
/external/eigen/blas/testing/ |
dblat1.f | 255 INTEGER INCXS(4), INCYS(4), LENS(4,2), NS(4) 269 DATA LENS/1, 1, 2, 4, 1, 1, 3, 7/ 389 LENX = LENS(KN,MX) 390 LENY = LENS(KN,MY) 450 INTEGER INCXS(4), INCYS(4), LENS(4,2), MWPINX(11), 462 DATA LENS/1, 1, 2, 4, 1, 1, 3, 7/ 523 LENX = LENS(KN,MX) 524 LENY = LENS(KN,MY)
|
sblat1.f | 255 INTEGER INCXS(4), INCYS(4), LENS(4,2), NS(4) 269 DATA LENS/1, 1, 2, 4, 1, 1, 3, 7/ 389 LENX = LENS(KN,MX) 390 LENY = LENS(KN,MY) 450 INTEGER INCXS(4), INCYS(4), LENS(4,2), MWPINX(11), 462 DATA LENS/1, 1, 2, 4, 1, 1, 3, 7/ 523 LENX = LENS(KN,MX) 524 LENY = LENS(KN,MY)
|
cblat1.f | 293 INTEGER INCXS(4), INCYS(4), LENS(4,2), NS(4) 307 DATA LENS/1, 1, 2, 4, 1, 1, 3, 7/ 484 LENX = LENS(KN,MX) 485 LENY = LENS(KN,MY)
|
zblat1.f | 293 INTEGER INCXS(4), INCYS(4), LENS(4,2), NS(4) 307 DATA LENS/1, 1, 2, 4, 1, 1, 3, 7/ 484 LENX = LENS(KN,MX) 485 LENY = LENS(KN,MY)
|