Home
last modified time | relevance | path

Searched refs:cutoff (Results 1 – 1 of 1) sorted by last modified time

/unit/src/
H A Dnxt_parse.c21 static const nxt_uint_t cutoff = NXT_INT_T_MAX / 10; in nxt_int_parse() local
38 if (nxt_slow_path(val >= cutoff && (val > cutoff || c > cutlim))) { in nxt_int_parse()
67 static const size_t cutoff = NXT_SIZE_T_MAX / 10; in nxt_size_t_parse() local
84 if (nxt_slow_path(val >= cutoff && (val > cutoff || c > cutlim))) { in nxt_size_t_parse()
172 static const nxt_uoff_t cutoff = NXT_OFF_T_MAX / 10; in nxt_off_t_parse() local
189 if (nxt_slow_path(val >= cutoff && (val > cutoff || c > cutlim))) { in nxt_off_t_parse()
219 static const nxt_uint_t cutoff = NXT_INT_T_MAX / 10; in nxt_str_int_parse() local
241 if (nxt_slow_path(val >= cutoff && (val > cutoff || c > cutlim))) { in nxt_str_int_parse()
293 overflow = nxt_expect(0, (integral >= cutoff in nxt_number_parse()
333 overflow = nxt_expect(0, (frac >= cutoff && (frac > cutoff in nxt_number_parse()
[all …]