OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:len_0
(Results
1 - 4
of
4
) sorted by null
/external/openssl/crypto/
LPdir_win.c
79
/*
len_0
denotes string length *with* trailing 0 */
80
size_t index = 0,
len_0
= strlen(directory) + 1;
local
82
wdir = (TCHAR *)malloc(
len_0
* sizeof(TCHAR));
92
if (!MultiByteToWideChar(CP_ACP, 0, directory,
len_0
, (WCHAR *)wdir,
len_0
))
94
for (index = 0; index <
len_0
; index++)
123
size_t index,
len_0
= 0;
local
125
while (wdir[
len_0
] &&
len_0
< (sizeof((*ctx)->entry_name) - 1))
len_0
++
[
all
...]
cryptlib.c
476
size_t
len_0
=strlen(fmta)+1,i;
local
480
fmtw = (WCHAR *)_alloca (
len_0
*sizeof(WCHAR));
482
fmtw = (WCHAR *)alloca (
len_0
*sizeof(WCHAR));
487
if (!MultiByteToWideChar(CP_ACP,0,fmta,
len_0
,fmtw,
len_0
))
489
for (i=0;i<
len_0
;i++) fmtw[i]=(WCHAR)fmta[i];
491
for (i=0;i<
len_0
;i++)
/external/openssl/crypto/dso/
dso_win32.c
92
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));
102
if (!MultiByteToWideChar(CP_ACP,0,lpLibFileName,
len_0
,fnamw,
len_0
))
104
for (i=0;i<
len_0
;i++) fnamw[i]=(WCHAR)lpLibFileName[i];
/prebuilt/common/commons-compress/
commons-compress-1.0.jar
Completed in 32 milliseconds