Home | History | Annotate | Download | only in alisp

Lines Matching refs:end1

2648  * Syntax: (compare-strings str1 start1 end1 str2 start2 end2 /opt-case-insensitive)
2651 * 'end1' is last char (0..)
2661 int start1, end1, start2, end2;
2703 end1 = p[2]->value.i;
2706 end2 = alisp_compare_type(p[5], ALISP_OBJ_NIL) ? start2 + (end1 - start1) : p[5]->value.i;
2707 if (start1 < 0 || start2 < 0 || end1 < 0 || end2 < 0 ||
2709 (end1 - start1) != (end2 - start2)) {
2714 while (start1 < end1) {
2725 while (start1 < end1) {