Searched refs:cutlim (Results 1 – 10 of 10) sorted by relevance
| /f-stack/freebsd/libkern/ |
| H A D | strtoul.c | 58 int neg = 0, any, cutlim; in strtoul() local 80 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base; in strtoul() 92 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
|
| H A D | strtouq.c | 56 int neg, any, cutlim; in strtouq() local 82 cutlim = (u_quad_t)UQUAD_MAX % qbase; in strtouq() 94 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtouq()
|
| H A D | strtol.c | 58 int neg = 0, any, cutlim; in strtol() local 100 cutlim = cutoff % (unsigned long)base; in strtol() 113 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
|
| H A D | strtoq.c | 56 int neg, any, cutlim; in strtoq() local 104 cutlim = cutoff % qbase; in strtoq() 117 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoq()
|
| /f-stack/app/nginx-1.16.1/src/http/modules/ |
| H A D | ngx_http_slice_filter_module.c | 289 off_t start, end, complete_length, cutoff, cutlim; in ngx_http_slice_parse_content_range() local 305 cutlim = 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() 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 475 cutlim = 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 D | ngx_http_range_filter_module.c | 274 cutlim; in ngx_http_range_parse() local 299 cutlim = 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 D | ngx_http_mp4_module.c | 689 ngx_int_t value, cutoff, cutlim; in ngx_http_mp4_atofp() local 699 cutlim = 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()
|
| /f-stack/app/nginx-1.16.1/src/core/ |
| H A D | ngx_string.c | 920 ngx_int_t value, cutoff, cutlim; in ngx_atoi() local 927 cutlim = NGX_MAX_INT_T_VALUE % 10; in ngx_atoi() 934 if (value >= cutoff && (value > cutoff || *line - '0' > cutlim)) { in ngx_atoi() 950 ngx_int_t value, cutoff, cutlim; in ngx_atofp() local 958 cutlim = NGX_MAX_INT_T_VALUE % 10; in ngx_atofp() 1004 ssize_t value, cutoff, cutlim; in ngx_atosz() local 1011 cutlim = NGX_MAX_SIZE_T_VALUE % 10; in ngx_atosz() 1032 off_t value, cutoff, cutlim; in ngx_atoof() local 1039 cutlim = NGX_MAX_OFF_T_VALUE % 10; in ngx_atoof() 1060 time_t value, cutoff, cutlim; in ngx_atotm() local [all …]
|
| H A D | ngx_parse.c | 116 ngx_int_t max, cutoff, cutlim; in ngx_parse_time() local 135 cutlim = 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 D | if_clone.c | 583 int cutlim = INT_MAX % 10; in ifc_name2unit() local 599 (*unit == cutoff && *cp - '0' > cutlim)) in ifc_name2unit()
|