Searched refs:codes (Results 1 - 22 of 22) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
H A Dinftrees.h39 1444, which is the sum of 852 for literal/length codes and 592 for distance
40 codes. These values were found by exhaustive searches using the program
43 maximum bit length of a code. "enough 286 9 15" for literal/length codes
44 returns returns 852, and "enough 30 6 15" for distance codes returns 592.
61 unsigned codes, code FAR * FAR *table,
H A Dinflate.h72 Read deflate codes in fixed or dynamic block:
106 code const FAR *lencode; /* starting table for length/literal codes */
107 code const FAR *distcode; /* starting table for distance codes */
115 code FAR *next; /* next available space in codes[] */
118 code codes[ENOUGH]; /* space for code tables */ member in struct:inflate_state
H A Dinftrees.c22 The code lengths are lens[0..codes-1]. The result starts at *table,
32 int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work)
35 unsigned codes;
46 int left; /* number of prefix codes available */
58 unsigned short count[MAXBITS+1]; /* number of codes of each length */
60 static const unsigned short lbase[31] = { /* Length codes 257..285 base */
63 static const unsigned short lext[31] = { /* Length codes 257..285 extra */
66 static const unsigned short dbase[32] = { /* Distance codes 0..29 base */
70 static const unsigned short dext[32] = { /* Distance codes 0..29 extra */
77 code lengths are lens[0..codes
[all...]
H A Dinflate.c122 state->lencode = state->distcode = state->next = state->codes;
331 puts(" /* inffixed.h -- table for decoding fixed codes");
559 if there is no input available. The decoding of variable length codes uses
845 Tracev((stderr, "inflate: fixed codes block%s\n",
847 state->mode = LEN_; /* decode codes */
854 Tracev((stderr, "inflate: dynamic codes block%s\n",
923 state->next = state->codes;
997 state->next = state->codes;
1016 Tracev((stderr, "inflate: codes ok\n"));
1470 if (state->lencode >= state->codes
[all...]
H A Dinfback.c310 Tracev((stderr, "inflate: fixed codes block%s\n",
312 state->mode = LEN; /* decode codes */
315 Tracev((stderr, "inflate: dynamic codes block%s\n",
385 state->next = state->codes;
459 state->next = state->codes;
478 Tracev((stderr, "inflate: codes ok\n"));
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
H A Dinftrees.h54 unsigned codes, code FAR * FAR *table,
H A Dinflate.h68 Read deflate codes:
102 code const FAR *lencode; /* starting table for length/literal codes */
103 code const FAR *distcode; /* starting table for distance codes */
111 code FAR *next; /* next available space in codes[] */
114 code codes[ENOUGH]; /* space for code tables */ member in struct:inflate_state
H A Dinftrees.c22 The code lengths are lens[0..codes-1]. The result starts at *table,
32 int inflate_table(type, lens, codes, table, bits, work)
35 unsigned codes;
46 int left; /* number of prefix codes available */
58 unsigned short count[MAXBITS+1]; /* number of codes of each length */
60 static const unsigned short lbase[31] = { /* Length codes 257..285 base */
63 static const unsigned short lext[31] = { /* Length codes 257..285 extra */
66 static const unsigned short dbase[32] = { /* Distance codes 0..29 base */
70 static const unsigned short dext[32] = { /* Distance codes 0..29 extra */
77 code lengths are lens[0..codes
[all...]
H A Dinflate.c123 state->lencode = state->distcode = state->next = state->codes;
275 puts(" /* inffixed.h -- table for decoding fixed codes");
508 if there is no input available. The decoding of variable length codes uses
792 Tracev((stderr, "inflate: fixed codes block%s\n",
794 state->mode = LEN; /* decode codes */
797 Tracev((stderr, "inflate: dynamic codes block%s\n",
863 state->next = state->codes;
929 state->next = state->codes;
948 Tracev((stderr, "inflate: codes ok\n"));
1355 if (state->lencode >= state->codes
[all...]
H A Dinfback.c301 Tracev((stderr, "inflate: fixed codes block%s\n",
303 state->mode = LEN; /* decode codes */
306 Tracev((stderr, "inflate: dynamic codes block%s\n",
376 state->next = state->codes;
442 state->next = state->codes;
461 Tracev((stderr, "inflate: codes ok\n"));
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
H A Dinftrees.h39 1444, which is the sum of 852 for literal/length codes and 592 for distance
40 codes. These values were found by exhaustive searches using the program
43 maximum bit length of a code. "enough 286 9 15" for literal/length codes
44 returns returns 852, and "enough 30 6 15" for distance codes returns 592.
61 unsigned codes, code FAR * FAR *table,
H A Dinftrees.c22 The code lengths are lens[0..codes-1]. The result starts at *table,
32 int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work)
35 unsigned codes;
46 int left; /* number of prefix codes available */
58 unsigned short count[MAXBITS+1]; /* number of codes of each length */
60 static const unsigned short lbase[31] = { /* Length codes 257..285 base */
63 static const unsigned short lext[31] = { /* Length codes 257..285 extra */
66 static const unsigned short dbase[32] = { /* Distance codes 0..29 base */
70 static const unsigned short dext[32] = { /* Distance codes 0..29 extra */
77 code lengths are lens[0..codes
[all...]
H A Dinflate.h72 Read deflate codes in fixed or dynamic block:
109 code const FAR *lencode; /* starting table for length/literal codes */
110 code const FAR *distcode; /* starting table for distance codes */
118 code FAR *next; /* next available space in codes[] */
121 code codes[ENOUGH]; /* space for code tables */ member in struct:inflate_state
H A Dinflate.c137 state->lencode = state->distcode = state->next = state->codes;
348 puts(" /* inffixed.h -- table for decoding fixed codes");
576 if there is no input available. The decoding of variable length codes uses
868 Tracev((stderr, "inflate: fixed codes block%s\n",
870 state->mode = LEN_; /* decode codes */
877 Tracev((stderr, "inflate: dynamic codes block%s\n",
946 state->next = state->codes;
1020 state->next = state->codes;
1039 Tracev((stderr, "inflate: codes ok\n"));
1494 if (state->lencode >= state->codes
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/world/
H A Dworld3 """world -- Print mappings between country names and DNS country codes.
37 Country codes are maintained by the RIPE Network Coordination Centre,
60 codes and numbers, which are also provided in the standard format
240 codes = nameorgs.keys()
241 codes.sort()
242 for code in codes:
246 codes = countries.keys()
247 codes.sort()
248 for code in codes:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Ddifflib.py611 codes = self.get_opcodes()
612 if not codes:
613 codes = [("equal", 0, 1, 0, 1)]
615 if codes[0][0] == 'equal':
616 tag, i1, i2, j1, j2 = codes[0]
617 codes[0] = tag, max(i1, i2-n), i2, max(j1, j2-n), j2
618 if codes[-1][0] == 'equal':
619 tag, i1, i2, j1, j2 = codes[-1]
620 codes[-1] = tag, i1, min(i2, i1+n), j1, min(j2, j1+n)
624 for tag, i1, i2, j1, j2 in codes
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
H A Dgencodec.py43 def parsecodes(codes, len=len, range=range):
48 meta-codes (in angular brackets, e.g. <LR> and <RL>) are
51 Empty codes or illegal ones are returned as None.
54 if not codes:
56 l = codes.split('+')
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A D_struct.c1223 formatcode *codes; local
1287 codes = PyMem_MALLOC((len + 1) * sizeof(formatcode));
1288 if (codes == NULL) {
1295 self->s_codes = codes;
1316 codes->offset = size;
1317 codes->size = num;
1318 codes->fmtdef = e;
1319 codes++;
1325 codes->offset = size;
1326 codes
[all...]
H A Dsocketmodule.c501 recognizes the error codes used by both GetLastError() and
5487 DWORD codes[] = {SIO_RCVALL, SIO_KEEPALIVE_VALS}; local
5490 for(i = 0; i<sizeof(codes)/sizeof(*codes); ++i) {
5492 tmp = PyLong_FromUnsignedLong(codes[i]);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_struct.c1223 formatcode *codes; local
1287 codes = PyMem_MALLOC((len + 1) * sizeof(formatcode));
1288 if (codes == NULL) {
1295 self->s_codes = codes;
1316 codes->offset = size;
1317 codes->size = num;
1318 codes->fmtdef = e;
1319 codes++;
1325 codes->offset = size;
1326 codes
[all...]
H A Dsocketmodule.c489 recognizes the error codes used by both GetLastError() and
5385 DWORD codes[] = {SIO_RCVALL, SIO_KEEPALIVE_VALS}; local
5388 for(i = 0; i<sizeof(codes)/sizeof(*codes); ++i) {
5390 tmp = PyLong_FromUnsignedLong(codes[i]);
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/enc/
H A Dunicode.c11179 OnigCodePoint code, codes[3]; local
11328 codes[0] = code;
11332 codes[1] = to->code[0];
11335 codes[1] = code;
11339 if (onig_st_lookup(Unfold2Table, (st_data_t )(UINTN)codes, (void* )&z2) != 0) {
11353 codes[2] = to->code[0];
11356 codes[2] = code;
11360 if (onig_st_lookup(Unfold3Table, (st_data_t )(UINTN)codes,

Completed in 335 milliseconds