Lines Matching refs:l2
323 sorti_T l2 = *(sorti_T *)s2; in sort_compare() local
337 if (l1.st_u.num.is_number != l2.st_u.num.is_number) in sort_compare()
338 result = l1.st_u.num.is_number - l2.st_u.num.is_number; in sort_compare()
340 result = l1.st_u.num.value == l2.st_u.num.value ? 0 in sort_compare()
341 : l1.st_u.num.value > l2.st_u.num.value ? 1 : -1; in sort_compare()
345 result = l1.st_u.value_flt == l2.st_u.value_flt ? 0 in sort_compare()
346 : l1.st_u.value_flt > l2.st_u.value_flt ? 1 : -1; in sort_compare()
356 STRNCPY(sortbuf2, ml_get(l2.lnum) + l2.st_u.line.start_col_nr, in sort_compare()
357 l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr + 1); in sort_compare()
358 sortbuf2[l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr] = 0; in sort_compare()
365 return (int)(l1.lnum - l2.lnum); in sort_compare()