Lines Matching full:outputsize
1483 int32_t outputSize, spacesCountl=0, spacesCountr=0;
1526 outputSize=calculateSize(source,sourceLength,destCapacity,options);
1528 outputSize=sourceLength;
1531 if(outputSize>destCapacity) {
1534 return outputSize;
1538 * need a temporary buffer of size max(outputSize, sourceLength)
1541 if(sourceLength>outputSize) {
1542 outputSize=sourceLength;
1546 if(outputSize<=LENGTHOF(buffer)) {
1547 outputSize=LENGTHOF(buffer);
1550 tempbuffer = (UChar *)uprv_malloc(outputSize*U_SIZEOF_UCHAR);
1564 if(sourceLength<outputSize) {
1565 uprv_memset(tempbuffer+sourceLength, 0, (outputSize-sourceLength)*U_SIZEOF_UCHAR);
1616 * For as long as we always preflight the outputSize above
1617 * we should U_ASSERT(outputSize==destLength)