Home
last modified time | relevance | path

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

/NextBSD/contrib/gperf/src/
HDhash-table.cc129 Hash_Table::equal (KeywordExt *item1, KeywordExt *item2) const in equal() argument
131 return item1->_selchars_length == item2->_selchars_length in equal()
132 && memcmp (item1->_selchars, item2->_selchars, in equal()
136 || item1->_allchars_length == item2->_allchars_length); in equal()
HDhash-table.h63 bool equal (KeywordExt *item1, KeywordExt *item2) const;
/NextBSD/contrib/subversion/subversion/libsvn_subr/
HDsorts.c114 const char *item1 = *((const char * const *) a); in svn_sort_compare_paths() local
117 return svn_path_compare_paths(item1, item2); in svn_sort_compare_paths()
124 const svn_merge_range_t *item1 = *((const svn_merge_range_t * const *) a); in svn_sort_compare_ranges() local
127 if (item1->start == item2->start in svn_sort_compare_ranges()
128 && item1->end == item2->end) in svn_sort_compare_ranges()
131 if (item1->start == item2->start) in svn_sort_compare_ranges()
132 return item1->end < item2->end ? -1 : 1; in svn_sort_compare_ranges()
134 return item1->start < item2->start ? -1 : 1; in svn_sort_compare_ranges()
/NextBSD/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()
/NextBSD/usr.bin/units/
HDunits.c85 static int compare(const void *item1, const void *item2);
422 compare(const void *item1, const void *item2) in compare() argument
424 return strcmp(*(const char * const *)item1, *(const char * const *)item2); in compare()
/NextBSD/contrib/subversion/subversion/libsvn_client/
HDpatch.c2215 const hunk_info_t *item1 = *((const hunk_info_t * const *)a); in sort_matched_hunks() local
2217 svn_boolean_t matched1 = !item1->rejected && !item1->already_applied; in sort_matched_hunks()
2224 if (item1->matched_line > item2->matched_line) in sort_matched_hunks()
2226 else if (item1->matched_line == item2->matched_line) in sort_matched_hunks()
2239 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()
/NextBSD/usr.sbin/bsdconfig/share/
HDdialog.subr871 # $tag1 $item1 $tag2 $item2 ...
964 # $tag1 $item1 $help1 $tag2 $item2 $help2 ...
1069 # $tag1 $item1 $status1 $tag2 $item2 $status2 ...
1165 # $tag1 $item1 $status1 $tag2 $item2 $status2 ...
1189 # $tag1 $item1 $status1 $help1 \
1305 # $tag1 $item1 $status1 $help1 \
1981 # f_dialog_menutag2item $tag_chosen $tag1 $item1 $tag2 $item2 ...
2014 # f_dialog_menutag2item_with_help $tag_chosen $tag1 $item1 $help1 \
2048 # f_dialog_menutag2index $tag_chosen $tag1 $item1 $tag2 $item2 ...
2082 # f_dialog_menutag2index_with_help $tag_chosen $tag1 $item1 $help1 \
[all …]
/NextBSD/contrib/subversion/subversion/libsvn_delta/
HDcompat.c1385 sort_deletes_first(const svn_sort__item_t *item1, in sort_deletes_first() argument
1388 const char *relpath1 = item1->key; in sort_deletes_first()
1390 const struct change_node *change1 = item1->value; in sort_deletes_first()