Home
last modified time | relevance | path

Searched refs:limits (Results 1 – 25 of 93) sorted by relevance

1234

/f-stack/app/nginx-1.16.1/src/stream/
H A Dngx_stream_limit_conn_module.c40 ngx_array_t limits; member
137 ngx_stream_limit_conn_limit_t *limits; in ngx_stream_limit_conn_handler() local
141 limits = lccf->limits.elts; in ngx_stream_limit_conn_handler()
143 for (i = 0; i < lccf->limits.nelts; i++) { in ngx_stream_limit_conn_handler()
144 ctx = limits[i].shm_zone->data; in ngx_stream_limit_conn_handler()
226 lccln->shm_zone = limits[i].shm_zone; in ngx_stream_limit_conn_handler()
458 if (conf->limits.elts == NULL) { in ngx_stream_limit_conn_merge_conf()
459 conf->limits = prev->limits; in ngx_stream_limit_conn_merge_conf()
588 limits = lccf->limits.elts; in ngx_stream_limit_conn()
590 if (limits == NULL) { in ngx_stream_limit_conn()
[all …]
/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_limit_conn_module.c40 ngx_array_t limits; member
153 ngx_http_limit_conn_limit_t *limits; in ngx_http_limit_conn_handler() local
161 limits = lccf->limits.elts; in ngx_http_limit_conn_handler()
163 for (i = 0; i < lccf->limits.nelts; i++) { in ngx_http_limit_conn_handler()
164 ctx = limits[i].shm_zone->data; in ngx_http_limit_conn_handler()
248 lccln->shm_zone = limits[i].shm_zone; in ngx_http_limit_conn_handler()
480 if (conf->limits.elts == NULL) { in ngx_http_limit_conn_merge_conf()
481 conf->limits = prev->limits; in ngx_http_limit_conn_merge_conf()
612 limits = lccf->limits.elts; in ngx_http_limit_conn()
614 if (limits == NULL) { in ngx_http_limit_conn()
[all …]
H A Dngx_http_limit_req_module.c52 ngx_array_t limits; member
173 limits = lrcf->limits.elts; in ngx_http_limit_req_handler()
185 limit = &limits[n]; in ngx_http_limit_req_handler()
239 ctx = limits[n].shm_zone->data; in ngx_http_limit_req_handler()
511 ctx = limits[n].shm_zone->data; in ngx_http_limit_req_account()
556 *limit = &limits[n]; in ngx_http_limit_req_account()
725 if (conf->limits.elts == NULL) { in ngx_http_limit_req_merge_conf()
726 conf->limits = prev->limits; in ngx_http_limit_req_merge_conf()
947 limits = lrcf->limits.elts; in ngx_http_limit_req()
949 if (limits == NULL) { in ngx_http_limit_req()
[all …]
/f-stack/dpdk/drivers/net/sfc/
H A Dsfc.c177 efx_drv_limits_t limits; in sfc_estimate_resource_limits() local
183 memset(&limits, 0, sizeof(limits)); in sfc_estimate_resource_limits()
189 limits.edl_min_evq_count = in sfc_estimate_resource_limits()
190 1 + limits.edl_min_rxq_count + limits.edl_min_txq_count; in sfc_estimate_resource_limits()
197 SFC_ASSERT(limits.edl_max_evq_count >= limits.edl_min_rxq_count); in sfc_estimate_resource_limits()
200 limits.edl_max_rxq_count = in sfc_estimate_resource_limits()
202 SFC_ASSERT(limits.edl_max_rxq_count >= limits.edl_min_rxq_count); in sfc_estimate_resource_limits()
204 limits.edl_max_txq_count = in sfc_estimate_resource_limits()
206 limits.edl_max_evq_count - 1 - limits.edl_max_rxq_count); in sfc_estimate_resource_limits()
209 limits.edl_max_txq_count = in sfc_estimate_resource_limits()
[all …]
H A Dsfc_ef10_essb_rx.c510 struct sfc_dp_rx_hw_limits *limits, in sfc_ef10_essb_rx_qsize_up_rings() argument
537 if (nb_hw_rx_desc <= limits->rxq_min_entries) { in sfc_ef10_essb_rx_qsize_up_rings()
538 *rxq_entries = limits->rxq_min_entries; in sfc_ef10_essb_rx_qsize_up_rings()
541 if (*rxq_entries > limits->rxq_max_entries) in sfc_ef10_essb_rx_qsize_up_rings()
551 *evq_entries = RTE_MAX(*evq_entries, limits->evq_min_entries); in sfc_ef10_essb_rx_qsize_up_rings()
552 *evq_entries = RTE_MIN(*evq_entries, limits->evq_max_entries); in sfc_ef10_essb_rx_qsize_up_rings()
H A Dsfc_dp_rx.h129 struct sfc_dp_rx_hw_limits *limits,
/f-stack/dpdk/drivers/common/sfc_efx/base/
H A Dmcdi_mon.c344 efx_mon_stat_limits_t *limits)
355 EFSYS_ASSERT(limits != NULL);
357 memset(limits, 0,
393 limits->emlv_warning_min = EFX_QWORD_FIELD(*limit_info,
396 limits->emlv_warning_max = EFX_QWORD_FIELD(*limit_info,
399 limits->emlv_fatal_min = EFX_QWORD_FIELD(*limit_info,
402 limits->emlv_fatal_max = EFX_QWORD_FIELD(*limit_info,
405 limits++;
486 efx_mon_stat_limits_t limits[sizeof (page_mask) * 8]; in mcdi_mon_limits_update() local
494 rc = efx_mcdi_sensor_info_page(enp, page, &page_mask, limits); in mcdi_mon_limits_update()
[all …]
/f-stack/freebsd/amd64/vmm/
H A Dx86.c93 const struct xsave_limits *limits; in x86_emulate_cpuid() local
527 limits = vmm_get_xsave_limits(); in x86_emulate_cpuid()
528 if (!limits->xsave_enabled) { in x86_emulate_cpuid()
550 regs[0] &= limits->xcr0_allowed; in x86_emulate_cpuid()
551 regs[2] = limits->xsave_max_size; in x86_emulate_cpuid()
552 regs[3] &= (limits->xcr0_allowed >> 32); in x86_emulate_cpuid()
567 if (!(limits->xcr0_allowed & (1ul << param))) { in x86_emulate_cpuid()
/f-stack/freebsd/contrib/openzfs/module/zstd/include/
H A Dlimits.h56 #include_next <limits.h>
/f-stack/freebsd/contrib/openzfs/lib/libspl/include/
H A Dlimits.h27 #include_next <limits.h>
H A DMakefile.am10 limits.h \
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/limits/
H A DMakefile.am1 pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/limits
/f-stack/freebsd/contrib/device-tree/src/arm/
H A Dam335x-osd335x-common.dtsi77 /* VDD_MPU voltage limits 0.95V - 1.26V with +/-4% tolerance */
86 /* VDD_CORE voltage limits 0.95V - 1.1V with +/-4% tolerance */
H A Dexynos4210.dtsi419 samsung,pix-limits = <4224 8192 1920 4224>;
425 samsung,pix-limits = <4224 8192 1920 4224>;
431 samsung,pix-limits = <4224 8192 1920 4224>;
437 samsung,pix-limits = <1920 8192 1366 1920>;
H A Dam335x-chilisom.dtsi79 /* VDD_MPU voltage limits 0.95V - 1.26V with +/-4% tolerance */
88 /* VDD_CORE voltage limits 0.95V - 1.1V with +/-4% tolerance */
H A Dam335x-igep0033.dtsi246 /* VDD_MPU voltage limits 0.95V - 1.26V with +/-4% tolerance */
255 /* VDD_CORE voltage limits 0.95V - 1.1V with +/-4% tolerance */
H A Dam335x-phycore-som.dtsi256 /* VDD_MPU voltage limits 0.95V - 1.325V with +/-4% tolerance */
265 /* VDD_CORE voltage limits 0.95V - 1.1V with +/-4% tolerance */
/f-stack/app/nginx-1.16.1/auto/
H A Dheaders8 ngx_include="limits.h"; . auto/include
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/
H A DMakefile.am38 limits \ subdir
/f-stack/dpdk/doc/guides/linux_gsg/
H A Denable_func.rst75 When running as non-root user, there may be some additional resource limits
76 that are imposed by the system. Specifically, the following resource limits may
85 The above limits can usually be adjusted by editing
86 ``/etc/security/limits.conf`` file, and rebooting.
/f-stack/freebsd/contrib/device-tree/Bindings/pwm/
H A Dpwm-lp3943.txt7 Note that this hardware limits the period length to the
/f-stack/freebsd/mips/conf/
H A DTP-MR30207 # too big even when stripped down to its limits.
/f-stack/freebsd/contrib/device-tree/Bindings/mtd/partitions/
H A Dbrcm,trx.txt18 TRX doesn't enforce any strict partition boundaries or size limits. All
/f-stack/freebsd/contrib/device-tree/Bindings/leds/
H A Dleds-is31fl319x.txt34 Note: a driver will take the lowest of all led limits since the
/f-stack/freebsd/contrib/device-tree/Bindings/power/supply/
H A Dqcom_smbb.txt46 Description: Maximum charge current; May be clamped to safety limits.
60 voltage. May be clamped to safety limits.

1234