Lines Matching defs:out
707 UChar out[20]={ 0xffff, 0xffff, 0xffff, 0xffff };
720 length=unorm_normalize(in, 2, UNORM_NFD, 0, out, 3, &errorCode);
725 if(length!=3 || out[2]!=0x308 || out[3]!=0xffff) {
726 log_err("unorm_normalize(NFD ma<umlaut>)=%ld failed with out[]=U+%04x U+%04x U+%04x U+%04x\n", length, out[0], out[1], out[2], out[3]);
734 length=unorm_normalize(NULL, 0, UNORM_NFC, 0, out, 20, &errorCode);
736 log_err("unorm_normalize(src NULL[0], NFC, dest out[20])=%ld failed with %s\n", (long)length, u_errorName(errorCode));
1033 const UChar *out, int32_t outLength,
1042 outLimit=out+outLength;
1044 expect=out;
1061 (UBool)(out!=NULL), &neededToNormalize,
1067 if(out!=NULL) {
1086 (UBool)(out!=NULL), &neededToNormalize,
1092 if(out!=NULL) {
1095 while(expect!=out && expect[-1]!=_PLUS) {
1626 UChar out[32];
1635 length=unorm2_normalize(n2, in, LENGTHOF(in), out, LENGTHOF(out), &errorCode);
1636 if(U_FAILURE(errorCode) || length!=2 || out[0]!=0xa0 || out[1]!=0x1e08) {
1647 length=unorm2_normalize(n2, in, LENGTHOF(in), out, LENGTHOF(out), &errorCode);
1648 if(U_FAILURE(errorCode) || length!=4 || out[0]!=0xa0 || out[1]!=0x43 || out[2]!=0x327 || out[3]!=0x301) {
1659 length=unorm2_normalize(n2, in, LENGTHOF(in), out, LENGTHOF(out), &errorCode);
1660 if(U_FAILURE(errorCode) || length!=2 || out[0]!=0x20 || out[1]!=0x1e08) {
1671 length=unorm2_normalize(n2, in, LENGTHOF(in), out, LENGTHOF(out), &errorCode);
1672 out[0]!=0x20 || out[1]!=0x43 || out[2]!=0x327 || out[3]!=0x301) {
1683 length=unorm2_normalize(n2, in, LENGTHOF(in), out, LENGTHOF(out), &errorCode);
1684 if(U_FAILURE(errorCode) || length!=2 || out[0]!=0x20 || out[1]!=0x1e09) {