Home
last modified time | relevance | path

Searched refs:needLen (Results 1 – 3 of 3) sorted by relevance

/external/icu/icu4c/source/test/cintltst/
Ducnvseltst.c164 int32_t needLen; in fopenOrError() local
168 needLen = uprv_strlen(directory)+uprv_strlen(TDSRCPATH)+uprv_strlen(filename)+1; in fopenOrError()
169 if(needLen > FILENAME_BUFFER) { in fopenOrError()
171 filename, needLen, FILENAME_BUFFER); in fopenOrError()
/external/icu/icu4c/source/common/
Duloc.cpp938 int32_t needLen = 0; in uloc_setKeywordValue() local
982 needLen = bufLen+1+keywordNameLen+1+keywordValueLen; in uloc_setKeywordValue()
984 needLen--; /* already had the @ */ in uloc_setKeywordValue()
989 if(needLen >= bufferCapacity) { in uloc_setKeywordValue()
991 return needLen; /* no change */ in uloc_setKeywordValue()
1001 return needLen; in uloc_setKeywordValue()
1097 needLen = bufLen+1+keywordNameLen+1+keywordValueLen; in uloc_setKeywordValue()
1098 if(needLen >= bufferCapacity) { in uloc_setKeywordValue()
1100 return needLen; /* no change */ in uloc_setKeywordValue()
1121 buffer[needLen]=0; in uloc_setKeywordValue()
[all …]
/external/lzma/C/Util/SfxSetup/
DSfxSetup.c533 DWORD needLen = GetCurrentDirectory(MAX_PATH + 1, oldCurDir); in main() local
534 if (needLen == 0 || needLen > MAX_PATH) in main()