Home
last modified time | relevance | path

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

/external/icu/icu4c/source/test/cintltst/
Ducnvseltst.c162 int32_t needLen; in fopenOrError() local
166 needLen = uprv_strlen(directory)+uprv_strlen(TDSRCPATH)+uprv_strlen(filename)+1; in fopenOrError()
167 if(needLen > FILENAME_BUFFER) { in fopenOrError()
169 filename, needLen, FILENAME_BUFFER); in fopenOrError()
/external/icu/icu4c/source/common/
Duloc.cpp934 int32_t needLen = 0; in uloc_setKeywordValue() local
978 needLen = bufLen+1+keywordNameLen+1+keywordValueLen; in uloc_setKeywordValue()
980 needLen--; /* already had the @ */ in uloc_setKeywordValue()
985 if(needLen >= bufferCapacity) { in uloc_setKeywordValue()
987 return needLen; /* no change */ in uloc_setKeywordValue()
997 return needLen; in uloc_setKeywordValue()
1093 needLen = bufLen+1+keywordNameLen+1+keywordValueLen; in uloc_setKeywordValue()
1094 if(needLen >= bufferCapacity) { in uloc_setKeywordValue()
1096 return needLen; /* no change */ in uloc_setKeywordValue()
1117 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()