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

/barrelfish-master/lib/openssl-1.0.0d/crypto/
H A DLPdir_win.c77 /* len_0 denotes string length *with* trailing 0 */
78 size_t index = 0,len_0 = strlen(directory) + 1; local
80 wdir = (TCHAR *)malloc(len_0 * sizeof(TCHAR));
90 if (!MultiByteToWideChar(CP_ACP, 0, directory, len_0, (WCHAR *)wdir, len_0))
92 for (index = 0; index < len_0; index++)
121 size_t index, len_0 = 0; local
123 while (wdir[len_0] && len_0 < (sizeof((*ctx)->entry_name) - 1)) len_0
[all...]
H A Dcryptlib.c828 size_t len_0=strlen(fmta)+1,i; local
831 fmtw = (WCHAR *)alloca(len_0*sizeof(WCHAR));
835 if (!MultiByteToWideChar(CP_ACP,0,fmta,len_0,fmtw,len_0))
837 for (i=0;i<len_0;i++) fmtw[i]=(WCHAR)fmta[i];
839 for (i=0;i<len_0;i++)
/barrelfish-master/lib/openssl-1.0.0d/crypto/bio/
H A Dbss_file.c125 int sz, len_0 = (int)strlen(filename)+1; local
141 filename,len_0,NULL,0))>0 ||
144 filename,len_0,NULL,0))>0)
151 filename,len_0,wfilename,sz) &&
/barrelfish-master/lib/openssl-1.0.0d/crypto/dso/
H A Ddso_win32.c92 size_t len_0=strlen(lpLibFileName)+1,i; local
95 fnamw = (WCHAR *)_alloca (len_0*sizeof(WCHAR));
97 fnamw = (WCHAR *)alloca (len_0*sizeof(WCHAR));
106 if (!MultiByteToWideChar(CP_ACP,0,lpLibFileName,len_0,fnamw,len_0))
108 for (i=0;i<len_0;i++) fnamw[i]=(WCHAR)lpLibFileName[i];
/barrelfish-master/lib/openssl-1.0.0d/engines/
H A De_capi.c1065 int len_0,sz; local
1069 len_0 = (int)wcslen(wstr)+1; /* WideCharToMultiByte expects int */
1070 sz = WideCharToMultiByte(CP_ACP,0,wstr,len_0,NULL,0,NULL,NULL);
1082 if (!WideCharToMultiByte(CP_ACP,0,wstr,len_0,str,sz,NULL,NULL))
/barrelfish-master/lib/openssl-1.0.0d/apps/
H A Dapps.c2947 size_t i, len_0 = strlen(name)+1; local
2949 if (len_0 > sizeof(FileData.cFileName)/sizeof(FileData.cFileName[0]))
2953 if (!MultiByteToWideChar(CP_ACP,0,name,len_0,FileData.cFileName,len_0))
2955 for (i=0;i<len_0;i++)

Completed in 55 milliseconds