Home
last modified time | relevance | path

Searched refs:entries (Results 76 – 100 of 1264) sorted by relevance

12345678910>>...51

/freebsd/stand/common/
H A Dpart.c78 STAILQ_HEAD(, pentry) entries;
343 STAILQ_INSERT_TAIL(&table->entries, entry, entry); in ptable_gptread()
388 STAILQ_FOREACH(e1, &table->entries, entry) { in ptable_ebrread()
547 STAILQ_INSERT_TAIL(&table->entries, entry, entry); in ptable_iso9660read()
585 STAILQ_INIT(&table->entries); in ptable_open()
693 while (!STAILQ_EMPTY(&table->entries)) { in ptable_close()
694 entry = STAILQ_FIRST(&table->entries); in ptable_close()
695 STAILQ_REMOVE_HEAD(&table->entries, entry); in ptable_close()
729 STAILQ_FOREACH(entry, &table->entries, entry) { in ptable_getpart()
767 STAILQ_FOREACH(entry, &table->entries, entry) { in ptable_getbestpart()
[all …]
/freebsd/sys/kern/
H A Dkern_ktr.c213 int entries, error; in sysctl_debug_ktr_entries() local
216 entries = ktr_entries; in sysctl_debug_ktr_entries()
217 error = sysctl_handle_int(oidp, &entries, 0, req); in sysctl_debug_ktr_entries()
220 if (entries > KTR_ENTRIES_MAX) in sysctl_debug_ktr_entries()
235 buf = malloc(sizeof(*buf) * entries, M_KTR, M_WAITOK | M_ZERO); in sysctl_debug_ktr_entries()
238 ktr_entries = entries; in sysctl_debug_ktr_entries()
247 SYSCTL_PROC(_debug_ktr, OID_AUTO, entries,
/freebsd/lib/libc/tests/nss/
H A Dtestutil.h31 STAILQ_ENTRY(ent##_entry) entries; \
103 STAILQ_INSERT_TAIL(&td->snapshot_data, e, entries); \
117 STAILQ_FOREACH(e, &td->snapshot_data, entries) { \
150 e1 = STAILQ_NEXT(e1, entries); \
151 e2 = STAILQ_NEXT(e2, entries); \
168 STAILQ_FOREACH(e, &td->snapshot_data, entries) { \
187 STAILQ_REMOVE_HEAD(&td->snapshot_data, entries); \
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/Mach-O-Fileset/
H A DObjectContainerMachOFileset.cpp138 std::vector<ObjectContainerMachOFileset::Entry> &entries, in ParseFileset() argument
163 entries.emplace_back(entry.vmaddr + slide, entry.fileoff, in ParseFileset()
175 lldb::offset_t file_offset, std::vector<Entry> &entries) { in ParseHeader() argument
190 return ParseFileset(data, *header, entries); in ParseHeader()
230 std::vector<Entry> entries; in GetModuleSpecifications() local
231 if (ParseHeader(data, file, file_offset, entries)) { in GetModuleSpecifications()
232 for (const Entry &entry : entries) { in GetModuleSpecifications()
/freebsd/usr.bin/finger/
H A Dfinger.c78 int entries, gflag, lflag, pplan, oflag; variable
197 if (entries == 0) in main()
209 if (entries) { in main()
357 if (*p || entries) in userlist()
363 if (entries == 0) in userlist()
/freebsd/sys/contrib/device-tree/Bindings/soc/qcom/
H A Dqcom,smp2p.yaml42 Three entries specifying the outgoing ipc bit used for signaling the
66 Each SMP2P pair contain a set of inbound and outbound entries, these are
83 The name of this entry, for inbound entries this will be used to
84 match against the remotely allocated entry and for outbound entries
85 this name is used for allocating entries.
91 Required for outgoing entries.
/freebsd/contrib/bsnmp/lib/
H A Dsnmpclient.c85 LIST_ENTRY(sent_pdu) entries;
163 d = &work->descr->entries[i]; in table_free()
216 switch (work->descr->entries[i].syntax) { in table_find()
260 work->descr->entries[i].offset) = ptr; in table_find()
297 work->descr->entries[i].offset)[j] = in table_find()
357 work->descr->entries[i].offset)); in table_find()
376 if (descr->entries[i].subid == in table_value()
385 descr->entries[i].syntax); in table_value()
1140 LIST_REMOVE(p1, entries); in snmp_close()
1291 LIST_REMOVE(listentry, entries); in snmp_timeout()
[all …]
/freebsd/usr.bin/tee/
H A Dtee.c50 STAILQ_ENTRY(entry) entries;
102 STAILQ_FOREACH(p, &head, entries) { in main()
145 STAILQ_INSERT_HEAD(&head, p, entries); in add()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_import/
H A Dzpool_import_status.ksh125 entries=$(kstat dbgmsg | grep "spa_import_progress_set_notes_impl(): 'testpool1'" | wc -l)
126 log_note "found $entries progress notes in dbgmsg"
127 log_must test $entries -gt 20
/freebsd/sys/contrib/ck/src/
H A Dck_ht.c91 struct ck_ht_entry *entries; member
138 ck_ht_map_create(struct ck_ht *table, CK_HT_TYPE entries) in ck_ht_map_create() argument
145 n_entries = ck_internal_power_2(entries); in ck_ht_map_create()
255 CK_HT_TYPE entries, in ck_ht_init() argument
272 table->map = ck_ht_map_create(table, entries); in ck_ht_init()
305 bucket = (void *)((uintptr_t)(map->entries + offset) & in ck_ht_map_probe_wr()
419 entry = &map->entries[(i + seed) & map->mask]; in ck_ht_gc()
520 bucket = (void *)((uintptr_t)(map->entries + offset) & in ck_ht_map_probe_rd()
620 key = map->entries[i->offset].key; in ck_ht_next()
628 *entry = map->entries + i->offset++; in ck_ht_next()
[all …]
H A Dck_hs.c94 const void **entries; member
118 value = CK_CC_DECONST_PTR(map->entries[i->offset]); in _ck_hs_next()
199 ck_hs_map_create(struct ck_hs *hs, unsigned long entries) in ck_hs_map_create() argument
204 n_entries = ck_internal_power_2(entries); in ck_hs_map_create()
236 map->entries = (void *)(((uintptr_t)&map[1] + prefix + in ck_hs_map_create()
239 memset(map->entries, 0, sizeof(void *) * n_entries); in ck_hs_map_create()
352 previous = map->entries[k]; in ck_hs_grow()
366 bucket = (const void **)((uintptr_t)&update->entries[offset] & ~(CK_MD_CACHELINE - 1)); in ck_hs_grow()
375 *cursor = map->entries[k]; in ck_hs_grow()
461 bucket = (const void **)((uintptr_t)&map->entries[offset] & ~(CK_MD_CACHELINE - 1)); in ck_hs_map_probe()
[all …]
/freebsd/usr.bin/truss/
H A Dsetup.c270 LIST_FOREACH(nt, &p->threadlist, entries) { in new_thread()
280 LIST_INSERT_HEAD(&p->threadlist, nt, entries); in new_thread()
288 LIST_REMOVE(t, entries); in free_thread()
329 LIST_FOREACH(np, &info->proclist, entries) { in new_proc()
343 LIST_INSERT_HEAD(&info->proclist, np, entries); in new_proc()
356 LIST_FOREACH_SAFE(t, &p->threadlist, entries, t2) { in free_proc()
359 LIST_REMOVE(p, entries); in free_proc()
368 LIST_FOREACH_SAFE(p, &info->proclist, entries, p2) { in detach_all_procs()
379 LIST_FOREACH(np, &info->proclist, entries) { in find_proc()
399 LIST_FOREACH(nt, &np->threadlist, entries) { in find_thread()
[all …]
/freebsd/lib/libsecureboot/
H A Dveopen.c38 LIST_ENTRY(fingerprint_info) entries;
142 LIST_INSERT_HEAD(&fi_list, nfip, entries); in fingerprint_info_add()
147 LIST_FOREACH(fip, &fi_list, entries) { in fingerprint_info_add()
149 LIST_INSERT_BEFORE(fip, nfip, entries); in fingerprint_info_add()
157 LIST_INSERT_AFTER(lfip, nfip, entries); in fingerprint_info_add()
256 LIST_FOREACH(fip, &fi_list, entries) { in fingerprint_info_lookup()
/freebsd/sys/arm/arm/
H A Dunwind.c360 state->entries--; in unwind_exec_read_byte()
377 if (state->entries == 0) in unwind_exec_insn()
459 state->entries = 0; in unwind_exec_insn()
528 state->entries = 1; in unwind_tab()
531 state->entries = ((*state->insn >> 16) & 0xFF) + 1; in unwind_tab()
539 while (state->entries > 0) { in unwind_tab()
/freebsd/sys/contrib/device-tree/Bindings/pci/
H A Dhisilicon-histb-pcie.txt14 - reg-names: Must include the following entries:
20 - interrupt-names: Must include "msi" entries.
23 - clock-name: Must include the following entries:
30 - reset-names: Must include the following entries:
/freebsd/sbin/ipfw/
H A Daltq.c107 TAILQ_INSERT_TAIL(&altq_entries, altq, entries); in altq_fetch()
118 TAILQ_FOREACH(altq, &altq_entries, entries) in altq_name_to_qid()
132 TAILQ_FOREACH(altq, &altq_entries, entries) in altq_qid_to_name()
/freebsd/lib/libc/stdlib/
H A Dhcreate_r.c45 hsearch->entries = calloc(16, sizeof(ENTRY)); in hcreate_r()
46 if (hsearch->entries == NULL) { in hcreate_r()
/freebsd/sys/netinet/cc/
H A Dcc.c176 STAILQ_FOREACH(funcs, &cc_list, entries) { in cc_default_algo()
206 STAILQ_FOREACH(algo, &cc_list, entries) { in cc_list_available()
223 STAILQ_FOREACH(algo, &cc_list, entries) { in cc_list_available()
290 STAILQ_FOREACH(funcs, &cc_list, entries) { in cc_deregister_algo_locked()
308 STAILQ_REMOVE(&cc_list, remove_cc, cc_algo, entries); in cc_deregister_algo_locked()
342 STAILQ_FOREACH(funcs, &cc_list, entries) { in cc_register_algo()
359 STAILQ_INSERT_TAIL(&cc_list, add_cc, entries); in cc_register_algo()
/freebsd/contrib/unbound/contrib/
H A Dbuild-unbound-localzone-from-hosts.pl24 my @entries = split( /\s+/, $hostline );
29 foreach my $entry ( @entries ) {
/freebsd/sys/contrib/dev/iwlwifi/pcie/
H A Dtx-gen2.c129 out_cmd = txq->entries[idx].cmd; in iwl_pcie_gen2_enqueue_hcmd()
130 out_meta = &txq->entries[idx].meta; in iwl_pcie_gen2_enqueue_hcmd()
239 if (WARN_ON_ONCE(txq->entries[idx].free_buf)) in iwl_pcie_gen2_enqueue_hcmd()
240 kfree_sensitive(txq->entries[idx].free_buf); in iwl_pcie_gen2_enqueue_hcmd()
241 txq->entries[idx].free_buf = dup_buf; in iwl_pcie_gen2_enqueue_hcmd()
/freebsd/sys/arm/ti/twl/
H A Dtwl_vreg.c213 LIST_ENTRY(twl_regulator_entry) entries;
689 LIST_FOREACH(regulator, &sc->sc_vreg_list, entries) { in twl_vreg_get_voltage()
729 LIST_FOREACH(regulator, &sc->sc_vreg_list, entries) { in twl_vreg_set_voltage()
765 LIST_FOREACH(regulator, &sc->sc_vreg_list, entries) { in twl_vreg_sysctl_voltage()
834 LIST_INSERT_HEAD(&sc->sc_vreg_list, new, entries); in twl_vreg_add_regulator()
897 LIST_FOREACH(entry, &sc->sc_vreg_list, entries) { in twl_vreg_add_regulators()
907 LIST_FOREACH(entry, &sc->sc_vreg_list, entries) { in twl_vreg_add_regulators()
998 LIST_FOREACH_SAFE(regulator, &sc->sc_vreg_list, entries, tmp) { in twl_vreg_detach()
999 LIST_REMOVE(regulator, entries); in twl_vreg_detach()
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Dnvidia,tegra30-ahub.txt10 - Tegra30 requires 2 entries, for the APBIF and AHUB/AUDIO register blocks.
15 - clock-names : Must include the following entries:
20 - reset-names : Must include the following entries:
49 - dma-names : Must include the following entries:
/freebsd/contrib/file/magic/Magdir/
H A Dkerberos16 # [${counter}--] in the offset of the entries
19 # - Provide a way to have optional entries
21 # - Provide a way to "save" entries to print them later.
/freebsd/sys/contrib/device-tree/Bindings/display/tegra/
H A Dnvidia,tegra20-host1x.txt20 - reset-names: Must include the following entries:
53 - reset-names: Must include the following entries:
75 - reset-names: Must include the following entries:
159 - reset-names: Must include the following entries:
180 - reset-names: Must include the following entries:
200 - reset-names: Must include the following entries:
219 - clock-names: Must include the following entries:
226 - reset-names: Must include the following entries:
248 - clock-names: Must include the following entries:
254 - reset-names: Must include the following entries:
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DSearchableTable.td39 // contains the name of enum entries.
45 // contains the numerical value of enum entries.
57 // entries of the table in C++.
63 // A field of FilterClass to filter out entries. This is an optional field
65 // records with this field being true will have corresponding entries in the
69 // Name of the C++ struct/class type that holds table entries. The
74 // table entries, in the order that is used for initialization in C++.

12345678910>>...51