Home | History | Annotate | Download | only in cintltst

Lines Matching defs:uchar2

270     UChar* uchar2 = 0;
866 /*uchar1---fromUChar--->output_cp_buffer --toUChar--->uchar2*/
891 /*call it first time for trapping the targetcapacity and size needed to allocate memory for the buffer uchar2 */
904 uchar2=(UChar*)malloc((targetsize+1) * sizeof(UChar));
906 uchar2,
917 if(u_strcmp(uchar1,uchar2)!=0)
949 targetsize = ucnv_toUChars(myConverter, uchar2, targetsize, output_cp_buffer, strlen(output_cp_buffer), &err);
954 targetsize = ucnv_toUChars(myConverter, uchar2, -1, output_cp_buffer, strlen(output_cp_buffer), &err);
959 targetsize = ucnv_toUChars(myConverter, uchar2, 0, output_cp_buffer, 0, &err);
1026 if(uchar2 == NULL)
1028 log_err("uchar2 was NULL (ccapitst.c line %d), couldn't do sanity check\n", __LINE__);
1032 if(u_strcmp(uchar2, uchar3)==0)
1041 if (uchar2 != 0) free(uchar2);