Home | History | Annotate | Download | only in libxml2

Lines Matching defs:ix

775     int ix;
788 for (ix = 0; (c = utf[ix]);) { /* string is 0-terminated */
790 ix++;
792 if ((utf[ix+1] & 0xc0 ) != 0x80)
794 ix += 2;
796 if (((utf[ix+1] & 0xc0) != 0x80) ||
797 ((utf[ix+2] & 0xc0) != 0x80))
799 ix += 3;
801 if (((utf[ix+1] & 0xc0) != 0x80) ||
802 ((utf[ix+2] & 0xc0) != 0x80) ||
803 ((utf[ix+3] & 0xc0) != 0x80))
805 ix += 4;