Home
last modified time | relevance | path

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

12345678910>>...12

/freebsd-13.1/contrib/file/magic/Magdir/
H A Dllvm4 # llvm: file(1) magic for LLVM byte-codes
8 0 string llvm LLVM byte-codes, uncompressed
9 0 string llvc0 LLVM byte-codes, null compression
10 0 string llvc1 LLVM byte-codes, gzip compression
11 0 string llvc2 LLVM byte-codes, bzip2 compression
H A Dbioinformatics136 # Amino Acid codes: [A-IK-Z*-]+
138 # IUPAC codes/gaps: [ACGTURYKMSWBDHVNX-]+
139 # not in IUPAC codes/gaps: [EFIJLOPQZ]
140 #>>>1 regex !=[EFIJLOPQZefijlopqz] \b, with IUPAC nucleotide codes
141 #>>>1 regex =^[EFIJLOPQZefijlopqz]+$ \b, with Amino Acid codes
/freebsd-13.1/contrib/libarchive/libarchive/
H A Darchive_write_add_filter.c42 struct { int code; int (*setter)(struct archive *); } codes[] = variable
65 for (i = 0; codes[i].code != -1; i++) { in archive_write_add_filter()
66 if (code == codes[i].code) in archive_write_add_filter()
67 return ((codes[i].setter)(a)); in archive_write_add_filter()
H A Darchive_write_set_format.c43 struct { int code; int (*setter)(struct archive *); } codes[] = variable
74 for (i = 0; codes[i].code != 0; i++) { in archive_write_set_format()
75 if (code == codes[i].code) in archive_write_set_format()
76 return ((codes[i].setter)(a)); in archive_write_set_format()
/freebsd-13.1/sys/contrib/zlib/doc/
H A Drfc1951.txt299 * Huffman codes are packed starting with the most-
364 information on Huffman codes.)
381 * Shorter codes lexicographically precede longer codes.
419 initially in tree[I].Len; the codes are produced in
517 01 - compressed with fixed Huffman codes
518 10 - compressed with dynamic Huffman codes
536 if compressed with dynamic Huffman codes
589 3.2.5. Compressed blocks (length and distance codes)
655 3.2.6. Compression with fixed Huffman codes (BTYPE=01)
690 3.2.7. Compression with dynamic Huffman codes (BTYPE=10)
[all …]
H A Dtxtvsbin.txt59 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 block-listed codes, either by mistake or by peculiar design
89 of block-listed codes would provide an increased recall (i.e. more true
/freebsd-13.1/crypto/openssl/doc/man3/
H A DDH_generate_parameters.pod17 int DH_check(DH *dh, int *codes);
18 int DH_check_params(DH *dh, int *codes);
58 The value of B<*codes> is updated with any problems found.
59 If B<*codes> is zero then no problems were found, otherwise the
79 value of B<*codes> is updated with any problems found. If B<*codes> is zero then
130 The error codes can be obtained by L<ERR_get_error(3)>.
H A DERR_GET_LIB.pod6 - get information from error codes
32 reason codes are unique within each sub-library. Note that different
36 B<ERR_R_...> reason codes such as B<ERR_R_MALLOC_FAILURE> are globally
37 unique. However, when checking for sub-library specific reason codes,
H A DERR_put_error.pod35 argument is a reason code B<XXX_R_...>. Function codes are derived
36 from the function names; reason codes consist of textual error
42 Function and reason codes should consist of uppercase characters,
44 function codes into function names by looking in the header files
/freebsd-13.1/contrib/ncurses/misc/
H A Dmakedef.cmd59 * `codes' is the stem that links a code to every symbol
65 codes. = 0
135 codes.last = new_code
142 codes.last = 0
150 * Finally we scan the stem, writing out all symbols with export codes.
156 if codes.inx = 0 then
161 codes.inx = new_code
164 say ' "'names.inx'" @'codes.inx' NONAME'
H A Dchkdef.cmd54 * `codes' associates a name to a code
58 codes. = 0
87 when codes.new_name \= 0 then
89 if codes.new_name \= new_code then
103 codes.new_name = new_code
/freebsd-13.1/crypto/heimdal/lib/wind/
H A Dgen-punycode-examples.py71 codes = [] variable
75 codes.extend(string.split(m.group(1), ' '))
79 cases.append([codes, m.group(1), desc])
/freebsd-13.1/contrib/less/
H A Dmkutable66 my $codes = $fields[0];
67 if ($codes =~ /(\w+)\.\.(\w+)/) {
71 $lo_code = $hi_code = hex $codes;
/freebsd-13.1/sys/contrib/zlib/
H A Dinftrees.c32 int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work) in inflate_table() argument
35 unsigned codes;
109 for (sym = 0; sym < codes; sym++)
146 for (sym = 0; sym < codes; sym++)
/freebsd-13.1/crypto/openssl/engines/
H A De_ossltest.txt8 # Function codes
12 #Reason codes
H A De_dasync.txt8 # Function codes
21 #Reason codes
H A De_afalg.txt8 # Function codes
17 #Reason codes
H A De_capi.txt8 # Function codes
30 #Reason codes
/freebsd-13.1/sys/netinet/libalias/
H A Dalias_pptp.c298 PptpCode codes; in AliasHandlePptpOut() local
346 codes = (PptpCode)(cptr + 1); in AliasHandlePptpOut()
347 if (codes->resCode == 1) in AliasHandlePptpOut()
417 PptpCode codes = (PptpCode)(cptr + 1); in AliasHandlePptpIn() local
419 if (codes->resCode == 1) in AliasHandlePptpIn()
/freebsd-13.1/contrib/com_err/
H A Dcompile_et.c66 struct error_code *codes = NULL; variable
91 for(ec = codes, n = 0; ec; ec = ec->next, n++) { in generate_c()
162 for(ec = codes; ec; ec = ec->next) { in generate_h()
/freebsd-13.1/crypto/heimdal/lib/com_err/
H A Dcompile_et.c66 struct error_code *codes = NULL; variable
91 for(ec = codes, n = 0; ec; ec = ec->next, n++) { in generate_c()
162 for(ec = codes; ec; ec = ec->next) { in generate_h()
/freebsd-13.1/sys/contrib/device-tree/Bindings/input/
H A Dqcom,pm8941-pwrkey.txt40 Use the linux event codes defined in
41 include/dt-bindings/input/linux-event-codes.h
/freebsd-13.1/sys/contrib/device-tree/Bindings/misc/
H A Dxlnx,sd-fec.txt6 customer specified Quasi-cyclic (QC) codes. The Turbo decode functionality
7 principally covers codes used by LTE. The FEC Engine offers significant
25 - xlnx,sdfec-code : Should contain "ldpc" or "turbo" to describe the codes
/freebsd-13.1/crypto/openssl/crypto/err/
H A DREADME14 add all error codes used in the library to xxx.h.
37 generation script as the point to place new error codes, any text
/freebsd-13.1/sys/contrib/openzfs/contrib/pyzfs/
H A DREADME12 error codes. The wrapper takes care to provide one-to-many mapping
13 of the error codes to the exceptions by interpreting a context

12345678910>>...12