Searched refs:items (Results 51 - 75 of 175) sorted by relevance

1234567

/freebsd-current/contrib/tcsh/
H A Dtw.parse.c150 * > 1: No. of items found
270 Char *items[2], **ptr; local
385 items[0] = Strsave(qline.s + wordp);
386 items[1] = NULL;
387 cleanup_push(items[0], xfree);
388 ptr = items;
392 cleanup_until(items[0]);
393 if (ptr != items)
405 if (ptr != items)
412 if (ptr != items)
2133 find_rows(Char *items[], int count, int no_file_suffix) argument
2157 print_by_column(Char *dir, Char *items[], int count, int no_file_suffix) argument
[all...]
/freebsd-current/contrib/ncurses/menu/
H A Dm_item_cur.c96 returnItem((menu && menu->items) ? menu->curitem : (ITEM *)0);
H A Dm_pattern.c73 | E_NOT_CONNECTED - no items connected to menu
87 if (!(menu->items))
/freebsd-current/crypto/heimdal/lib/wind/
H A Dgen-combining.py51 for k,v in ud.items():
H A Dgen-normalize.py59 for k,v in ud.items() if v[4]])
138 for k,v in ud.items()
165 for k,v in inv.items():
/freebsd-current/sys/net/
H A Dmp_ring.h62 void * volatile items[] __aligned(CACHE_LINE_SIZE);
H A Dmp_ring.c154 * The acquire style atomic above guarantees visibility of items
164 * all items up to the pidx_tail in the state are visible.
237 * The acquire style atomic above guarantees visibility of items
260 r = malloc(__offsetof(struct ifmp_ring, items[size]), mt, flags | M_ZERO);
312 * Enqueue n items and maybe drain the ring for some time.
318 ifmp_ring_enqueue(struct ifmp_ring *r, void **items, int n, int budget, int abdicate) argument
324 MPASS(items != NULL);
329 * Reserve room for the new items. Our reservation, if successful, is
349 * items, one producer at a time. It is our turn when the ring's
360 r->items[
393 ifmp_ring_enqueue(struct ifmp_ring *r, void **items, int n, int budget, int abdicate) argument
[all...]
/freebsd-current/sys/dev/cxgbe/
H A Dt4_mp_ring.h58 void * volatile items[] __aligned(CACHE_LINE_SIZE);
/freebsd-current/tests/atf_python/
H A Datf_pytest.py109 for key, value in self._convert_marks(self.obj).items():
160 def _generate_test_cleanups(self, items):
162 for obj in items:
166 items.clear()
167 items.extend(new_items)
172 def modify_tests(self, items, config):
174 self._generate_test_cleanups(items)
298 return {k[len(px):]: v for k, v in os.environ.items() if k.startswith(px)}
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.h1078 item_t *items; member in class:kmp_hw_subset_t
1083 // Sorting the KMP_HW_SUBSET items to follow topology order
1109 retval->items = (item_t *)__kmp_allocate(sizeof(item_t) * initial_capacity);
1113 __kmp_free(subset->items);
1122 if (items[i].type == type) {
1123 int idx = items[i].num_attrs++;
1126 items[i].num[idx] = num;
1127 items[i].offset[idx] = offset;
1128 items[i].attr[idx] = attr;
1136 new_items[i] = items[
[all...]
/freebsd-current/sys/net80211/
H A Dieee80211_radiotap.c280 } items[] = { local
355 if (items[i].align == 0) {
360 off = roundup2(off, items[i].align);
362 if (off + items[i].width > le16toh(rh->it_len)) {
366 off, items[i].width, le16toh(rh->it_len));
371 off += items[i].width;
/freebsd-current/contrib/dialog/samples/
H A Dtreeview29 *--no-items*|*--noitem*)
/freebsd-current/contrib/dialog/
H A Ddialog.pl308 my ( $title, $message, $width, %items ) = @_;
313 foreach $ent ( sort keys(%items) ) {
315 $list[@list] = &quoted( $items{$ent} );
318 my $numitems = keys(%items);
426 my ( $title, $message, $width, %items ) = @_;
435 foreach $ent ( sort keys(%items) ) {
437 $list[@list] = &quoted( $items{$ent} );
441 my $numitems = keys(%items);
H A Dmixedgauge.c30 #define ItemData(i) &items[LLEN(i)]
31 #define ItemName(i) items[LLEN(i)]
32 #define ItemText(i) items[LLEN(i) + 1]
268 char **items)
388 char **items)
400 /* FIXME dump the items[][] too */
403 width, item_no, items);
261 dlg_begin_mixedgauge(DIALOG_MIXEDGAUGE * dlg, int *began, const char *aTitle, const char *aPrompt, int aHeight, int aWidth, int aItemNo, char **items) argument
382 dialog_mixedgauge(const char *title, const char *cprompt, int height, int width, int percent, int item_no, char **items) argument
/freebsd-current/contrib/wpa/wpa_supplicant/dbus/
H A Ddbus_dict_helpers.h96 const char **items,
101 const struct wpabuf **items,
/freebsd-current/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzmod.c38 zfs_zcalloc(void *opaque, uint_t items, uint_t size) argument
42 ptr = malloc((size_t)items * size, M_SOLARIS, M_NOWAIT);
/freebsd-current/usr.sbin/nscd/
H A Dcachelib.h39 CTT_FLUSH = 0, /* flush the cache - delete all obsolete items */
40 CTT_CLEAR = 1 /* delete all items in the cache */
136 HASHTABLE_HEAD(cache_ht_, cache_ht_item_) items; member in struct:cache_common_entry_
162 * All items are accumulated in this queue. When the session is
165 TAILQ_HEAD(cache_mp_data_item_head, cache_mp_data_item_) items; member in struct:cache_mp_write_session_
H A Dcachelib.c193 while (!TAILQ_EMPTY(&ws->items)) {
194 data_item = TAILQ_FIRST(&ws->items);
195 TAILQ_REMOVE(&ws->items, data_item, entries);
230 HASHTABLE_FOREACH(&(common_entry->items), ht_item) {
239 HASHTABLE_DESTROY(&(common_entry->items), data);
299 HASHTABLE_FOREACH(&(common_entry->items), ht_item) {
396 hash = HASHTABLE_CALCULATE_HASH(cache_ht_, &entry->items,
398 assert(hash < HASHTABLE_ENTRIES_COUNT(&entry->items));
400 ht_item = HASHTABLE_GET_ENTRY(&(entry->items), hash);
574 HASHTABLE_INIT(&(new_common_entry->items),
[all...]
/freebsd-current/contrib/dialog/samples/install/
H A Dsetup.c162 char *items[MAX_PARTS * 2]; local
168 items[num * 2] = partitions[i].name;
171 items[num * 2 + 1] = info[num];
176 ret = dialog_menu(title, prompt, y + num, x, num, num, items);
/freebsd-current/tools/regression/netinet/ip_id_period/
H A Dip_id_period.py61 sorted_minperiod = list(zip(*reversed(list(zip(*list(id_minperiod.items()))))))
/freebsd-current/contrib/bsddialog/examples_library/
H A Dmixedlist.c65 item = group[i].items[j];
/freebsd-current/crypto/openssl/util/
H A Dmknum.pl50 $ordinals->items(comparator => sub { $_[0] cmp $_[1] },
97 $ordinals->items(comparator => sub { $_[0] cmp $_[1] },
/freebsd-current/crypto/openssl/util/perl/OpenSSL/
H A DUtil.pm254 # Indentation of individual items, where applicable
267 my @items; # Items to iterate over
279 @items = @$ref;
291 @items = sort keys %$ref;
300 $delim_l . join($separator, map { &$product } @items) . $delim_r;
/freebsd-current/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeCategory.h333 void Clear(FormatCategoryItems items = ALL_ITEM_TYPES);
335 bool Delete(ConstString name, FormatCategoryItems items = ALL_ITEM_TYPES);
337 uint32_t GetCount(FormatCategoryItems items = ALL_ITEM_TYPES);
350 FormatCategoryItems items = ALL_ITEM_TYPES,
355 void AutoComplete(CompletionRequest &request, FormatCategoryItems items);
/freebsd-current/contrib/ntp/ntpd/
H A Dntp_request.c374 DPRINTF(3, ("request: flushing packet, %d items\n", nitems));
804 u_short items; local
815 items = INFO_NITEMS(inpkt->err_nitems);
824 while (items-- > 0 && ip != NULL) {
948 u_short items; local
957 items = INFO_NITEMS(inpkt->err_nitems);
966 while (items-- > 0 && ip != NULL) {
1292 u_short items; local
1304 items = INFO_NITEMS(inpkt->err_nitems);
1312 while (items
1404 u_short items; local
1788 u_short items; local
1970 u_short items; local
2107 register int items; local
2504 register int items; local
2578 register int items; local
2652 register int items; local
[all...]

Completed in 322 milliseconds

1234567