| /freebsd-14.2/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
|
| H A D | bioinformatics | 136 # 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-14.2/contrib/libarchive/libarchive/ |
| H A D | archive_write_add_filter.c | 41 struct { int code; int (*setter)(struct archive *); } codes[] = variable 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()
|
| H A D | archive_write_set_format.c | 42 struct { int code; int (*setter)(struct archive *); } codes[] = variable 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()
|
| /freebsd-14.2/crypto/openssl/crypto/err/ |
| H A D | README.md | 14 add all error codes used in the library to `xxx.h`. 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-14.2/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-14.2/sys/contrib/zlib/doc/ |
| H A D | rfc1951.txt | 299 * 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 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-14.2/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'
|
| H A D | chkdef.cmd | 54 * `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-14.2/crypto/heimdal/lib/wind/ |
| H A D | gen-punycode-examples.py | 71 codes = [] variable 75 codes.extend(string.split(m.group(1), ' ')) 79 cases.append([codes, m.group(1), desc])
|
| /freebsd-14.2/contrib/less/ |
| H A D | mkutable | 67 my $codes = $fields[0]; 68 if ($codes =~ /(\w+)\.\.(\w+)/) { 72 $lo_code = $hi_code = hex $codes;
|
| /freebsd-14.2/sys/netinet/libalias/ |
| H A D | alias_pptp.c | 296 PptpCode codes; in AliasHandlePptpOut() local 344 codes = (PptpCode)(cptr + 1); in AliasHandlePptpOut() 345 if (codes->resCode == 1) in AliasHandlePptpOut() 415 PptpCode codes = (PptpCode)(cptr + 1); in AliasHandlePptpIn() local 417 if (codes->resCode == 1) in AliasHandlePptpIn()
|
| /freebsd-14.2/contrib/com_err/ |
| H A D | compile_et.c | 66 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-14.2/crypto/heimdal/lib/com_err/ |
| H A D | compile_et.c | 66 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-14.2/sys/contrib/zlib/ |
| H A D | inftrees.c | 33 unsigned codes, code FAR * FAR *table, in inflate_table() argument 104 for (sym = 0; sym < codes; sym++) in inflate_table() 141 for (sym = 0; sym < codes; sym++) in inflate_table()
|
| H A D | inflate.c | 123 state->lencode = state->distcode = state->next = state->codes; in inflateResetKeep() 925 state->next = state->codes; in inflate() 1000 state->next = state->codes; in inflate() 1468 if (state->lencode >= state->codes && in inflateCopy() 1469 state->lencode <= state->codes + ENOUGH - 1) { in inflateCopy() 1470 copy->lencode = copy->codes + (state->lencode - state->codes); in inflateCopy() 1471 copy->distcode = copy->codes + (state->distcode - state->codes); in inflateCopy() 1473 copy->next = copy->codes + (state->next - state->codes); in inflateCopy() 1525 return (unsigned long)(state->next - state->codes); in inflateCodesUsed()
|
| H A D | inftrees.h | 61 unsigned codes, code FAR * FAR *table,
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/input/ |
| H A D | qcom,pm8941-pwrkey.yaml | 42 Use the linux event codes defined in 43 include/dt-bindings/input/linux-event-codes.h
|
| H A D | qcom,pm8941-pwrkey.txt | 42 Use the linux event codes defined in 43 include/dt-bindings/input/linux-event-codes.h
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/misc/ |
| H A D | xlnx,sd-fec.txt | 6 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-14.2/sys/contrib/openzfs/contrib/pyzfs/ |
| H A D | README | 12 error codes. The wrapper takes care to provide one-to-many mapping 13 of the error codes to the exceptions by interpreting a context
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | AnsiTerminal.h | 140 auto codes = llvm::ArrayRef(g_color_tokens); 157 for (const auto &code : codes) {
|