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

/haiku-fatelf/src/libs/ncurses/misc/
H A Dmakedef.cmd30 * `codes' is the stem that links a code to every symbol
36 codes. = 0
106 codes.last = new_code
113 codes.last = 0
121 * Finally we scan the stem, writing out all symbols with export codes.
127 if codes.inx = 0 then
132 codes.inx = new_code
135 say ' "'names.inx'" @'codes.inx' NONAME'
H A Dchkdef.cmd25 * `codes' associates a name to a code
29 codes. = 0
58 when codes.new_name \= 0 then
60 if codes.new_name \= new_code then
74 codes.new_name = new_code
H A Dterminfo.src767 linux-vt|linux console using VT codes for graphics,
1124 # from SGI's terminfo database. SGI's entry shows F9-F12 with the codes
1134 # F1-F12 generate different codes when shift or control modifiers are used.
1140 # In application keypad mode, F9-F12 generate codes like vt100 PF1-PF4, i.e.,
1143 # The cursor keys also have different codes:
1487 # modified codes for setf/setb to setaf/setab, then to klone+color, corrected
1831 # certainly includes what DEC called the `Level 1 editing extension' codes;
1886 # defined the <smkx> string to include the codes that switch the keypad into
1888 # fields to match the Application Mode control codes. If the <smkx> string
1891 # Mode, it is expected that the <rmkx> string will contain the control codes
[all...]
H A Dterminfo.tmp767 linux-vt|linux console using VT codes for graphics,
1124 # from SGI's terminfo database. SGI's entry shows F9-F12 with the codes
1134 # F1-F12 generate different codes when shift or control modifiers are used.
1140 # In application keypad mode, F9-F12 generate codes like vt100 PF1-PF4, i.e.,
1143 # The cursor keys also have different codes:
1487 # modified codes for setf/setb to setaf/setab, then to klone+color, corrected
1831 # certainly includes what DEC called the `Level 1 editing extension' codes;
1886 # defined the <smkx> string to include the codes that switch the keypad into
1888 # fields to match the Application Mode control codes. If the <smkx> string
1891 # Mode, it is expected that the <rmkx> string will contain the control codes
[all...]
/haiku-fatelf/src/libs/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 Dinfutil.h1 /* infutil.h -- types and macros common to blocks and codes
39 uIntf *blens; /* bit lengths of codes */
45 *codes; member in struct:inflate_blocks_state::__anon5230::__anon5232
H A Dinflate.c123 state->lencode = state->distcode = state->next = state->codes;
310 puts(" /* inffixed.h -- table for decoding fixed codes");
543 if there is no input available. The decoding of variable length codes uses
829 Tracev((stderr, "inflate: fixed codes block%s\n",
831 state->mode = LEN_; /* decode codes */
838 Tracev((stderr, "inflate: dynamic codes block%s\n",
907 state->next = state->codes;
982 state->next = state->codes;
1001 Tracev((stderr, "inflate: codes ok\n"));
1438 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;
451 state->next = state->codes;
470 Tracev((stderr, "inflate: codes ok\n"));
/haiku-fatelf/src/libs/pdflib/libs/pdcore/
H A Dpc_encoding.h51 pdc_ushort codes[256]; /* unicode values */ member in struct:pdc_encodingvector_s
H A Dpc_encoding.c33 pdc_ushort codes[256]; /* unicode values */ member in struct:pdc_core_encvector_s
1080 ev->codes[i] = PDC_EURO_SIGN;
1082 ev->codes[i] = ev_ic->codes[i];
1083 ev->chars[i] = (char *)pdc_unicode2adobe(ev->codes[i]);
1091 ev->codes[i] = 0;
1117 ev->codes[slot] = 0;
1188 if (ev->codes[slot])
1190 sss[nslots].code = ev->codes[slot];
1227 if (uv == ev->codes[slo
[all...]
H A Dpc_unicode.c903 uv = inev->codes[uv];
/haiku-fatelf/src/libs/pdflib/libs/flate/
H A Dinfblock.c34 codes exist, they are coded using one bit each (0 and 1).
35 5. There is no way of sending zero distance codes--a dummy must be
37 store blocks with no distance codes, but this was discovered to be
39 zero distance codes, which is sent as one code of zero bits in
41 6. There are up to 286 literal/length codes. Code 256 represents the
43 288 codes just to fill out the Huffman codes. Codes 286 and 287
45 defined for them. Similarily, there are up to 30 distance codes.
46 However, static trees define 32 codes (all 5 bits) to fill out the
47 Huffman codes, bu
[all...]
H A Dinfutil.h1 /* infutil.h -- types and macros common to blocks and codes
42 uIntf *blens; /* bit lengths of codes */
48 *codes; member in struct:inflate_blocks_state::__anon4904::__anon4906
H A Dinfcodes.c31 /* inflate codes private state */
76 Tracev((stderr, "inflate: codes new\n"));
97 inflate_codes_statef *c = s->sub.decode.codes; /* codes state */
251 Tracev((stderr, "inflate: codes free\n"));
/haiku-fatelf/src/libs/pdflib/libs/pdflib/
H A Dp_encoding.c118 ev->codes[slot] = (pdc_ushort) uv;
286 code = (int) p->encodings[enc].ev->codes[slot];
372 ev->codes[slot] = uv;
397 ev->codes[slot] = uv;
454 ev->codes[slot] = uv;
632 uv = ev->codes[slot];
651 (char *) pdf_unicode2glyphname(p, ev->codes[slot]);
H A Dp_afm.c432 uv = ev->codes[i];
456 ev->codes[i] = PDF_DEFAULT_GLYPH;
463 ev->codes[glw->code] = glw->unicode;
H A Dp_truetype.c278 /* default for codes outside the range specified in this table */
465 uv = ev->codes[code];
/haiku-fatelf/src/add-ons/kernel/debugger/qrencode/
H A Dqrencode.c502 /* inteleaved data and ecc codes */
583 /* inteleaved data and ecc codes */
834 QRcode_List *codes; local
839 codes = QRcode_encodeInputStructured(s);
842 return codes;
851 QRcode_List *codes; local
875 codes = QRcode_encodeInputToStructured(input);
878 return codes;
/haiku-fatelf/src/add-ons/print/drivers/pdf/source/
H A DPDFText.cpp116 uint16* codes = encodings[i].unicodes; local
119 if (unicode < codes[m]) {
121 } else if (unicode > codes[m]) {
/haiku-fatelf/src/bin/gdb/opcodes/
H A Dz8k-dis.c107 static char *codes[16] = variable
583 sprintf (tmp_str, "%s", codes[instr_data->cond_code]);
/haiku-fatelf/src/libs/ncurses/ncurses/
H A DMakefile145 codes.c \
224 names.c codes.c: $(tinfo)/MKnames.awk
227 cat namehdr boolcodes numcodes strcodes codeftr >codes.c
397 ./codes.c \
579 ../objects/codes$o \
974 ../objects/codes$o : ./codes.c
975 $(LIBTOOL_COMPILE) $(CC) $(CFLAGS_NORMAL) -c ../ncurses/codes.c -o ../objects/codes$o
1307 ../obj_g/codes
[all...]
/haiku-fatelf/src/libs/ncurses/test/
H A Dncurses.c2585 /* ISO 6429: codes 0x80 to 0x9f may be control characters that cause the
2586 * terminal to perform functions. The remaining codes can be graphic.
2760 wchar_t codes[10]; local
2765 memset(&codes, 0, sizeof(codes));
2766 codes[0] = code;
2769 setcchar(&temp, codes, attrs, 0, 0);
/haiku-fatelf/src/apps/bootmanager/
H A Dbootman.S134 ; Key codes

Completed in 196 milliseconds