Lines Matching defs:temp_end
1129 UV temp_end = start + 1;
1135 while (temp_end <= max && ! isPRINT_A(temp_end)) {
1136 temp_end++;
1139 /* Here, temp_end points to one beyond the first printable if
1142 if (temp_end > MAX_PRINT_A) {
1143 temp_end = end + 1;
1149 put_range(sv, start, temp_end - 1, FALSE);
1152 start = temp_end;
1170 UV temp_end = start + 1;
1174 while (temp_end <= end && generic_isCC_A_(temp_end, mask)) {
1175 temp_end++;
1177 temp_end--;
1181 if (temp_end - start < min_range_count) {
1182 put_range(sv, start, temp_end, FALSE);
1187 put_code_point(sv, temp_end);
1189 start = temp_end + 1;
1222 UV temp_end = end;
1223 while (isMNEMONIC_CNTRL(temp_end)) {
1224 temp_end--;
1229 put_range(sv, start, temp_end, FALSE);
1232 start = temp_end + 1;