Lines Matching refs:dest
195 UChar* dest, int32_t destCapacity,
319 uprv_memmove(dest, b1, b1Len * U_SIZEOF_UCHAR);
365 uprv_memcpy(dest,ACE_PREFIX,ACE_PREFIX_LENGTH * U_SIZEOF_UCHAR);
366 //Step 6: copy the contents in b2 into dest
367 uprv_memcpy(dest+ACE_PREFIX_LENGTH, b2, b2Len * U_SIZEOF_UCHAR);
390 return u_terminateUChars(dest, destCapacity, reqLength, status);
395 UChar* dest, int32_t destCapacity,
545 uprv_memmove(dest, b2, b2Len * U_SIZEOF_UCHAR);
574 uprv_memmove(dest,src,srcLength * U_SIZEOF_UCHAR);
598 if(dest && srcLength <= destCapacity){
601 uprv_memmove(dest,src,srcLength * U_SIZEOF_UCHAR);
607 return u_terminateUChars(dest, destCapacity, reqLength, status);
612 UChar* dest, int32_t destCapacity,
620 if((src==NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
631 int32_t retLen = _internal_toASCII(src, srcLength, dest, destCapacity, options, nameprep, parseError, status);
641 UChar* dest, int32_t destCapacity,
649 if( (src==NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
660 int32_t retLen = _internal_toUnicode(src, srcLength, dest, destCapacity, options, nameprep, parseError, status);
670 UChar* dest, int32_t destCapacity,
678 if((src==NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
694 UChar *currentDest = (UChar*) dest;
758 return u_terminateUChars(dest, destCapacity, reqLength, status);
763 UChar* dest, int32_t destCapacity,
771 if((src==NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
787 UChar *currentDest = (UChar*) dest;
857 return u_terminateUChars(dest, destCapacity, reqLength, status);