Home | History | Annotate | Download | only in i18n

Lines Matching defs:resultSize

536 static void appendShortStringElement(const char *src, int32_t len, char *result, int32_t *resultSize, int32_t capacity, char arg)
539 if(*resultSize) {
540 if(*resultSize < capacity) {
543 (*resultSize)++;
545 *resultSize += len + 1;
546 if(*resultSize < capacity) {
563 int32_t resultSize = 0;
580 appendShortStringElement(tempbuff, elementSize, buffer, &resultSize, /*capacity*/internalBufferSize, languageArg);
582 appendShortStringElement(tempbuff, elementSize, buffer, &resultSize, /*capacity*/internalBufferSize, regionArg);
584 appendShortStringElement(tempbuff, elementSize, buffer, &resultSize, /*capacity*/internalBufferSize, scriptArg);
586 appendShortStringElement(tempbuff, elementSize, buffer, &resultSize, /*capacity*/internalBufferSize, variantArg);
588 appendShortStringElement(tempbuff, elementSize, buffer, &resultSize, /*capacity*/internalBufferSize, keywordArg);
599 buffer, &resultSize, /*capacity*/internalBufferSize, options[i].optionStart);
606 appendShortStringElement(tempbuff, elementSize, buffer, &resultSize, capacity, variableTopValArg);