Searched refs:needLen (Results 1 – 3 of 3) sorted by relevance
164 int32_t needLen; in fopenOrError() local168 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()
938 int32_t needLen = 0; in uloc_setKeywordValue() local982 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 …]
533 DWORD needLen = GetCurrentDirectory(MAX_PATH + 1, oldCurDir); in main() local534 if (needLen == 0 || needLen > MAX_PATH) in main()