Home
last modified time | relevance | path

Searched refs:item1 (Results 1 – 8 of 8) sorted by relevance

/freebsd-13-stable/contrib/subversion/subversion/libsvn_subr/
HDsorts.c116 const char *item1 = *((const char * const *) a); in svn_sort_compare_paths() local
119 return svn_path_compare_paths(item1, item2); in svn_sort_compare_paths()
126 const svn_merge_range_t *item1 = *((const svn_merge_range_t * const *) a); in svn_sort_compare_ranges() local
129 if (item1->start == item2->start in svn_sort_compare_ranges()
130 && item1->end == item2->end) in svn_sort_compare_ranges()
133 if (item1->start == item2->start) in svn_sort_compare_ranges()
134 return item1->end < item2->end ? -1 : 1; in svn_sort_compare_ranges()
136 return item1->start < item2->start ? -1 : 1; in svn_sort_compare_ranges()
/freebsd-13-stable/contrib/atf/atf-c/detail/
HDlist_test.c223 int item1 = 5; in ATF_TC_BODY() local
227 RE(atf_list_append(&l1, &item1, false)); in ATF_TC_BODY()
233 ATF_CHECK_EQ(*(int *)atf_list_index(&l1, 0), item1); in ATF_TC_BODY()
/freebsd-13-stable/contrib/ofed/opensm/opensm/
HDosm_ucast_dfsssp.c1883 cl_list_item_t *item1 = NULL, *item2 = NULL; in dfsssp_remove_deadlocks() local
1930 for (item1 = cl_qlist_head(port_tbl); item1 != cl_qlist_end(port_tbl); in dfsssp_remove_deadlocks()
1931 item1 = cl_qlist_next(item1)) { in dfsssp_remove_deadlocks()
1932 dest_port = (osm_port_t *)cl_item_obj(item1, dest_port, in dfsssp_remove_deadlocks()
1956 for (item1 = cl_qlist_head(port_tbl); item1 != cl_qlist_end(port_tbl); in dfsssp_remove_deadlocks()
1957 item1 = cl_qlist_next(item1)) { in dfsssp_remove_deadlocks()
1958 dest_port = (osm_port_t *)cl_item_obj(item1, dest_port, in dfsssp_remove_deadlocks()
1979 for (item1 = cl_qlist_head(port_tbl); item1 != cl_qlist_end(port_tbl); in dfsssp_remove_deadlocks()
1980 item1 = cl_qlist_next(item1)) { in dfsssp_remove_deadlocks()
1981 dest_port = (osm_port_t *)cl_item_obj(item1, dest_port, in dfsssp_remove_deadlocks()
/freebsd-13-stable/usr.bin/units/
HDunits.c81 static int compare(const void *item1, const void *item2);
423 compare(const void *item1, const void *item2) in compare() argument
425 return strcmp(*(const char * const *)item1, *(const char * const *)item2); in compare()
/freebsd-13-stable/usr.sbin/bsdconfig/share/
HDdialog.subr869 # $tag1 $item1 $tag2 $item2 ...
962 # $tag1 $item1 $help1 $tag2 $item2 $help2 ...
1067 # $tag1 $item1 $status1 $tag2 $item2 $status2 ...
1163 # $tag1 $item1 $status1 $tag2 $item2 $status2 ...
1187 # $tag1 $item1 $status1 $help1 \
1303 # $tag1 $item1 $status1 $help1 \
1979 # f_dialog_menutag2item $tag_chosen $tag1 $item1 $tag2 $item2 ...
2012 # f_dialog_menutag2item_with_help $tag_chosen $tag1 $item1 $help1 \
2046 # f_dialog_menutag2index $tag_chosen $tag1 $item1 $tag2 $item2 ...
2080 # f_dialog_menutag2index_with_help $tag_chosen $tag1 $item1 $help1 \
[all …]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_client/
HDpatch.c2478 const hunk_info_t *item1 = *((const hunk_info_t * const *)a); in sort_matched_hunks() local
2480 svn_boolean_t matched1 = !item1->rejected && !item1->already_applied; in sort_matched_hunks()
2487 if (item1->matched_line > item2->matched_line) in sort_matched_hunks()
2489 else if (item1->matched_line == item2->matched_line) in sort_matched_hunks()
2502 original1 = svn_diff_hunk_get_original_start(item1->hunk); in sort_matched_hunks()
HDcommit_util.c1387 const svn_client_commit_item3_t *item1 in sort_commit_item_urls() local
1391 return svn_path_compare_paths(item1->url, item2->url); in sort_commit_item_urls()
/freebsd-13-stable/contrib/subversion/subversion/libsvn_delta/
HDcompat.c1383 sort_deletes_first(const svn_sort__item_t *item1, in sort_deletes_first() argument
1386 const char *relpath1 = item1->key; in sort_deletes_first()
1388 const struct change_node *change1 = item1->value; in sort_deletes_first()