Home
last modified time | relevance | path

Searched refs:len_0 (Results 1 – 6 of 6) sorted by relevance

/freebsd/crypto/openssl/crypto/
H A DLPdir_win.c100 size_t index = 0, len_0 = dirlen + 1; in LP_find_file() local
108 directory, len_0, in LP_find_file()
115 directory, len_0, in LP_find_file()
125 if (!MultiByteToWideChar(cp, 0, directory, len_0, in LP_find_file()
135 sz = len_0; in LP_find_file()
141 for (index = 0; index < len_0; index++) in LP_find_file()
183 size_t index, len_0 = 0; in LP_find_file() local
185 while (wdir[len_0] && len_0 < (sizeof((*ctx)->entry_name) - 1)) in LP_find_file()
186 len_0++; in LP_find_file()
187 len_0++; in LP_find_file()
[all …]
H A Do_fopen.c42 int sz, len_0; in openssl_fopen() local
49 len_0 = (int)strlen(filename) + 1; in openssl_fopen()
64 filename, len_0, NULL, 0)) in openssl_fopen()
66 …INVALID_FLAGS && (sz = MultiByteToWideChar(CP_UTF8, (flags = 0), filename, len_0, NULL, 0)) > 0)) { in openssl_fopen()
71 filename, len_0, wfilename, sz) in openssl_fopen()
H A Dcryptlib.c137 size_t len_0 = strlen(fmta) + 1, i; in OPENSSL_showfatal() local
140 fmtw = (WCHAR *)alloca(len_0 * sizeof(WCHAR)); in OPENSSL_showfatal()
145 if (!MultiByteToWideChar(CP_ACP, 0, fmta, len_0, fmtw, len_0)) in OPENSSL_showfatal()
146 for (i = 0; i < len_0; i++) in OPENSSL_showfatal()
148 for (i = 0; i < len_0; i++) { in OPENSSL_showfatal()
/freebsd/crypto/openssl/crypto/dso/
H A Ddso_win32.c37 size_t len_0 = strlen(lpLibFileName) + 1, i; in LoadLibraryA() local
40 fnamw = (WCHAR *)_alloca(len_0 * sizeof(WCHAR)); in LoadLibraryA()
42 fnamw = (WCHAR *)alloca(len_0 * sizeof(WCHAR)); in LoadLibraryA()
49 if (!MultiByteToWideChar(CP_ACP, 0, lpLibFileName, len_0, fnamw, len_0)) in LoadLibraryA()
51 for (i = 0; i < len_0; i++) in LoadLibraryA()
/freebsd/crypto/openssl/apps/lib/
H A Dopt.c1249 size_t i, len_0 = strlen(name) + 1; in opt_isdir() local
1252 if (len_0 > MAX_PATH) in opt_isdir()
1256 if (!MultiByteToWideChar(CP_ACP, 0, name, len_0, tempname, MAX_PATH)) in opt_isdir()
1258 for (i = 0; i < len_0; i++) in opt_isdir()
/freebsd/crypto/openssl/engines/
H A De_capi.c1130 int len_0, sz; in wide_to_asc() local
1143 len_0 = (int)len_1; /* WideCharToMultiByte expects int */ in wide_to_asc()
1144 sz = WideCharToMultiByte(CP_ACP, 0, wstr, len_0, NULL, 0, NULL, NULL); in wide_to_asc()
1152 if (!WideCharToMultiByte(CP_ACP, 0, wstr, len_0, str, sz, NULL, NULL)) { in wide_to_asc()