Home | History | Annotate | Download | only in i18n

Lines Matching refs:resultSize

574 static void appendShortStringElement(const char *src, int32_t len, char *result, int32_t *resultSize, int32_t capacity, char arg)
577 if(*resultSize) {
578 if(*resultSize < capacity) {
581 (*resultSize)++;
583 *resultSize += len + 1;
584 if(*resultSize < capacity) {
604 int32_t resultSize = 0;
621 appendShortStringElement(tempbuff, elementSize, buffer, &resultSize, /*capacity*/internalBufferSize, languageArg);
623 appendShortStringElement(tempbuff, elementSize, buffer, &resultSize, /*capacity*/internalBufferSize, regionArg);
625 appendShortStringElement(tempbuff, elementSize, buffer, &resultSize, /*capacity*/internalBufferSize, scriptArg);
627 appendShortStringElement(tempbuff, elementSize, buffer, &resultSize, /*capacity*/internalBufferSize, variantArg);
629 appendShortStringElement(tempbuff, elementSize, buffer, &resultSize, /*capacity*/internalBufferSize, keywordArg);
640 buffer, &resultSize, /*capacity*/internalBufferSize, options[i].optionStart);
647 appendShortStringElement(tempbuff, elementSize, buffer, &resultSize, capacity, variableTopValArg);