/freebsd/sys/contrib/zlib/ |
H A D | inftrees.c | 22 The code lengths are lens[0..codes-1]. The result starts at *table, 25 to be generated, CODES, LENS, or DISTS. On return, zero is success, 33 unsigned codes, code FAR * FAR *table, in inflate_table() argument 41 int left; /* number of prefix codes available */ in inflate_table() 53 unsigned short count[MAXBITS+1]; /* number of codes of each length */ in inflate_table() 55 static const unsigned short lbase[31] = { /* Length codes 257..285 base */ in inflate_table() 58 static const unsigned short lext[31] = { /* Length codes 257..285 extra */ in inflate_table() 61 static const unsigned short dbase[32] = { /* Distance codes 0..29 base */ in inflate_table() 65 static const unsigned short dext[32] = { /* Distance codes 0..29 extra */ in inflate_table() 72 code lengths are lens[0..codes-1]. Each length corresponds to the in inflate_table() [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 852, and "enough 30 6 15" for distance codes returns 592. The 55 CODES, enumerator 61 unsigned codes, code FAR * FAR *table,
|
/freebsd/sys/contrib/zlib/doc/ |
H A D | rfc1951.txt | 81 3.2.5. Compressed blocks (length and distance codes) ...... 11 82 3.2.6. Compression with fixed Huffman codes (BTYPE=01) .... 12 83 3.2.7. Compression with dynamic Huffman codes (BTYPE=10) .. 13 296 * Data elements other than Huffman codes are packed 299 * Huffman codes are packed starting with the most- 307 elements in the correct MSB-to-LSB order and Huffman codes in 316 alphabet by bit sequences (codes), one code for each symbol, in 361 using the fewest bits of any possible prefix codes for that 364 information on Huffman codes.) 366 Note that in the "deflate" format, the Huffman codes for the [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 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/share/man/man4/ |
H A D | vkbd.4 | 60 Writing AT scan codes to the control device generates an input on 82 call passes AT scan codes to be 87 Although AT scan codes must be passes as 93 static unsigned int codes[] = 108 /* Note sizeof(codes) - not 2! */ 109 len = write(fd, codes, sizeof(codes)); 126 All queued scan codes are thrown away. 152 codes from the different sources and write them into the same virtual keyboard.
|
/freebsd/crypto/openssl/crypto/err/ |
H A D | README.md | 14 add all error codes used in the library to `xxx.h`. 34 /* BEGIN ERROR CODES */ 36 The `BEGIN ERROR CODES` sequence is used by the error code 37 generation script as the point to place new error codes, any text 46 Adding new error codes 49 Instead of manually adding error codes into `crypto/err/openssl.txt`, 51 The target will process relevant sources and generate error codes for 52 any *used* error codes.
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | cryptoerr_legacy.h | 80 * ASN1 function codes. 197 * ASYNC function codes. 208 * BIO function codes. 268 * BN function codes. 321 * BUF function codes. 329 * CMS function codes. 418 * COMP function codes. 428 * CONF function codes. 455 * CRYPTO function codes. 482 * CT function codes. [all …]
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | ERR_GET_LIB.pod | 6 - get information from error codes 33 B<ERR_R_...> reason codes such as B<ERR_R_MALLOC_FAILURE> are globally 34 unique. However, when checking for sub-library specific reason codes, 48 codes. Error codes are subject to change at any time (even in patch releases of 50 flow decisions if it is explicitly documented as such. New failure codes may
|
H A D | DH_generate_parameters.pod | 21 int DH_check(DH *dh, int *codes); 22 int DH_check_params(DH *dh, int *codes); 67 The value of B<*codes> is updated with any problems found. 68 If B<*codes> is zero then no problems were found, otherwise the 96 value of B<*codes> is updated with any problems found. If B<*codes> is zero then 131 If 0 is returned or B<*codes> is set to a nonzero value the supplied 151 The error codes can be obtained by L<ERR_get_error(3)>.
|
H A D | ERR_put_error.pod | 75 of reason codes B<XXX_R_...>. These are both passed in combination to 80 OpenSSL's libraries. OpenSSL reason codes normally consist of textual error 100 This set of error codes is considered global, and may be used in combination 122 Reason codes for each such "library" are determined or generated by the 147 Reason codes should consist of uppercase characters, numbers and underscores 154 that other library's reason codes. This is normally only done when a library
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zdb/ |
H A D | zdb_005_pos.ksh | 22 # zdb -l exit codes are correct 33 log_assert "Verify zdb -l exit codes are correct" 66 log_fail "zdb -l exit codes are incorrect." 70 log_fail "zdb -l exit codes are incorrect." 74 log_fail "zdb -l exit codes are incorrect." 78 log_pass "zdb -l exit codes are correct."
|
/freebsd/contrib/libpcap/ |
H A D | pcap-common.c | 38 * libpcap for non-BSD OSes have added their own DLT_* codes for link 39 * layer encapsulation types seen on those OSes, and those codes have had, 48 * Instead, we define here a set of LINKTYPE_* codes, and map DLT_* codes 49 * to LINKTYPE_* codes when writing a savefile header, and map LINKTYPE_* 50 * codes to DLT_* codes when reading a savefile header. 52 * For those DLT_* codes that have, as far as we know, the same values on 60 * The other LINKTYPE_* codes are given values starting at 100, in the 83 * Any platform that defines additional DLT_* codes should: 89 * those DLT_* codes to the corresponding LINKTYPE_* 94 * DLT_* codes, to remove those collisions (but without [all …]
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | llvm | 4 # 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
|
/freebsd/lib/libcuse/ |
H A D | cuse.3 | 59 for known error codes. 72 for known error codes. 81 for known error codes. 95 for known error codes. 103 for known error codes. 113 for known error codes. 186 for known error codes. 230 for known error codes. 242 for known error codes.
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDebugAbbrev.cpp | 47 // Codes are not consecutive, can't do O(1) lookups. in extract() 77 // Create a sorted list of all abbrev codes. in getCodeRange() 78 std::vector<uint32_t> Codes; in getCodeRange() local 79 Codes.reserve(Decls.size()); in getCodeRange() 81 Codes.push_back(Decl.getCode()); in getCodeRange() 86 // the set of codes. in getCodeRange() 87 for (auto Current = Codes.begin(), End = Codes.end(); Current != End;) { in getCodeRange()
|
/freebsd/contrib/ncurses/misc/ |
H A D | makedef.cmd | 59 * `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'
|
/freebsd/lib/libpmc/pmu-events/arch/x86/elkhartlake/ |
H A D | memory.json | 22 … a specific pair of event select and counter MSR, and with specific event codes and predefine mask… 34 … a specific pair of event select and counter MSR, and with specific event codes and predefine mask… 46 … a specific pair of event select and counter MSR, and with specific event codes and predefine mask… 58 … a specific pair of event select and counter MSR, and with specific event codes and predefine mask… 70 … a specific pair of event select and counter MSR, and with specific event codes and predefine mask… 82 … a specific pair of event select and counter MSR, and with specific event codes and predefine mask…
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_write_add_filter.c | 39 /* A table that maps filter codes to functions. */ 41 struct { int code; int (*setter)(struct archive *); } codes[] = 64 for (i = 0; codes[i].code != -1; i++) { in archive_write_add_filter() 65 if (code == codes[i].code) in archive_write_add_filter() 66 return ((codes[i].setter)(a)); in archive_write_add_filter() 42 struct { int code; int (*setter)(struct archive *); } codes[] = global() variable
|
H A D | archive_write_set_format.c | 40 /* A table that maps format codes to functions. */ 42 struct { int code; int (*setter)(struct archive *); } codes[] = 73 for (i = 0; codes[i].code != 0; i++) { in archive_write_set_format() 74 if (code == codes[i].code) in archive_write_set_format() 75 return ((codes[i].setter)(a)); in archive_write_set_format() 43 struct { int code; int (*setter)(struct archive *); } codes[] = global() variable
|
/freebsd/contrib/com_err/ |
H A D | compile_et.1 | 45 The various error codes defined are assigned sequentially increasing 48 new codes be added only to the end of an existing table, and that no 49 codes be removed from tables. 56 with the object files which reference these error codes; it contains
|
/freebsd/contrib/ncurses/man/ |
H A D | tput.1 | 82 .IR cap-codes . 125 Although these resemble capability codes, 308 .I cap-codes 524 .I cap-codes 537 .I cap-codes 547 codes have two 650 codes rather than 652 capability codes in their respective 660 codes. 666 codes. [all …]
|
H A D | curs_util.3x | 116 Key codes are different from character codes. 118 Key codes below 256 are characters. 121 Values above 256 may be the codes for function keys. 325 the same value for different runs because user-defined codes are 392 showing C1 controls from the upper-128 codes 397 Or they may ignore C1 controls and treat all of the upper-128 codes as 407 for \*(``meta\*('' keys (codes in the range 128 to 255). 410 X/Open Curses does not document the treatment of codes 128 to 159.
|
/freebsd/crypto/openssl/util/ |
H A D | mkerr.pl | 69 -unref List all unreferenced function and reason codes on stderr; 135 my %rassigned; # lib -> colon-separated list of assigned reason codes 136 my %rnew; # lib -> count of new reason codes 139 my $statefile; # state file with assigned reason and function codes 189 # Scan function and reason codes and store them: keep a note of the 228 # We do nothing with the function codes, just let them go away 237 print STDERR "Reason codes for ${lib}:\n"; 248 # Scan each C source file and look for reason codes. This is done by 249 # looking for strings that "look like" reason codes: basically anything 255 # Store all reason codes found in and %usedreasons so all those unreferenced [all …]
|
/freebsd/secure/lib/libcrypto/man/man3/ |
H A D | ERR_GET_LIB.3 | 141 \&\- get information from error codes 168 \&\fB\s-1ERR_R_...\s0\fR reason codes such as \fB\s-1ERR_R_MALLOC_FAILURE\s0\fR are globally 169 unique. However, when checking for sub-library specific reason codes, 181 codes. Error codes are subject to change at any time (even in patch releases of 183 flow decisions if it is explicitly documented as such. New failure codes may
|
H A D | DH_generate_parameters.3 | 158 \& int DH_check(DH *dh, int *codes); 159 \& int DH_check_params(DH *dh, int *codes); 206 The value of \fB*codes\fR is updated with any problems found. 207 If \fB*codes\fR is zero then no problems were found, otherwise the 227 value of \fB*codes\fR is updated with any problems found. If \fB*codes\fR is zero then 266 The error codes can be obtained by \fBERR_get_error\fR\|(3).
|