/titanic_51/usr/src/cmd/audio/utilities/ |
H A D | g723.c | 109 state_ptr->leftover_cnt = 0; /* no left over codes */ in g723_init_state() 462 * is adjusted by one level of A-law or Mu-law codes. 538 /* ADPCM codes : 8, 9, ... F, 0, 1, ... , 6, 7 */ in _tandem_adjust_ulaw() 542 /* u-law codes : 0, 1, ... 7E, 7F, FF, FE, ... 81, 80 */ in _tandem_adjust_ulaw() 630 * In the event that the number packed codes is shorter than a sample unit, 658 unsigned int codes; in g723_encode() local 697 codes = (bits > 0) ? leftover[offset] : 0; in g723_encode() 714 codes += i << bits; in g723_encode() 717 leftover[offset] = codes & 0xff; in g723_encode() 719 codes >> in g723_encode() 765 unsigned int codes; g723_decode() local [all...] |
/titanic_51/usr/src/boot/lib/libz/doc/ |
H A D | rfc1951.txt | 82 3.2.5. Compressed blocks (length and distance codes) ...... 11 83 3.2.6. Compression with fixed Huffman codes (BTYPE=01) .... 12 84 3.2.7. Compression with dynamic Huffman codes (BTYPE=10) .. 13 301 * Data elements other than Huffman codes are packed 304 * Huffman codes are packed starting with the most- 312 elements in the correct MSB-to-LSB order and Huffman codes in 321 alphabet by bit sequences (codes), one code for each symbol, in 367 using the fewest bits of any possible prefix codes for that 370 information on Huffman codes.) 372 Note that in the "deflate" format, the Huffman codes fo [all...] |
H A D | txtvsbin.txt | 59 The first observation is that, although the full range of 7-bit codes 62 widely-used, almost universally-portable control codes are 9 (TAB), 63 10 (LF) and 13 (CR). There are a few more control codes that are 66 codes are rarely (if ever) used alone, without being accompanied by 72 detection schemes observe the presence of non-ASCII codes from the range 75 contain both control characters and codes from the upper range. On the 87 one or more black-listed codes, either by mistake or by peculiar design 89 of black-listed codes would provide an increased recall (i.e. more true
|
H A D | algorithm.txt | 64 codes are much more common than longer codes, so pay attention to decoding the 65 short codes fast, and let the long codes take longer to decode. 79 codes are replicated many times in such a table. What inflate() does is 83 For inflate, which has 286 possible codes for the literal/length tree, the size
|
/titanic_51/usr/src/boot/lib/libz/ |
H A D | inftrees.c | 22 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) in inflate_table() argument 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 D | inflate.c | 122 state->lencode = state->distcode = state->next = state->codes; 331 puts(" /* inffixed.h -- table for decoding fixed codes"); in makefixed() 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 D | inftrees.h | 39 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 D | inflate.h | 72 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
|
/titanic_51/usr/src/contrib/zlib/ |
H A D | inftrees.c | 22 The code lengths are lens[0..codes-1]. The result starts at *table, 33 unsigned codes, code FAR * FAR *table, unsigned FAR *bits, in inflate_table() argument 42 int left; /* number of prefix codes available */ in inflate_table() 54 unsigned short count[MAXBITS+1]; /* number of codes of each length */ in inflate_table() 56 static const unsigned short lbase[31] = { /* Length codes 257..285 base */ in inflate_table() 59 static const unsigned short lext[31] = { /* Length codes 257..285 extra */ in inflate_table() 62 static const unsigned short dbase[32] = { /* Distance codes 0..29 base */ in inflate_table() 66 static const unsigned short dext[32] = { /* Distance codes 0..29 extra */ in inflate_table() 73 code lengths are lens[0..codes-1]. Each length corresponds to the in inflate_table() 74 symbols 0..codes in inflate_table() [all...] |
H A D | inflate.c | 136 state->lencode = state->distcode = state->next = state->codes; in inflateResetKeep() 334 puts(" /* inffixed.h -- table for decoding fixed codes"); in makefixed() 559 if there is no input available. The decoding of variable length codes uses 860 Tracev((stderr, "inflate: fixed codes block%s\n", in inflate() 862 state->mode = LEN_; /* decode codes */ in inflate() 869 Tracev((stderr, "inflate: dynamic codes block%s\n", in inflate() 941 state->next = state->codes; in inflate() 1016 state->next = state->codes; in inflate() 1035 Tracev((stderr, "inflate: codes ok\n")); in inflate() 1492 if (state->lencode >= state->codes in inflateCopy() [all...] |
H A D | inftrees.h | 39 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 D | inflate.h | 72 Read deflate codes in fixed or dynamic block: 110 code const FAR *lencode; /* starting table for length/literal codes */ 111 code const FAR *distcode; /* starting table for distance codes */ 119 code FAR *next; /* next available space in codes[] */ 122 code codes[ENOUGH]; /* space for code tables */ member
|
/titanic_51/usr/src/cmd/ast/msgcc/ |
H A D | msgcvt.c | 62 static const Code_t codes[] = variable 168 for (i = 0; i < elementsof(codes); i++) in decode() 169 if (streq(codes[i].name, name)) in decode() 171 c = codes[i].code; in decode() 174 if (i >= elementsof(codes)) in decode()
|
/titanic_51/usr/src/contrib/ast/src/cmd/msgcc/ |
H A D | msgcvt.c | 62 static const Code_t codes[] = variable 168 for (i = 0; i < elementsof(codes); i++) in decode() 169 if (streq(codes[i].name, name)) in decode() 171 c = codes[i].code; in decode() 174 if (i >= elementsof(codes)) in decode()
|
/titanic_51/usr/src/cmd/fm/eversholt/files/i386/i86pc/ |
H A D | gcpu.esc | 40 * Ereports for Simple error codes. 78 * Ereports for Compound error codes. These are in pairs "foo" and "foo_uc" 90 * Ereports for Compound error codes - generic memory hierarchy errors 98 * Ereports for Compound error codes - TLB errors 116 * Ereports for Compound error codes - memory hierarchy errors 129 * Ereports for Compound error codes - bus and interconnect errors
|
/titanic_51/usr/src/cmd/truss/ |
H A D | Makefile.com | 31 OBJS= main.o listopts.o ipc.o actions.o expound.o codes.o print.o \
|
/titanic_51/usr/src/cmd/csh/ |
H A D | README | 3 This directory contains machine independent source codes of csh.
|
/titanic_51/usr/src/cmd/captoinfo/ |
H A D | captoinfo.c | 159 capsearch(char *codes[], char *ocodes[], char *cap) in capsearch() argument 161 for (; *codes; codes++) in capsearch() 162 if (((*codes)[0] == cap[0]) && ((*codes)[1] == cap[1])) in capsearch()
|
/titanic_51/usr/src/cmd/loadkeys/type_4/ |
H A D | korea_5 | 32 # New function keys assigned old codes
|
H A D | traditional_chinese_5 | 31 # New function keys assigned old codes
|
H A D | korea_hobo | 48 # New function keys assigned old codes
|
H A D | traditional_chinese_hobo | 49 # New function keys assigned old codes
|
/titanic_51/usr/src/cmd/loadkeys/type_6/ |
H A D | korea | 35 # New function keys assigned old codes
|
H A D | traditional_chinese | 32 # New function keys assigned old codes
|
/titanic_51/usr/src/cmd/sendmail/src/ |
H A D | READ_ME | 78 sysexits.c List of error messages associated with error codes 80 sysexits.h List of error codes for systems that lack their own.
|