Lines Matching defs:dest

116 static inline int32_t convertASCIIToUChars(const char* src,UChar* dest, int32_t length){
119 dest[i] = src[i];
123 static inline int32_t convertUCharsToASCII(const UChar* src,char* dest, int32_t length){
126 dest[i] = (char)src[i];
132 UChar* dest, int32_t destCapacity,
184 convertASCIIToUChars(b2,dest,b2Len);
213 UChar* dest, int32_t destCapacity,
241 u_strFromUTF32(dest,destCapacity,&destLen,(UChar32*)b2,b2Len,&status);
258 UChar* dest, int32_t destCapacity,
266 if((src == NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
355 u_memmove(dest, b1, b1Len);
396 u_memcpy(dest, ACE_PREFIX, ACE_PREFIX_LENGTH);
397 //Step 6: copy the contents in b2 into dest
398 u_memcpy(dest+ACE_PREFIX_LENGTH, b2, b2Len);
421 return u_terminateUChars(dest, destCapacity, reqLength, status);
427 UChar* dest, int32_t destCapacity,
435 if((src == NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
591 u_memmove(dest, b2, b2Len);
617 u_memmove(dest, src, srcLength);
640 if(dest && srcLength <= destCapacity){
642 u_memmove(dest, src, u_strlen(src));
644 u_memmove(dest, src, srcLength);
650 return u_terminateUChars(dest, destCapacity, reqLength, status);
692 UChar* dest, int32_t destCapacity,
700 if((src == NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
764 // copy to dest
766 u_memmove(dest+reqLength, b1, b1Len);
774 dest[reqLength] = FULL_STOP;
813 // copy to dest
815 u_memmove(dest+reqLength, b1, b1Len);
823 dest[reqLength] = FULL_STOP;
842 return u_terminateUChars(dest, destCapacity, reqLength, status);
847 UChar* dest, int32_t destCapacity,
855 if((src == NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
918 // copy to dest
920 u_memmove(dest+reqLength, b1, b1Len);
927 dest[reqLength] = FULL_STOP;
970 // copy to dest
972 u_memmove(dest+reqLength, b1, b1Len);
980 dest[reqLength] = FULL_STOP;
998 return u_terminateUChars(dest, destCapacity, reqLength, status);