Home | History | Annotate | Download | only in ucnv

Lines Matching refs:uchars

272     UChars as the input buffer has bytes.
316 printf("input bytes %d / min chars %d = %d UChars\n",
365 printf("%d letters out of %d total UChars.\n", letters, total);
433 printf("input bytes %d / min chars %d = %d UChars\n",
481 printf("%d letters out of %d total UChars.\n", letters, total);
603 printf("src=%d bytes, dst=%d uchars\n", srcCount, dstCount);
614 UChar uchars[100];
634 len = ucnv_toUChars(conv, uchars, 100, source, strlen(source), &status);
637 printUChars("uch", uchars, len);
662 len2 = ucnv_fromUChars(conv, bytes, 100, uchars, len, &status);
708 UChar uchars[100];
735 len = ucnv_toUChars(conv, uchars, 100, source, strlen(source), &status);
738 printUChars("uch", uchars, len);
816 len2 = ucnv_fromUChars(cloneCnv, bytes, 100, uchars, len, &status);
903 printf("input bytes %d / min chars %d = %d UChars\n",
950 printf("%d bytes in, %d UChars out.\n", inbytes, total);
1009 printf("input UChars[16] %d * max charsize %d = %d bytes output buffer\n",
1055 printf("%d Uchars (%d bytes) in, %d chars out.\n", inchars, inchars * sizeof(UChar), total);