| /f-stack/app/nginx-1.16.1/src/stream/ |
| H A D | ngx_stream_split_clients_module.c | 91 part = ctx->parts.elts; in ngx_stream_split_clients_variable() 98 if (hash < part[i].percent || part[i].percent == 0) { in ngx_stream_split_clients_variable() 99 *v = part[i].value; in ngx_stream_split_clients_variable() 179 part = ctx->parts.elts; in ngx_conf_split_clients_block() 182 sum = part[i].percent ? sum + part[i].percent : 10000; in ngx_conf_split_clients_block() 189 if (part[i].percent) { in ngx_conf_split_clients_block() 211 if (part == NULL) { in ngx_stream_split_clients() 216 part->percent = 0; in ngx_stream_split_clients() 232 part->value.valid = 1; in ngx_stream_split_clients() 233 part->value.no_cacheable = 0; in ngx_stream_split_clients() [all …]
|
| /f-stack/app/nginx-1.16.1/src/http/modules/ |
| H A D | ngx_http_split_clients_module.c | 93 part = ctx->parts.elts; in ngx_http_split_clients_variable() 100 if (hash < part[i].percent || part[i].percent == 0) { in ngx_http_split_clients_variable() 101 *v = part[i].value; in ngx_http_split_clients_variable() 181 part = ctx->parts.elts; in ngx_conf_split_clients_block() 184 sum = part[i].percent ? sum + part[i].percent : 10000; in ngx_conf_split_clients_block() 191 if (part[i].percent) { in ngx_conf_split_clients_block() 213 if (part == NULL) { in ngx_http_split_clients() 218 part->percent = 0; in ngx_http_split_clients() 234 part->value.valid = 1; in ngx_http_split_clients() 235 part->value.no_cacheable = 0; in ngx_http_split_clients() [all …]
|
| H A D | ngx_http_chunked_filter_module.c | 236 ngx_list_part_t *part; in ngx_http_chunked_create_trailers() local 241 part = &r->headers_out.trailers.part; in ngx_http_chunked_create_trailers() 242 header = part->elts; in ngx_http_chunked_create_trailers() 246 if (i >= part->nelts) { in ngx_http_chunked_create_trailers() 251 part = part->next; in ngx_http_chunked_create_trailers() 252 header = part->elts; in ngx_http_chunked_create_trailers() 295 part = &r->headers_out.trailers.part; in ngx_http_chunked_create_trailers() 296 header = part->elts; in ngx_http_chunked_create_trailers() 300 if (i >= part->nelts) { in ngx_http_chunked_create_trailers() 305 part = part->next; in ngx_http_chunked_create_trailers() [all …]
|
| H A D | ngx_http_realip_module.c | 138 ngx_list_part_t *part; in ngx_http_realip_handler() local 195 part = &r->headers_in.headers.part; in ngx_http_realip_handler() 196 header = part->elts; in ngx_http_realip_handler() 204 if (i >= part->nelts) { in ngx_http_realip_handler() 205 if (part->next == NULL) { in ngx_http_realip_handler() 209 part = part->next; in ngx_http_realip_handler() 210 header = part->elts; in ngx_http_realip_handler()
|
| /f-stack/freebsd/contrib/device-tree/Bindings/i2c/ |
| H A D | renesas,i2c.txt | 5 "renesas,i2c-r8a7742" if the device is a part of a R8A7742 SoC. 6 "renesas,i2c-r8a7743" if the device is a part of a R8A7743 SoC. 7 "renesas,i2c-r8a7744" if the device is a part of a R8A7744 SoC. 8 "renesas,i2c-r8a7745" if the device is a part of a R8A7745 SoC. 9 "renesas,i2c-r8a77470" if the device is a part of a R8A77470 SoC. 10 "renesas,i2c-r8a774a1" if the device is a part of a R8A774A1 SoC. 11 "renesas,i2c-r8a774b1" if the device is a part of a R8A774B1 SoC. 14 "renesas,i2c-r8a7778" if the device is a part of a R8A7778 SoC. 15 "renesas,i2c-r8a7779" if the device is a part of a R8A7779 SoC. 16 "renesas,i2c-r8a7790" if the device is a part of a R8A7790 SoC. [all …]
|
| /f-stack/app/nginx-1.16.1/src/core/ |
| H A D | ngx_cycle.c | 140 for (part = old_cycle->open_files.part.next; part; part = part->next) { in ngx_init_cycle() 158 for (part = old_cycle->shared_memory.part.next; part; part = part->next) in ngx_init_cycle() 356 part = &cycle->open_files.part; in ngx_init_cycle() 365 part = part->next; in ngx_init_cycle() 415 part = part->next; in ngx_init_cycle() 658 part = part->next; in ngx_init_cycle() 741 part = part->next; in ngx_init_cycle() 830 part = part->next; in ngx_init_cycle() 857 part = part->next; in ngx_init_cycle() 1171 part = part->next; in ngx_reopen_files() [all …]
|
| H A D | ngx_regex.c | 259 ngx_list_part_t *part; in ngx_pcre_free_studies() local 262 part = &studies->part; in ngx_pcre_free_studies() 263 elts = part->elts; in ngx_pcre_free_studies() 267 if (i >= part->nelts) { in ngx_pcre_free_studies() 272 part = part->next; in ngx_pcre_free_studies() 273 elts = part->elts; in ngx_pcre_free_studies() 292 ngx_list_part_t *part; in ngx_regex_module_init() local 326 part = &ngx_pcre_studies->part; in ngx_regex_module_init() 327 elts = part->elts; in ngx_regex_module_init() 336 part = part->next; in ngx_regex_module_init() [all …]
|
| H A D | ngx_list.h | 27 ngx_list_part_t part; member 39 list->part.elts = ngx_palloc(pool, n * size); in ngx_list_init() 40 if (list->part.elts == NULL) { in ngx_list_init() 44 list->part.nelts = 0; in ngx_list_init() 45 list->part.next = NULL; in ngx_list_init() 46 list->last = &list->part; in ngx_list_init()
|
| H A D | ngx_conf_file.c | 902 ngx_list_part_t *part; in ngx_conf_open_file() local 916 part = &cycle->open_files.part; in ngx_conf_open_file() 917 file = part->elts; in ngx_conf_open_file() 925 part = part->next; in ngx_conf_open_file() 926 file = part->elts; in ngx_conf_open_file() 965 ngx_list_part_t *part; in ngx_conf_flush_files() local 970 part = &cycle->open_files.part; in ngx_conf_flush_files() 971 file = part->elts; in ngx_conf_flush_files() 975 if (i >= part->nelts) { in ngx_conf_flush_files() 979 part = part->next; in ngx_conf_flush_files() [all …]
|
| /f-stack/freebsd/contrib/device-tree/Bindings/net/can/ |
| H A D | rcar_can.txt | 5 - compatible: "renesas,can-r8a7743" if CAN controller is a part of R8A7743 SoC. 6 "renesas,can-r8a7744" if CAN controller is a part of R8A7744 SoC. 7 "renesas,can-r8a7745" if CAN controller is a part of R8A7745 SoC. 8 "renesas,can-r8a77470" if CAN controller is a part of R8A77470 SoC. 9 "renesas,can-r8a774a1" if CAN controller is a part of R8A774A1 SoC. 10 "renesas,can-r8a774b1" if CAN controller is a part of R8A774B1 SoC. 12 "renesas,can-r8a7778" if CAN controller is a part of R8A7778 SoC. 13 "renesas,can-r8a7779" if CAN controller is a part of R8A7779 SoC. 14 "renesas,can-r8a7790" if CAN controller is a part of R8A7790 SoC. 15 "renesas,can-r8a7791" if CAN controller is a part of R8A7791 SoC. [all …]
|
| /f-stack/freebsd/contrib/device-tree/Bindings/net/ |
| H A D | renesas,ether.yaml | 20 - renesas,gether-r8a7740 # device is a part of R8A7740 SoC 21 - renesas,gether-r8a77980 # device is a part of R8A77980 SoC 22 - renesas,ether-r7s72100 # device is a part of R7S72100 SoC 23 - renesas,ether-r7s9210 # device is a part of R7S9210 SoC 26 - renesas,ether-r8a7778 # device is a part of R8A7778 SoC 27 - renesas,ether-r8a7779 # device is a part of R8A7779 SoC 32 - renesas,ether-r8a7742 # device is a part of R8A7742 SoC 33 - renesas,ether-r8a7743 # device is a part of R8A7743 SoC 34 - renesas,ether-r8a7745 # device is a part of R8A7745 SoC 35 - renesas,ether-r8a7790 # device is a part of R8A7790 SoC [all …]
|
| /f-stack/freebsd/contrib/openzfs/lib/libzutil/os/linux/ |
| H A D | zutil_device_path_os.c | 87 char *part = NULL, *d = NULL; in zfs_strip_partition() local 91 if ((part = strstr(tmp, "-part")) && part != tmp) { in zfs_strip_partition() 92 d = part + 5; in zfs_strip_partition() 93 } else if ((part = strrchr(tmp, 'p')) && in zfs_strip_partition() 94 part > tmp + 1 && isdigit(*(part-1))) { in zfs_strip_partition() 95 d = part + 1; in zfs_strip_partition() 98 for (d = &tmp[2]; isalpha(*d); part = ++d) { } in zfs_strip_partition() 100 for (d = &tmp[3]; isalpha(*d); part = ++d) { } in zfs_strip_partition() 102 if (part && d && *d != '\0') { in zfs_strip_partition() 105 *part = '\0'; in zfs_strip_partition()
|
| /f-stack/dpdk/lib/librte_rib/ |
| H A D | rte_rib6.h | 109 uint8_t part; in get_msk_part() local 113 part = RTE_MAX((int16_t)depth - (byte * 8), 0); in get_msk_part() 114 part = (part > 8) ? 8 : part; in get_msk_part() 115 return (uint16_t)(~UINT8_MAX) >> part; in get_msk_part()
|
| /f-stack/freebsd/contrib/libsodium/test/default/ |
| H A D | chacha20.c | 24 unsigned char *part; in tv() local 41 part = (unsigned char *) sodium_malloc(plen); in tv() 42 crypto_stream_chacha20_xor(part, out, plen, nonce, key); in tv() 43 if (memcmp(part, zero, plen) != 0) { in tv() 46 sodium_free(part); in tv() 111 unsigned char *part; in tv_ietf() local 129 part = (unsigned char *) sodium_malloc(plen); in tv_ietf() 130 crypto_stream_chacha20_ietf_xor_ic(part, out, plen, nonce, tests[i].ic, key); in tv_ietf() 131 if (memcmp(part, zero, plen) != 0) { in tv_ietf() 134 sodium_free(part); in tv_ietf()
|
| /f-stack/dpdk/drivers/net/mlx5/ |
| H A D | mlx5_rxtx.c | 1972 part = RTE_MIN(part, n_elts); in mlx5_tx_free_elts() 2165 head += part; in mlx5_tx_request_completion() 2523 part = RTE_MIN(part, inlen); in mlx5_tx_eseg_data() 2620 len -= part; in mlx5_tx_mseg_memcpy() 2729 part = RTE_MIN(part, inlen - tlen); in mlx5_tx_eseg_mdat() 2903 part = RTE_MIN(part, len); in mlx5_tx_dseg_empw() 2906 len -= part; in mlx5_tx_dseg_empw() 2915 buf += part; in mlx5_tx_dseg_empw() 2916 part = len; in mlx5_tx_dseg_empw() 2984 part = RTE_MIN(part, len); in mlx5_tx_dseg_vlan() [all …]
|
| /f-stack/app/nginx-1.16.1/src/http/ |
| H A D | ngx_http_header_filter_module.c | 165 ngx_list_part_t *part; in ngx_http_header_filter() local 411 part = &r->headers_out.headers.part; in ngx_http_header_filter() 412 header = part->elts; in ngx_http_header_filter() 416 if (i >= part->nelts) { in ngx_http_header_filter() 421 part = part->next; in ngx_http_header_filter() 422 header = part->elts; in ngx_http_header_filter() 579 part = &r->headers_out.headers.part; in ngx_http_header_filter() 580 header = part->elts; in ngx_http_header_filter() 584 if (i >= part->nelts) { in ngx_http_header_filter() 589 part = part->next; in ngx_http_header_filter() [all …]
|
| /f-stack/freebsd/contrib/device-tree/Bindings/phy/ |
| H A D | rcar-gen2-phy.txt | 7 - compatible: "renesas,usb-phy-r8a7742" if the device is a part of R8A7742 SoC. 8 "renesas,usb-phy-r8a7743" if the device is a part of R8A7743 SoC. 9 "renesas,usb-phy-r8a7744" if the device is a part of R8A7744 SoC. 10 "renesas,usb-phy-r8a7745" if the device is a part of R8A7745 SoC. 11 "renesas,usb-phy-r8a77470" if the device is a part of R8A77470 SoC. 12 "renesas,usb-phy-r8a7790" if the device is a part of R8A7790 SoC. 13 "renesas,usb-phy-r8a7791" if the device is a part of R8A7791 SoC. 14 "renesas,usb-phy-r8a7794" if the device is a part of R8A7794 SoC.
|
| /f-stack/app/nginx-1.16.1/src/os/unix/ |
| H A D | ngx_process.c | 569 ngx_list_part_t *part; in ngx_unlock_mutexes() local 586 part = (ngx_list_part_t *) &ngx_cycle->shared_memory.part; in ngx_unlock_mutexes() 587 shm_zone = part->elts; in ngx_unlock_mutexes() 591 if (i >= part->nelts) { in ngx_unlock_mutexes() 592 if (part->next == NULL) { in ngx_unlock_mutexes() 595 part = part->next; in ngx_unlock_mutexes() 596 shm_zone = part->elts; in ngx_unlock_mutexes()
|
| /f-stack/app/nginx-1.16.1/src/http/v2/ |
| H A D | ngx_http_v2_filter_module.c | 392 part = &r->headers_out.headers.part; in ngx_http_v2_header_filter() 393 header = part->elts; in ngx_http_v2_header_filter() 402 part = part->next; in ngx_http_v2_header_filter() 608 part = &r->headers_out.headers.part; in ngx_http_v2_header_filter() 609 header = part->elts; in ngx_http_v2_header_filter() 618 part = part->next; in ngx_http_v2_header_filter() 1316 part = &r->headers_out.trailers.part; in ngx_http_v2_create_trailers_frame() 1317 header = part->elts; in ngx_http_v2_create_trailers_frame() 1326 part = part->next; in ngx_http_v2_create_trailers_frame() 1374 part = &r->headers_out.trailers.part; in ngx_http_v2_create_trailers_frame() [all …]
|
| /f-stack/freebsd/arm64/include/ |
| H A D | cpu.h | 126 #define CPU_ID_RAW(impl, part, var, rev) \ argument 128 CPU_PART_TO_MIDR((part)) | CPU_VAR_TO_MIDR((var)) | \ 131 #define CPU_MATCH(mask, impl, part, var, rev) \ argument 133 ((mask) & CPU_ID_RAW((impl), (part), (var), (rev))))
|
| /f-stack/freebsd/contrib/device-tree/src/arm64/rockchip/ |
| H A D | rk3399pro.dtsi | 10 /* Default to enabled since AP talk to NPU part over pcie */ 15 /* Default to enabled since AP talk to NPU part over pcie */
|
| /f-stack/freebsd/contrib/device-tree/Bindings/power/supply/ |
| H A D | sbs_sbs-charger.txt | 5 - compatible: "<vendor>,<part-number>", "sbs,sbs-charger" as fallback. The part
|
| /f-stack/freebsd/contrib/ngatm/ |
| H A D | FREEBSD-upgrade | 3 This is the part of the NgATM stuff that is shared by kernel and user. 15 -m "Virgin import of NgATM shared kernel/user part X.Y" \
|
| /f-stack/dpdk/doc/guides/prog_guide/ |
| H A D | generic_segmentation_offload_lib.rst | 67 first part contains a copy of the original packet's headers, while the second 68 part contains a pointer to an offset within the original packet. This mechanism 77 two-part mbuf (technically, this is termed a 'two-segment' mbuf; however, since 79 term 'part' is used here instead). 81 The first part of each output segment is a direct mbuf and contains a copy of 85 The second part of each output segment, represents a section of data from the 88 considerably), the second part of each output segment is an indirect mbuf, 101 Two-part GSO output segment 129 :numref:`figure_gso-three-seg-mbuf` illustrates an example of a three-part 141 Three-part GSO output segment [all …]
|
| /f-stack/freebsd/contrib/device-tree/Bindings/memory-controllers/ti/ |
| H A D | emif.txt | 24 - device-handle : phandle to a "lpddr2" node representing the memory part 40 instance has a memory part attached to it. If there is a memory 41 part attached to CS1, it should be the same type as the one on CS0, 42 so there is no need to give the details of this memory part.
|