Lines Matching refs:iloc

816     if (iloc <= ilimit) {       /* current line not yet finished */
817 do_buffer_to_unichar(cur_chr, iloc);
886 iloc = ilimit + 1;
894 iloc = ilimit + 1;
898 iloc = ilimit + 1;
1001 if (cur_chr == buffer[iloc]) {
1003 if (iloc < ilimit) {
1004 if ((cur_chr == buffer[iloc + 1]) && (cur_chr == buffer[iloc + 2])
1005 && (cur_chr == buffer[iloc + 3])
1006 && (cur_chr == buffer[iloc + 4])
1007 && ((iloc + 10) <= ilimit)) {
1009 c = buffer[iloc + 5];
1010 cc = buffer[iloc + 6];
1011 ccc = buffer[iloc + 7];
1012 cccc = buffer[iloc + 8];
1013 ccccc = buffer[iloc + 9];
1014 cccccc = buffer[iloc + 10];
1018 iloc = iloc + 11;
1023 if ((cur_chr == buffer[iloc + 1]) && (cur_chr == buffer[iloc + 2])
1024 && (cur_chr == buffer[iloc + 3]) && ((iloc + 8) <= ilimit)) {
1026 c = buffer[iloc + 4];
1027 cc = buffer[iloc + 5];
1028 ccc = buffer[iloc + 6];
1029 cccc = buffer[iloc + 7];
1030 ccccc = buffer[iloc + 8];
1033 iloc = iloc + 9;
1038 if ((cur_chr == buffer[iloc + 1]) && (cur_chr == buffer[iloc + 2])
1039 && ((iloc + 6) <= ilimit)) {
1041 c = buffer[iloc + 3];
1042 cc = buffer[iloc + 4];
1043 ccc = buffer[iloc + 5];
1044 cccc = buffer[iloc + 6];
1047 iloc = iloc + 7;
1052 c = buffer[iloc + 1];
1054 iloc = iloc + 2;
1055 if (is_hex(c) && iloc <= ilimit) {
1056 cc = buffer[iloc];
1058 incr(iloc);
1092 if (iloc > ilimit) {
1097 int k = iloc;
1123 cur_cs = id_lookup(iloc, k - iloc);
1124 iloc = k;
1326 iloc = istart; /* ready to read */
1354 iloc = istart;
1370 t = token_info(iloc);
1371 iloc = token_link(iloc); /* move to next */
1379 … case, |token_info(iloc)| is known to be a control sequence token, and |token_link(iloc)=null|.
1381 cur_cs = token_info(iloc) - cs_token_flag;
1382 iloc = null;
1429 if (iloc == null) {
1485 while (istate == token_list && iloc == null && iindex != v_template)
1489 ((nofilter == true) || (iindex == backed_up && iloc != null)))) {
2172 iloc = istart;
2176 while (iloc <= ilimit) { /* current line not yet finished */
2177 do_buffer_to_unichar(cur_chr, iloc);