Searched refs:len_0 (Results 1 - 3 of 3) sorted by relevance

/freebsd-9.3-release/crypto/openssl/crypto/
H A DLPdir_win.c97 /* len_0 denotes string length *with* trailing 0 */
98 size_t index = 0, len_0 = strlen(extdir) + 1; local
100 wdir = (TCHAR *)calloc(len_0, sizeof(TCHAR));
112 (CP_ACP, 0, extdir, len_0, (WCHAR *)wdir, len_0))
114 for (index = 0; index < len_0; index++)
140 size_t index, len_0 = 0; local
142 while (wdir[len_0] && len_0 < (sizeof((*ctx)->entry_name) - 1))
143 len_0
[all...]
H A Dcryptlib.c491 size_t len_0 = strlen(fmta) + 1, i; local
495 fmtw = (WCHAR *)_alloca(len_0 * sizeof(WCHAR));
497 fmtw = (WCHAR *)alloca(len_0 * sizeof(WCHAR));
504 if (!MultiByteToWideChar(CP_ACP, 0, fmta, len_0, fmtw, len_0))
506 for (i = 0; i < len_0; i++)
509 for (i = 0; i < len_0; i++) {
/freebsd-9.3-release/crypto/openssl/engines/
H A De_capi.c1008 int len_0, sz; local
1012 len_0 = (int)wcslen(wstr) + 1; /* WideCharToMultiByte expects int */
1013 sz = WideCharToMultiByte(CP_ACP, 0, wstr, len_0, NULL, 0, NULL, NULL);
1023 if (!WideCharToMultiByte(CP_ACP, 0, wstr, len_0, str, sz, NULL, NULL)) {

Completed in 98 milliseconds