Home
last modified time | relevance | path

Searched refs:cutoff (Results 1 – 17 of 17) sorted by relevance

/f-stack/freebsd/libkern/
H A Dstrtol.c57 unsigned long cutoff; in strtol() local
99 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX; in strtol()
100 cutlim = cutoff % (unsigned long)base; in strtol()
101 cutoff /= (unsigned long)base; in strtol()
113 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
H A Dstrtoq.c55 u_quad_t qbase, cutoff; in strtoq() local
103 cutoff = neg ? (u_quad_t)-(QUAD_MIN + QUAD_MAX) + QUAD_MAX : QUAD_MAX; in strtoq()
104 cutlim = cutoff % qbase; in strtoq()
105 cutoff /= qbase; in strtoq()
117 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoq()
H A Dstrtoul.c57 unsigned long cutoff; in strtoul() local
79 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base; in strtoul()
92 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
H A Dstrtouq.c55 u_quad_t qbase, cutoff; in strtouq() local
81 cutoff = (u_quad_t)UQUAD_MAX / qbase; in strtouq()
94 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtouq()
/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_slice_filter_module.c289 off_t start, end, complete_length, cutoff, cutlim; in ngx_http_slice_parse_content_range() local
304 cutoff = NGX_MAX_OFF_T_VALUE / 10; in ngx_http_slice_parse_content_range()
318 if (start >= cutoff && (start > cutoff || *p - '0' > cutlim)) { in ngx_http_slice_parse_content_range()
338 if (end >= cutoff && (end > cutoff || *p - '0' > cutlim)) { in ngx_http_slice_parse_content_range()
361 if (complete_length >= cutoff in ngx_http_slice_parse_content_range()
362 && (complete_length > cutoff || *p - '0' > cutlim)) in ngx_http_slice_parse_content_range()
445 off_t start, cutoff, cutlim; in ngx_http_slice_get_start() local
474 cutoff = NGX_MAX_OFF_T_VALUE / 10; in ngx_http_slice_get_start()
480 if (start >= cutoff && (start > cutoff || *p - '0' > cutlim)) { in ngx_http_slice_get_start()
H A Dngx_http_range_filter_module.c273 off_t start, end, size, content_length, cutoff, in ngx_http_range_parse() local
298 cutoff = NGX_MAX_OFF_T_VALUE / 10; in ngx_http_range_parse()
314 if (start >= cutoff && (start > cutoff || *p - '0' > cutlim)) { in ngx_http_range_parse()
344 if (end >= cutoff && (end > cutoff || *p - '0' > cutlim)) { in ngx_http_range_parse()
H A Dngx_http_mp4_module.c689 ngx_int_t value, cutoff, cutlim; in ngx_http_mp4_atofp() local
698 cutoff = NGX_MAX_INT_T_VALUE / 10; in ngx_http_mp4_atofp()
722 if (value >= cutoff && (value > cutoff || *line - '0' > cutlim)) { in ngx_http_mp4_atofp()
731 if (value > cutoff) { in ngx_http_mp4_atofp()
/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_string.c934 if (value >= cutoff && (value > cutoff || *line - '0' > cutlim)) { in ngx_atoi()
981 if (value >= cutoff && (value > cutoff || *line - '0' > cutlim)) { in ngx_atofp()
990 if (value > cutoff) { in ngx_atofp()
1004 ssize_t value, cutoff, cutlim; in ngx_atosz() local
1018 if (value >= cutoff && (value > cutoff || *line - '0' > cutlim)) { in ngx_atosz()
1032 off_t value, cutoff, cutlim; in ngx_atoof() local
1046 if (value >= cutoff && (value > cutoff || *line - '0' > cutlim)) { in ngx_atoof()
1060 time_t value, cutoff, cutlim; in ngx_atotm() local
1074 if (value >= cutoff && (value > cutoff || *line - '0' > cutlim)) { in ngx_atotm()
1089 ngx_int_t value, cutoff; in ngx_hextoi() local
[all …]
H A Dngx_parse.c116 ngx_int_t max, cutoff, cutlim; in ngx_parse_time() local
134 cutoff = NGX_MAX_INT_T_VALUE / 10; in ngx_parse_time()
144 if (value >= cutoff && (value > cutoff || *p - '0' > cutlim)) { in ngx_parse_time()
/f-stack/freebsd/net/
H A Dif_clone.c582 int cutoff = INT_MAX / 10; in ifc_name2unit() local
598 if (*unit > cutoff || in ifc_name2unit()
599 (*unit == cutoff && *cp - '0' > cutlim)) in ifc_name2unit()
/f-stack/freebsd/contrib/device-tree/Bindings/iio/accel/
H A Dlis302.txt55 - st,highpass-cutoff-hz=: 1, 2, 4 or 8 for 1Hz, 2Hz, 4Hz or 8Hz of
/f-stack/freebsd/contrib/device-tree/Bindings/sound/
H A Dst,sta350.txt99 If present, the noise-shaping technique on the DC cutoff filter are
/f-stack/freebsd/contrib/device-tree/Bindings/power/supply/
H A Dqcom_smbb.txt80 will restart charging after end-of-charge; The high cutoff
/f-stack/freebsd/contrib/device-tree/Bindings/i2c/
H A Di2c.txt62 - i2c-analog-filter-cutoff-frequency
/f-stack/freebsd/contrib/device-tree/src/arm/
H A Domap3-n950-n9.dtsi315 st,highpass-cutoff-hz = <2>;
/f-stack/freebsd/contrib/zstd/lib/compress/
H A Dzstd_compress.c1795 size_t cutoff = attachDictSizeCutoffs[cdict->matchState.cParams.strategy]; in ZSTD_shouldAttachDict() local
1798 || ( ( pledgedSrcSize <= cutoff in ZSTD_shouldAttachDict()
/f-stack/freebsd/contrib/openzfs/module/zstd/lib/
H A Dzstd.c14704 size_t cutoff = attachDictSizeCutoffs[cdict->matchState.cParams.strategy]; in ZSTD_shouldAttachDict() local
14705 return ( pledgedSrcSize <= cutoff in ZSTD_shouldAttachDict()