Lines Matching full:uchar2
271 UChar* uchar2 = 0;
863 /*uchar1---fromUChar--->output_cp_buffer --toUChar--->uchar2*/
888 /*call it first time for trapping the targetcapacity and size needed to allocate memory for the buffer uchar2 */
901 uchar2=(UChar*)malloc((targetsize+1) * sizeof(UChar));
903 uchar2,
914 if(u_strcmp(uchar1,uchar2)!=0)
946 targetsize = ucnv_toUChars(myConverter, uchar2, targetsize, output_cp_buffer, strlen(output_cp_buffer), &err);
951 targetsize = ucnv_toUChars(myConverter, uchar2, -1, output_cp_buffer, strlen(output_cp_buffer), &err);
956 targetsize = ucnv_toUChars(myConverter, uchar2, 0, output_cp_buffer, 0, &err);
1023 if(uchar2 == NULL)
1025 log_err("uchar2 was NULL (ccapitst.c line %d), couldn't do sanity check\n", __LINE__);
1029 if(u_strcmp(uchar2, uchar3)==0)
1038 if (uchar2 != 0) free(uchar2);