| /freebsd-12.1/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-12.1/contrib/libarchive/libarchive/ |
| H A D | archive_write_add_filter.c | 42 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 D | archive_write_set_format.c | 42 struct { int code; int (*setter)(struct archive *); } codes[] = variable 71 for (i = 0; codes[i].code != 0; i++) { in archive_write_set_format() 72 if (code == codes[i].code) in archive_write_set_format() 73 return ((codes[i].setter)(a)); in archive_write_set_format()
|
| /freebsd-12.1/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 black-listed codes, either by mistake or by peculiar design 89 of black-listed codes would provide an increased recall (i.e. more true
|
| /freebsd-12.1/crypto/openssl/doc/man3/ |
| H A D | DH_generate_parameters.pod | 17 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 D | ERR_GET_LIB.pod | 6 - 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 D | ERR_put_error.pod | 35 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 upper case characters, 44 function codes into function names by looking in the header files
|
| /freebsd-12.1/contrib/ncurses/misc/ |
| H A D | makedef.cmd | 58 * `codes' is the stem that links a code to every symbol 64 codes. = 0 134 codes.last = new_code 141 codes.last = 0 149 * Finally we scan the stem, writing out all symbols with export codes. 155 if codes.inx = 0 then 160 codes.inx = new_code 163 say ' "'names.inx'" @'codes.inx' NONAME'
|
| H A D | chkdef.cmd | 53 * `codes' associates a name to a code 57 codes. = 0 86 when codes.new_name \= 0 then 88 if codes.new_name \= new_code then 102 codes.new_name = new_code
|
| /freebsd-12.1/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-12.1/contrib/gcc/ |
| H A D | read-rtl.c | 151 static struct macro_group modes, codes; variable 675 codes.attrs = htab_create (13, def_hash, def_name_eq_p, 0); in initialize_macros() 676 codes.macros = htab_create (13, def_hash, def_name_eq_p, 0); in initialize_macros() 677 codes.num_builtins = NUM_RTX_CODE; in initialize_macros() 678 codes.find_builtin = find_code; in initialize_macros() 679 codes.uses_macro_p = uses_code_macro_p; in initialize_macros() 680 codes.apply_macro = apply_code_macro; in initialize_macros() 696 lower = add_mapping (&codes, codes.attrs, "code", 0); in initialize_macros() 697 upper = add_mapping (&codes, codes.attrs, "CODE", 0); in initialize_macros() 1515 read_mapping (&codes, codes.attrs, infile); in read_rtx_1() [all …]
|
| H A D | genrecog.c | 278 memset (codes, Y, NUM_RTX_CODE); in compute_predicate_codes() 282 memset (codes, N, NUM_RTX_CODE); in compute_predicate_codes() 303 codes[i] = Y; in compute_predicate_codes() 340 codes[i] = p->codes[i] ? I : N; in compute_predicate_codes() 347 memset (codes, I, NUM_RTX_CODE); in compute_predicate_codes() 355 memset (codes, I, NUM_RTX_CODE); in compute_predicate_codes() 370 char codes[NUM_RTX_CODE]; in process_define_predicate() local 381 if (codes[i] != N) in process_define_predicate() 383 pred->codes[i] = true; in process_define_predicate() 1268 if (d1->u.pred.data->codes[c] && d2->u.pred.data->codes[c]) in maybe_both_true_2() [all …]
|
| H A D | genpreds.c | 462 write_match_code (const char *path, const char *codes) in write_match_code() argument 466 while ((code = scan_comma_elt (&codes)) != 0) in write_match_code() 471 while (code < codes) in write_match_code() 477 if (*codes == ',') in write_match_code() 546 const char *codes = XSTR (exp, 0); in write_match_code_switch() local 554 while ((code = scan_comma_elt (&codes)) != 0) in write_match_code_switch() 557 while (code < codes) in write_match_code_switch()
|
| /freebsd-12.1/sys/contrib/zlib/ |
| H A D | inftrees.c | 32 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-12.1/sys/cddl/contrib/opensolaris/uts/common/zmod/ |
| H A D | inftrees.c | 34 int inflate_table(type, lens, codes, table, bits, work) in inflate_table() argument 37 unsigned codes; 111 for (sym = 0; sym < codes; sym++) 148 for (sym = 0; sym < codes; sym++)
|
| H A D | inflate.c | 130 state->lencode = state->distcode = state->next = state->codes; 882 state->next = state->codes; 949 state->next = state->codes; 1382 if (state->lencode >= state->codes && 1383 state->lencode <= state->codes + ENOUGH - 1) { 1384 copy->lencode = copy->codes + (state->lencode - state->codes); 1385 copy->distcode = copy->codes + (state->distcode - state->codes); 1387 copy->next = copy->codes + (state->next - state->codes);
|
| /freebsd-12.1/sys/netinet/libalias/ |
| H A D | alias_pptp.c | 306 PptpCode codes; in AliasHandlePptpOut() local 355 codes = (PptpCode) (cptr + 1); in AliasHandlePptpOut() 356 if (codes->resCode == 1) /* Connection in AliasHandlePptpOut() 425 PptpCode codes = (PptpCode) (cptr + 1); in AliasHandlePptpIn() local 427 if (codes->resCode == 1) /* Connection in AliasHandlePptpIn()
|
| /freebsd-12.1/crypto/openssl/engines/ |
| H A D | e_ossltest.txt | 8 # Function codes 12 #Reason codes
|
| H A D | e_dasync.txt | 8 # Function codes 21 #Reason codes
|
| H A D | e_afalg.txt | 8 # Function codes 17 #Reason codes
|
| /freebsd-12.1/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-12.1/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-12.1/contrib/less/ |
| H A D | mkutable | 50 my $codes = $fields[0]; 51 if ($codes =~ /(\w+)\.\.(\w+)/) {
|