Lines Matching refs:l1
322 sorti_T l1 = *(sorti_T *)s1; 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()
353 STRNCPY(sortbuf1, ml_get(l1.lnum) + l1.st_u.line.start_col_nr, in sort_compare()
354 l1.st_u.line.end_col_nr - l1.st_u.line.start_col_nr + 1); in sort_compare()
355 sortbuf1[l1.st_u.line.end_col_nr - l1.st_u.line.start_col_nr] = 0; in sort_compare()
365 return (int)(l1.lnum - l2.lnum); in sort_compare()