Home | History | Annotate | Download | only in cintltst

Lines Matching refs:targetcapacity

274     int32_t targetcapacity;
414 int32_t targetLimit=0, sourceLimit=0, i=0, targetCapacity=0;
422 targetCapacity=ucnv_convert("ibm-1364", "ibm-1363", NULL, targetLimit , (const char*)source, sourceLimit, &err);
425 targetLimit=targetCapacity+1;
427 targetCapacity=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source, sourceLimit, &err);
433 for(i=0; i<targetCapacity; i++){
878 targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, testLong1, uchar1, -1, &err);
888 /*call it first time for trapping the targetcapacity and size needed to allocate memory for the buffer uchar2 */
924 targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, testLong1, uchar1, -1, &err);
925 if (targetcapacity !=0) {
930 targetcapacity = ucnv_fromUChars(NULL, output_cp_buffer, testLong1, uchar1, -1, &err);
931 if (targetcapacity !=0 || err != U_ILLEGAL_ARGUMENT_ERROR) {
936 targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, testLong1, uchar1, 0, &err);
937 if (targetcapacity !=0) {
941 targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, 0, uchar1, -1, &err);