Home
last modified time | relevance | path

Searched refs:m (Results 1 – 8 of 8) sorted by relevance

/libuv/docs/src/
H A Dconf.py24 m = re.search(r"""^#define UV_VERSION_MAJOR (\d+)$""", data, re.MULTILINE)
25 major = int(m.group(1))
26 m = re.search(r"""^#define UV_VERSION_MINOR (\d+)$""", data, re.MULTILINE)
27 minor = int(m.group(1))
28 m = re.search(r"""^#define UV_VERSION_PATCH (\d+)$""", data, re.MULTILINE)
29 patch = int(m.group(1))
30 m = re.search(r"""^#define UV_VERSION_IS_RELEASE (\d)$""", data, re.MULTILINE)
31 is_release = int(m.group(1))
32 m = re.search(r"""^#define UV_VERSION_SUFFIX \"(\w*)\"$""", data, re.MULTILINE)
33 suffix = m.group(1)
/libuv/docs/src/sphinx-plugins/
H A Dmanpage.py33 m = p.match(text)
35 manpage_num = m.group(2)
36 name = m.group(1)
/libuv/src/
H A Didna.c160 unsigned m; in uv__idna_toascii_label() local
228 m = -1; in uv__idna_toascii_label()
236 if (c < m) in uv__idna_toascii_label()
237 m = c; in uv__idna_toascii_label()
240 x = m - n; in uv__idna_toascii_label()
247 n = m; in uv__idna_toascii_label()
H A Duv-common.c57 char* m = uv__malloc(len); in uv__strdup() local
58 if (m == NULL) in uv__strdup()
60 return memcpy(m, s, len); in uv__strdup()
64 char* m; in uv__strndup() local
68 m = uv__malloc(len + 1); in uv__strndup()
69 if (m == NULL) in uv__strndup()
71 m[len] = '\0'; in uv__strndup()
72 return memcpy(m, s, len); in uv__strndup()
/libuv/
H A DAUTHORS156 Recep ASLANTAS <m@recp.me>
170 Michael Ira Krufky <m.krufky@samsung.com>
178 Johan Bergström <bugs@bergstroem.nu>
391 Mustafa M <mus-m@outlook.com>
H A DChangeLog4532 * build: make dist now generates a full tarball (Johan Bergström)
6187 * darwin: rename darwin-getproctitle.m (Ben Noordhuis)
/libuv/docs/src/guide/
H A Dfilesystem.rst286 difficult. To demonstrate, I'm going to build a simple utility which runs
H A Dutilities.rst431 m Obeys string of display settings, in this case green background (40+2), white text (30+7)

Completed in 27 milliseconds