| /f-stack/app/nginx-1.16.1/src/http/modules/ |
| H A D | ngx_http_rewrite_module.c | 157 if (rlcf->codes == NULL) { in ngx_http_rewrite_handler() 172 e->ip = rlcf->codes->elts; in ngx_http_rewrite_handler() 252 if (conf->codes == NULL) { in ngx_http_rewrite_merge_loc_conf() 256 if (conf->codes == prev->codes) { in ngx_http_rewrite_merge_loc_conf() 388 sc.values = &lcf->codes; in ngx_http_rewrite() 429 regex->next = (u_char *) lcf->codes->elts + lcf->codes->nelts in ngx_http_rewrite() 595 elts = lcf->codes->elts; in ngx_http_rewrite_if() 601 nlcf->codes = lcf->codes; in ngx_http_rewrite_if() 630 if_code->next = (u_char *) lcf->codes->elts + lcf->codes->nelts in ngx_http_rewrite_if() 635 nlcf->codes = NULL; in ngx_http_rewrite_if() [all …]
|
| /f-stack/dpdk/drivers/net/igc/base/ |
| H A D | README | 22 - Since some codes are not required, they have been removed from the 23 base codes, such as the I350 and I210 series NICs related codes. 24 - Some registers are used by the base codes but not defined in the base 25 codes, so they ware added to them.
|
| /f-stack/freebsd/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
|
| H A D | algorithm.txt | 64 codes are much more common than longer codes, so pay attention to decoding the 65 short codes fast, and let the long codes take longer to decode. 79 codes are replicated many times in such a table. What inflate() does is 83 For inflate, which has 286 possible codes for the literal/length tree, the size
|
| /f-stack/freebsd/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++)
|
| H A D | inftrees.h | 61 unsigned codes, code FAR * FAR *table,
|
| H A D | inflate.c | 137 state->lencode = state->distcode = state->next = state->codes; 946 state->next = state->codes; 1020 state->next = state->codes; 1493 if (state->lencode >= state->codes && 1494 state->lencode <= state->codes + ENOUGH - 1) { 1495 copy->lencode = copy->codes + (state->lencode - state->codes); 1496 copy->distcode = copy->codes + (state->distcode - state->codes); 1498 copy->next = copy->codes + (state->next - state->codes); 1560 return (unsigned long)(state->next - state->codes);
|
| H A D | inflate.h | 121 code codes[ENOUGH]; /* space for code tables */ member
|
| /f-stack/freebsd/netinet/libalias/ |
| H A D | alias_pptp.c | 305 PptpCode codes; in AliasHandlePptpOut() local 354 codes = (PptpCode) (cptr + 1); in AliasHandlePptpOut() 355 if (codes->resCode == 1) /* Connection in AliasHandlePptpOut() 424 PptpCode codes = (PptpCode) (cptr + 1); in AliasHandlePptpIn() local 426 if (codes->resCode == 1) /* Connection in AliasHandlePptpIn()
|
| /f-stack/freebsd/contrib/device-tree/Bindings/input/ |
| H A D | qcom,pm8941-pwrkey.txt | 40 Use the linux event codes defined in 41 include/dt-bindings/input/linux-event-codes.h
|
| /f-stack/freebsd/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
|
| /f-stack/freebsd/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
|
| /f-stack/app/nginx-1.16.1/src/http/ |
| H A D | ngx_http_script.h | 229 void *ngx_http_script_start_code(ngx_pool_t *pool, ngx_array_t **codes, 231 void *ngx_http_script_add_code(ngx_array_t *codes, size_t size, void *code);
|
| H A D | ngx_http_script.c | 672 ngx_http_script_start_code(ngx_pool_t *pool, ngx_array_t **codes, size_t size) in ngx_http_script_start_code() argument 674 if (*codes == NULL) { in ngx_http_script_start_code() 675 *codes = ngx_array_create(pool, 256, 1); in ngx_http_script_start_code() 676 if (*codes == NULL) { in ngx_http_script_start_code() 681 return ngx_array_push_n(*codes, size); in ngx_http_script_start_code() 686 ngx_http_script_add_code(ngx_array_t *codes, size_t size, void *code) in ngx_http_script_add_code() argument 691 elts = codes->elts; in ngx_http_script_add_code() 693 new = ngx_array_push_n(codes, size); in ngx_http_script_add_code() 699 if (elts != codes->elts) { in ngx_http_script_add_code() 701 *p += (u_char *) codes->elts - elts; in ngx_http_script_add_code()
|
| /f-stack/freebsd/contrib/device-tree/src/arm64/qcom/ |
| H A D | pm660l.dtsi | 6 #include <dt-bindings/input/linux-event-codes.h>
|
| H A D | pm660.dtsi | 6 #include <dt-bindings/input/linux-event-codes.h>
|
| H A D | pm8994.dtsi | 4 #include <dt-bindings/input/linux-event-codes.h>
|
| /f-stack/freebsd/contrib/device-tree/src/arm64/freescale/ |
| H A D | imx8qxp-colibri-eval-v3.dtsi | 6 #include "dt-bindings/input/linux-event-codes.h"
|
| /f-stack/app/nginx-1.16.1/src/stream/ |
| H A D | ngx_stream_script.c | 549 ngx_stream_script_add_code(ngx_array_t *codes, size_t size, void *code) in ngx_stream_script_add_code() argument 554 elts = codes->elts; in ngx_stream_script_add_code() 556 new = ngx_array_push_n(codes, size); in ngx_stream_script_add_code() 562 if (elts != codes->elts) { in ngx_stream_script_add_code() 564 *p += (u_char *) codes->elts - elts; in ngx_stream_script_add_code()
|
| H A D | ngx_stream_script.h | 118 void *ngx_stream_script_add_code(ngx_array_t *codes, size_t size, void *code);
|
| /f-stack/freebsd/netgraph/bluetooth/hci/ |
| H A D | TODO | 27 Verify return codes from functions
|
| /f-stack/tools/libxo/ |
| H A D | configure.ac | 295 AC_MSG_CHECKING([whether to use int return codes]) 296 AC_ARG_ENABLE([int-return-codes], 297 [ --enable-int-return-codes Use int return codes (instead of ssize_t)], 298 [USE_INT_RETURN_CODES=yes; AC_DEFINE([USE_INT_RETURN_CODES], [1], [Use int return codes])],
|
| /f-stack/freebsd/contrib/zstd/doc/ |
| H A D | zstd_compression_format.md | 685 ##### Literals length codes 714 ##### Match length codes 742 ##### Offset codes 744 Offset codes are values ranging from `0` to `N`. 817 [description of the codes]: #the-codes-for-literals-lengths-match-lengths-and-offsets 917 [Offset Codes]: #offset-codes 1200 with the codes defined by the method below. 1325 #### Conversion from weights to Huffman prefix codes 1351 | prefix codes | N/A | 0000| 0001| 001 | 01 | 1 | 1465 Appendix A - Decoding tables for predefined codes [all …]
|
| /f-stack/freebsd/contrib/device-tree/Bindings/mfd/ |
| H A D | mps,mp2629.yaml | 48 #include <dt-bindings/input/linux-event-codes.h>
|