Home
last modified time | relevance | path

Searched refs:item2 (Results 1 – 11 of 11) sorted by relevance

/freebsd-10-stable/contrib/gperf/src/
Dhash-table.cc129 Hash_Table::equal (KeywordExt *item1, KeywordExt *item2) const in equal()
131 return item1->_selchars_length == item2->_selchars_length in equal()
132 && memcmp (item1->_selchars, item2->_selchars, in equal()
133 item2->_selchars_length * sizeof (unsigned int)) in equal()
136 || item1->_allchars_length == item2->_allchars_length); in equal()
Dhash-table.h63 bool equal (KeywordExt *item1, KeywordExt *item2) const;
/freebsd-10-stable/contrib/subversion/subversion/libsvn_subr/
Dsorts.c115 const char *item2 = *((const char * const *) b); in svn_sort_compare_paths() local
117 return svn_path_compare_paths(item1, item2); in svn_sort_compare_paths()
125 const svn_merge_range_t *item2 = *((const svn_merge_range_t * const *) b); 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()
/freebsd-10-stable/contrib/atf/atf-c/detail/
Dlist_test.c224 int item2 = 9; in ATF_TC_BODY() local
229 RE(atf_list_append(&l2, &item2, false)); in ATF_TC_BODY()
234 ATF_CHECK_EQ(*(int *)atf_list_index(&l1, 1), item2); in ATF_TC_BODY()
/freebsd-10-stable/usr.bin/units/
Dunits.c84 int compare(const void *item1, const void *item2);
407 compare(const void *item1, const void *item2) in compare() argument
409 return strcmp(*(const char * const *)item1, *(const char * const *)item2); in compare()
/freebsd-10-stable/contrib/subversion/subversion/libsvn_client/
Dpatch.c2215 const hunk_info_t *item2 = *((const hunk_info_t * const *)b); in sort_matched_hunks() local
2217 svn_boolean_t matched2 = !item2->rejected && !item2->already_applied; in sort_matched_hunks()
2223 if (item1->matched_line > item2->matched_line) in sort_matched_hunks()
2225 else if (item1->matched_line == item2->matched_line) in sort_matched_hunks()
2239 original2 = svn_diff_hunk_get_original_start(item2->hunk); in sort_matched_hunks()
Dcommit_util.c1389 const svn_client_commit_item3_t *item2 in sort_commit_item_urls() local
1391 return svn_path_compare_paths(item1->url, item2->url); in sort_commit_item_urls()
/freebsd-10-stable/usr.sbin/bsdconfig/share/
Ddialog.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 ...
1190 # $tag2 $item2 $status2 $help2 ...
1306 # $tag2 $item2 $status2 $help2 ...
1981 # f_dialog_menutag2item $tag_chosen $tag1 $item1 $tag2 $item2 ...
2015 # $tag2 $item2 $help2 ...
2048 # f_dialog_menutag2index $tag_chosen $tag1 $item1 $tag2 $item2 ...
2083 # $tag2 $item2 $help2 ...
[all …]
/freebsd-10-stable/contrib/subversion/subversion/libsvn_delta/
Dcompat.c1386 const svn_sort__item_t *item2) in sort_deletes_first() argument
1389 const char *relpath2 = item2->key; in sort_deletes_first()
1391 const struct change_node *change2 = item2->value; in sort_deletes_first()
/freebsd-10-stable/contrib/subversion/subversion/libsvn_wc/
Ddeprecated.c2391 svn_wc_external_item2_t *item2 = APR_ARRAY_IDX(list, i, in svn_wc_parse_externals_description2() local
2395 if (item2->target_dir) in svn_wc_parse_externals_description2()
2396 item->target_dir = apr_pstrdup(pool, item2->target_dir); in svn_wc_parse_externals_description2()
2397 if (item2->url) in svn_wc_parse_externals_description2()
2398 item->url = apr_pstrdup(pool, item2->url); in svn_wc_parse_externals_description2()
2399 item->revision = item2->revision; in svn_wc_parse_externals_description2()
/freebsd-10-stable/sbin/camcontrol/
Dcamcontrol.c7901 struct cam_devitem *item, *item2; in freebusdevlist() local
7903 STAILQ_FOREACH_SAFE(item, &devlist->dev_queue, links, item2) { in freebusdevlist()