Lines Matching refs:digit_count
11242 size_t digit_count{0};
11248 for (; (digit_count < 4) && !(input.empty()); digit_count++) {
11278 // At this stage, ipv4 contains digit_count*8 bits.
11279 // So we have 32-digit_count*8 bits left.
11280 if (segment_result >= (uint64_t(1) << (32 - digit_count * 8))) {
11283 ipv4 <<= (32 - digit_count * 8);
11297 if ((digit_count != 4) || (!input.empty())) {
14030 size_t digit_count{0};
14034 for (; (digit_count < 4) && !(input.empty()); digit_count++) {
14069 // At this stage, ipv4 contains digit_count*8 bits.
14070 // So we have 32-digit_count*8 bits left.
14071 if (segment_result >= (uint64_t(1) << (32 - digit_count * 8))) {
14074 ipv4 <<= (32 - digit_count * 8);
14088 if ((digit_count != 4) || (!input.empty())) {