Lines Matching refs:length3
436 int32_t length, length2, length3 = 0; in uloc_getDisplayName() local
603 if(length + length3 < destCapacity) { in uloc_getDisplayName()
604 …length3 += uloc_getDisplayKeyword(keyword, displayLocale, dest+length+length3, destCapacity-length… in uloc_getDisplayName()
606 length3 += uloc_getDisplayKeyword(keyword, displayLocale, NULL, 0, pErrorCode); in uloc_getDisplayName()
614 if(length + length3 < destCapacity) { in uloc_getDisplayName()
615 dest[length + length3] = 0x3D; in uloc_getDisplayName()
617 length3++; in uloc_getDisplayName()
618 if(length + length3 < destCapacity) { in uloc_getDisplayName()
619 …length3 += uloc_getDisplayKeywordValue(locale, keyword, displayLocale, dest+length+length3, destCa… in uloc_getDisplayName()
621 … length3 += uloc_getDisplayKeywordValue(locale, keyword, displayLocale, NULL, 0, pErrorCode); in uloc_getDisplayName()
629 if(length + length3 + locSepLen <= destCapacity && keywordCount) { in uloc_getDisplayName()
630 u_memcpy(dest+length+length3,dispLocSeparator,locSepLen); in uloc_getDisplayName()
631 length3+=locSepLen; in uloc_getDisplayName()
637 hasKeywords = length3 > 0; in uloc_getDisplayName()
638 length += length3; in uloc_getDisplayName()