Home
last modified time | relevance | path

Searched refs:dot_count (Results 1 – 7 of 7) sorted by relevance

/external/ppp/pppd/plugins/radius/
Dip_util.c56 int dot_count; in rc_good_ipaddr() local
62 dot_count = 0; in rc_good_ipaddr()
68 dot_count++; in rc_good_ipaddr()
73 dot_count = 5; in rc_good_ipaddr()
80 dot_count = 5; in rc_good_ipaddr()
85 if (dot_count != 3) in rc_good_ipaddr()
/external/libcups/filter/
Drastertoepson.c796 dot_count, /* Number of bytes to print */ in OutputRows() local
812 dot_count = header->cupsWidth * DotBytes; in OutputRows()
815 while (dot_count >= dot_min && dot_ptr[0] == 0 && in OutputRows()
820 dot_count -= dot_min; in OutputRows()
827 while (dot_count >= dot_min && dot_ptr[dot_count - dot_min] == 0 && in OutputRows()
828 memcmp(dot_ptr + dot_count - dot_min, in OutputRows()
829 dot_ptr + dot_count - dot_min + 1, dot_min - 1) == 0) in OutputRows()
830 dot_count -= dot_min; in OutputRows()
883 n = dot_count / DotBytes; in OutputRows()
898 for (n = dot_count / 2, ptr = dot_ptr; n > 0; n --, ptr += 2) in OutputRows()
[all …]
/external/e2fsprogs/lib/ext2fs/
Dversion.c31 int version = 0, dot_count = 0; in ext2fs_parse_version_string() local
35 if (dot_count++) in ext2fs_parse_version_string()
/external/toolchain-utils/crosperf/
Dexperiment_runner_unittest.py63 self.dot_count = 0
78 self.dot_count += 1
82 self.dot_count += 1
92 self.dot_count = 0
182 self.assertEqual(self.mock_logger.dot_count, 2)
210 self.assertEqual(self.mock_logger.dot_count, 2)
239 self.assertEqual(self.mock_logger.dot_count, 0)
/external/python/cpython3/Modules/
D_operator.c612 int dot_count; in attrgetter_new() local
629 dot_count = 0; in attrgetter_new()
632 ++dot_count; in attrgetter_new()
635 if (dot_count == 0) { in attrgetter_new()
640 PyObject *attr_chain = PyTuple_New(dot_count + 1); in attrgetter_new()
651 for (; dot_count > 0; --dot_count) { in attrgetter_new()
/external/vulkan-validation-layers/windowsRuntimeInstaller/
Dconfigure_runtime.c442 size_t borders[4], dot_count = 0, i; in read_version() local
443 for(i = 0; dot_count < 3 && version_string[i] != '\0'; ++i) { in read_version()
445 borders[dot_count++] = i + 1; in read_version()
450 if(dot_count < 3) { in read_version()
/external/python/cpython3/Lib/importlib/
D_bootstrap_external.py325 dot_count = pycache_filename.count('.')
326 if dot_count not in {2, 3}:
329 elif dot_count == 3: