Lines Matching refs:newlen
1671 wcsdup_pad(const wchar_t *s, int padding, int *newlen)
1683 *newlen = len < MAXINT ? (int)len : MAXINT;
1734 int newlen;
1738 int newlen;
1809 venv_cfg_path = wcsdup_pad(argv0, 32, &newlen);
1819 wcscat_s(venv_cfg_path, newlen, L"\\pyvenv.cfg");
1827 wcscat_s(venv_cfg_path, newlen, L"\\pyvenv.cfg");
1888 newlen = wcslen(wrapped_script_path) + wcslen(command) + 2; /* ' ' + NUL */
1889 newcommand = malloc(sizeof(wchar_t) * newlen);
1894 wcscpy_s(newcommand, newlen, wrapped_script_path);
1895 wcscat_s(newcommand, newlen, L" ");
1896 wcscat_s(newcommand, newlen, command);