Home | History | Annotate | Download | only in common

Lines Matching refs:destCapacity

1422               UChar *dest, int32_t destCapacity,
1435 if( source==NULL || sourceLength<-1 || (dest==NULL && destCapacity!=0) || destCapacity<0 ||
1477 return u_terminateUChars(dest, destCapacity, 0, pErrorCode);
1483 (dest<=source && source<dest+destCapacity))) {
1541 outputSize=calculateSize(source,sourceLength,destCapacity,options);
1546 if(outputSize>destCapacity) {
1603 destLength = shapeUnicode(tempbuffer,sourceLength,destCapacity,options,pErrorCode,2,shapeVars);
1606 destLength = shapeUnicode(tempbuffer,sourceLength,destCapacity,options,pErrorCode,1,shapeVars);
1610 destLength = handleTashkeelWithTatweel(tempbuffer,destLength,destCapacity,options,pErrorCode);
1616 destLength = shapeUnicode(tempbuffer,sourceLength,destCapacity,options,pErrorCode,0,shapeVars);
1621 destLength = deShapeUnicode(tempbuffer,sourceLength,destCapacity,options,pErrorCode,shapeVars);
1640 uprv_memcpy(dest, tempbuffer, uprv_min(destLength, destCapacity)*U_SIZEOF_UCHAR);
1646 if(destLength>destCapacity) {
1657 if(destCapacity<sourceLength) {
1727 return u_terminateUChars(dest, destCapacity, destLength, pErrorCode);