Searched refs:entry (Results 176 - 200 of 1421) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/binutils/bfd/
H A Dhash.c36 entry for it, and to traverse a hash table. There is
45 entry, because they were designed for use by the linker back
102 string in the hash table and to create a new entry.
118 If the @var{create} argument is <<TRUE>>, and a new entry is
137 hash table entry (a <<struct bfd_hash_entry *>>) and the
150 which each entry in the hash table. Some also find it
178 You must define a structure for an entry in the hash table,
181 The first field in the structure for an entry in the hash
182 table must be of the type used for an entry in the hash table
202 entry i
558 bfd_hash_newfunc(struct bfd_hash_entry *entry, struct bfd_hash_table *table, const char *string ATTRIBUTE_UNUSED) argument
649 strtab_hash_newfunc(struct bfd_hash_entry *entry, struct bfd_hash_table *table, const char *string) argument
743 struct strtab_hash_entry *entry; local
805 struct strtab_hash_entry *entry; local
[all...]
/freebsd-11-stable/sys/geom/part/
H A Dg_part_ebr.c248 struct g_part_ebr_entry *entry; local
255 entry = (struct g_part_ebr_entry *)baseentry;
261 bzero(&entry->ent, sizeof(entry->ent));
270 entry->ent.dp_start = basetable->gpt_sectors;
271 entry->ent.dp_size = size - basetable->gpt_sectors;
272 ebr_set_chs(basetable, entry->ent.dp_start, &entry->ent.dp_scyl,
273 &entry->ent.dp_shd, &entry
330 struct g_part_ebr_entry *entry; local
350 struct g_part_ebr_entry *entry; local
360 g_part_ebr_fullname(struct g_part_table *table, struct g_part_entry *entry, struct sbuf *sb, const char *pfx) argument
380 struct g_part_ebr_entry *entry; local
406 g_part_ebr_name(struct g_part_table *table, struct g_part_entry *entry, char *buf, size_t bufsz) argument
498 struct g_part_ebr_entry *entry; local
565 struct g_part_ebr_entry *entry; local
603 struct g_part_ebr_entry *entry; local
623 struct g_part_ebr_entry *entry; local
[all...]
/freebsd-11-stable/sys/contrib/ck/include/
H A Dck_fifo.h125 struct ck_fifo_spsc_entry *entry,
129 entry->value = value;
130 entry->next = NULL;
132 /* If stub->next is visible, guarantee that entry is consistent. */
134 ck_pr_store_ptr(&fifo->tail->next, entry);
135 fifo->tail = entry;
142 struct ck_fifo_spsc_entry *entry; local
145 * The head pointer is guaranteed to always point to a stub entry.
146 * If the stub entry does not point to an entry, the
124 ck_fifo_spsc_enqueue(struct ck_fifo_spsc *fifo, struct ck_fifo_spsc_entry *entry, void *value) argument
245 ck_fifo_mpmc_enqueue(struct ck_fifo_mpmc *fifo, struct ck_fifo_mpmc_entry *entry, void *value) argument
302 ck_fifo_mpmc_tryenqueue(struct ck_fifo_mpmc *fifo, struct ck_fifo_mpmc_entry *entry, void *value) argument
[all...]
/freebsd-11-stable/usr.sbin/mptutil/
H A Dmpt_evt.c58 mpt_print_event(MPI_LOG_0_ENTRY *entry, int verbose) argument
62 printf("%5d %7ds %4x ", entry->LogSequence, entry->TimeStamp,
63 entry->LogEntryQualifier);
65 printf("%02x ", entry->LogData[i]);
68 printf("%c", isprint(entry->LogData[i]) ? entry->LogData[i] :
73 printf("%02x ", entry->LogData[i + 14]);
76 printf("%c", isprint(entry->LogData[i + 14]) ?
77 entry
[all...]
/freebsd-11-stable/contrib/unbound/validator/
H A Dval_kcache.c95 slabhash_insert(kcache->slab, k->entry.hash, &k->entry,
96 k->entry.data, NULL);
100 * Lookup exactly in the key cache. Returns pointer to locked entry.
107 * @return key entry, locked, or NULL if not found. No TTL checking is
116 lookfor.entry.key = &lookfor;
121 e = slabhash_lookup(kcache->slab, lookfor.entry.hash, &lookfor, wr);
131 /* keep looking until we find a nonexpired entry */
138 k->entry.data;
143 lock_rw_unlock(&k->entry
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/lib/Core/
H A DReader.cpp73 KindEntry entry = { ns, arch, array }; local
74 _kindEntries.push_back(entry);
81 for (const KindEntry &entry : _kindEntries) {
82 for (const KindStrings *pair = entry.array; !pair->name.empty(); ++pair) {
85 ns = entry.ns;
86 arch = entry.arch;
98 for (const KindEntry &entry : _kindEntries) {
99 if (entry.ns != ns)
101 if (entry.arch != arch)
103 for (const KindStrings *pair = entry
[all...]
/freebsd-11-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_lock.c35 TAILQ_ENTRY(ww_mutex_thread) entry;
78 struct ww_mutex_thread entry; local
86 entry.thread = curthread;
87 entry.lock = lock;
88 TAILQ_INSERT_TAIL(&ww_mutex_head, &entry, entry);
95 TAILQ_FOREACH(other, &ww_mutex_head, entry) {
97 if (other == &entry)
124 TAILQ_REMOVE(&ww_mutex_head, &entry, entry);
[all...]
/freebsd-11-stable/sys/dev/drm/
H A Ddrm_bufs.c104 /*drm_agp_mem_t *entry;
209 /*for (entry = dev->agp->memory; entry; entry = entry->next) {
210 if ((map->offset >= entry->bound) &&
212 entry->bound + entry->pages * PAGE_SIZE)) {
385 drm_buf_entry_t *entry)
389 if (entry
384 drm_cleanup_buf_error(struct drm_device *dev, drm_buf_entry_t *entry) argument
411 drm_buf_entry_t *entry; local
547 drm_buf_entry_t *entry; local
692 drm_buf_entry_t *entry; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormattersContainer.h74 void Add(KeyType name, const ValueSP &entry) { argument
76 entry->GetRevision() = listener->GetCurrentRevision();
78 entry->GetRevision() = 0;
82 m_map.emplace_back(std::move(name), std::move(entry));
106 bool Get(const KeyType &name, ValueSP &entry) { argument
110 entry = pos.second;
175 void Add(MapKeyType type, const MapValueType &entry) { argument
176 Add_Impl(std::move(type), entry, static_cast<KeyType *>(nullptr)); local
183 bool Get(ValueObject &valobj, MapValueType &entry, argument
187 bool ret = Get(valobj, ast_type, entry, use_dynami
197 Get(ConstString type, MapValueType &entry) argument
201 GetExact(ConstString type, MapValueType &entry) argument
226 Add_Impl(MapKeyType type, const MapValueType &entry, RegularExpression *dummy) argument
228 m_format_map.Add(std::move(type), entry); local
231 Add_Impl(ConstString type, const MapValueType &entry, ConstString *dummy) argument
233 m_format_map.Add(GetValidTypeName_Impl(type), entry); local
255 Get_Impl(ConstString type, MapValueType &entry, ConstString *dummy) argument
259 GetExact_Impl(ConstString type, MapValueType &entry, ConstString *dummy) argument
311 Get(const FormattersMatchVector &candidates, MapValueType &entry, uint32_t *reason) argument
[all...]
/freebsd-11-stable/contrib/wpa/src/eap_server/
H A Deap_sim_db.c379 struct eap_sim_db_pending *entry, *prev = NULL; local
381 entry = data->pending;
382 while (entry) {
383 if (entry->aka == aka && os_strcmp(entry->imsi, imsi) == 0) {
385 prev->next = entry->next;
387 data->pending = entry->next;
390 prev = entry;
391 entry = entry
397 eap_sim_db_add_pending(struct eap_sim_db_data *data, struct eap_sim_db_pending *entry) argument
405 eap_sim_db_free_pending(struct eap_sim_db_data *data, struct eap_sim_db_pending *entry) argument
414 eap_sim_db_del_pending(struct eap_sim_db_data *data, struct eap_sim_db_pending *entry) argument
433 struct eap_sim_db_pending *entry = user_ctx; local
443 struct eap_sim_db_pending *entry = user_ctx; local
460 struct eap_sim_db_pending *entry; local
539 struct eap_sim_db_pending *entry; local
894 eap_sim_db_expire_pending(struct eap_sim_db_data *data, struct eap_sim_db_pending *entry) argument
930 struct eap_sim_db_pending *entry; local
1397 struct eap_sim_db_pending *entry; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DStackFrameRecognizer.cpp71 for (auto entry : m_recognizers) {
72 if (entry.is_regexp) {
73 callback(entry.recognizer_id, entry.recognizer->GetName(), entry.module_regexp->GetText(),
74 entry.symbol_regexp->GetText(), true);
76 callback(entry.recognizer_id, entry.recognizer->GetName(), entry.module.GetCString(),
77 entry
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dhash.c100 svn_hash__read_entry(svn_hash__entry_t *entry,
121 entry->key = NULL;
122 entry->keylen = 0;
123 entry->val = NULL;
124 entry->vallen = 0;
142 entry->keylen = (apr_size_t)ui64;
145 entry->key = apr_palloc(pool, entry->keylen + 1);
146 SVN_ERR(svn_stream_read_full(stream, entry->key, &entry
97 svn_hash__read_entry(svn_hash__entry_t *entry, svn_stream_t *stream, const char *terminator, svn_boolean_t incremental, apr_pool_t *pool) argument
225 svn_hash__entry_t entry; local
[all...]
/freebsd-11-stable/sys/dev/drm2/
H A Dati_pcigart.c61 struct drm_sg_mem *entry = dev->sg; local
69 if (!entry) {
78 pages = (entry->pages <= max_pages)
79 ? entry->pages : max_pages;
82 if (!entry->busaddr[i])
84 pci_unmap_page(dev->pdev, entry->busaddr[i],
105 struct drm_sg_mem *entry = dev->sg; local
113 if (!entry) {
150 pages = (entry->pages <= max_real_pages)
151 ? entry
[all...]
H A Ddrm_bufs.c117 struct drm_map_list *entry; local
118 list_for_each_entry(entry, &dev->maplist, head) {
127 if (!entry->map ||
128 map->type != entry->map->type ||
129 entry->master != dev->primary->master)
135 return entry;
138 if ((entry->map->offset & 0xffffffff) ==
140 return entry;
144 if (entry->map->offset == map->offset)
145 return entry;
340 struct drm_agp_mem *entry; local
647 drm_cleanup_buf_error(struct drm_device * dev, struct drm_buf_entry * entry) argument
688 struct drm_buf_entry *entry; local
858 struct drm_buf_entry *entry; local
1059 struct drm_buf_entry *entry; local
1215 struct drm_buf_entry *entry; local
1508 struct drm_buf_entry *entry; local
[all...]
/freebsd-11-stable/sys/dev/bhnd/bcma/
H A Dbcma_erom.c59 static const char *erom_entry_type_name (uint8_t entry);
60 static int erom_read32(struct bcma_erom *erom, uint32_t *entry);
96 /** Return the type name for an EROM entry */
98 erom_entry_type_name (uint8_t entry) argument
100 switch (BCMA_EROM_GET_ATTR(entry, ENTRY_TYPE)) {
131 * Read a 32-bit entry value from the EROM table without advancing the
135 * @param entry Will contain the read result on success.
141 bcma_erom_peek32(struct bcma_erom *erom, uint32_t *entry) argument
148 *entry = bus_read_4(erom->r, erom->start + erom->offset);
153 * Read a 32-bit entry valu
162 erom_read32(struct bcma_erom *erom, uint32_t *entry) argument
183 uint32_t entry; local
246 uint32_t entry; local
351 uint32_t entry; local
402 uint32_t entry; local
432 uint32_t entry; local
840 uint32_t entry; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DUniqueDWARFASTType.h63 void Append(const UniqueDWARFASTType &entry) { argument
64 m_collection.push_back(entry);
68 const int32_t byte_size, UniqueDWARFASTType &entry) const;
82 const UniqueDWARFASTType &entry) {
83 m_collection[name.GetCString()].Append(entry);
88 UniqueDWARFASTType &entry) const {
92 return pos->second.Find(die, decl, byte_size, entry);
81 Insert(lldb_private::ConstString name, const UniqueDWARFASTType &entry) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDYLDRendezvous.cpp264 LoadedModuleInfoList::LoadedModuleInfo const &modInfo, SOEntry &entry) {
274 entry.link_addr = link_map_addr;
275 entry.base_addr = base_addr;
276 entry.dyn_addr = dyn_addr;
278 entry.file_spec.SetFile(name, FileSpec::Style::native);
280 UpdateBaseAddrIfNecessary(entry, name);
283 entry.next = 0;
284 entry.prev = 0;
285 entry.path_addr = 0;
293 SOEntry entry; local
263 FillSOEntryFromModuleInfo( LoadedModuleInfoList::LoadedModuleInfo const &modInfo, SOEntry &entry) argument
320 SOEntry entry; local
349 SOEntry entry; local
369 SOEntry entry; local
414 SOEntryIsMainExecutable(const SOEntry &entry) argument
433 SOEntry entry; local
500 UpdateBaseAddrIfNecessary(SOEntry &entry, std::string const &file_path) argument
514 ReadSOEntryFromMemory(lldb::addr_t addr, SOEntry &entry) argument
[all...]
/freebsd-11-stable/usr.sbin/bhyve/
H A Dmem.c87 struct mmio_rb_range **entry)
96 *entry = res;
169 struct mmio_rb_range *entry; local
179 entry = mmio_hint[vcpu];
181 entry = NULL;
183 if (entry == NULL) {
184 if (mmio_rb_lookup(&mmio_rb_root, paddr, &entry) == 0) {
186 mmio_hint[vcpu] = entry;
187 } else if (mmio_rb_lookup(&mmio_rb_fallback, paddr, &entry)) {
194 assert(entry !
86 mmio_rb_lookup(struct mmio_rb_tree *rbt, uint64_t addr, struct mmio_rb_range **entry) argument
228 struct mmio_rb_range *entry, *mrp; local
272 struct mmio_rb_range *entry = NULL; local
[all...]
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dkeytab.c97 krb5_keytab_entry entry;
111 while((ret = krb5_kt_next_entry(context, keytab, &entry, &cursor)) == 0){
112 krb5_unparse_name(context, entry.principal, &principal);
115 krb5_kt_free_entry(context, &entry);
352 krb5_keytab_entry entry; local
363 ret = krb5_kt_get_entry (context, keytab, principal, vno, enctype, &entry);
367 ret = krb5_copy_keyblock (context, &entry.keyblock, key);
368 krb5_kt_free_entry(context, &entry);
508 * Match any aliases in keytab `entry' with `principal'.
513 krb5_keytab_entry *entry,
512 compare_aliseses(krb5_context context, krb5_keytab_entry *entry, krb5_const_principal principal) argument
542 krb5_kt_compare(krb5_context context, krb5_keytab_entry *entry, krb5_const_principal principal, krb5_kvno vno, krb5_enctype enctype) argument
609 krb5_kt_get_entry(krb5_context context, krb5_keytab id, krb5_const_principal principal, krb5_kvno kvno, krb5_enctype enctype, krb5_keytab_entry *entry) argument
706 krb5_kt_free_entry(krb5_context context, krb5_keytab_entry *entry) argument
757 krb5_kt_next_entry(krb5_context context, krb5_keytab id, krb5_keytab_entry *entry, krb5_kt_cursor *cursor) argument
811 krb5_kt_add_entry(krb5_context context, krb5_keytab id, krb5_keytab_entry *entry) argument
839 krb5_kt_remove_entry(krb5_context context, krb5_keytab id, krb5_keytab_entry *entry) argument
867 krb5_keytab_entry entry; local
[all...]
/freebsd-11-stable/crypto/heimdal/admin/
H A Dadd.c53 krb5_keytab_entry entry; local
60 memset(&entry, 0, sizeof(entry));
66 ret = krb5_parse_name(context, opt->principal_string, &entry.principal);
123 data, len, &entry.keyblock);
135 &entry.keyblock);
138 entry.principal, &entry.keyblock);
142 ret = krb5_generate_random_keyblock(context, enctype, &entry.keyblock);
148 entry
[all...]
H A Dpurge.c108 krb5_keytab_entry entry; local
128 while(krb5_kt_next_entry(context, keytab, &entry, &cursor) == 0) {
129 add_entry (entry.principal, entry.vno, entry.timestamp, &head);
130 krb5_kt_free_entry(context, &entry);
142 while(krb5_kt_next_entry(context, keytab, &entry, &cursor) == 0) {
143 struct e *e = get_entry (entry.principal, head);
146 krb5_warnx (context, "ignoring extra entry");
150 if (entry
[all...]
H A Dremove.c42 krb5_keytab_entry entry; local
81 entry.principal = principal;
82 entry.keyblock.keytype = enctype;
83 entry.vno = opt->kvno_integer;
84 ret = krb5_kt_remove_entry(context, keytab, &entry);
/freebsd-11-stable/contrib/subversion/subversion/libsvn_repos/
H A Dcompat.c56 /* User-provided callback to send the log entry to. */
121 svn_log_entry_t *entry = svn_log_entry_create(scratch_pool);
124 entry->changed_paths = b->changes;
125 entry->revision = log_entry->revision;
126 entry->revprops = log_entry->revprops;
127 entry->has_children = log_entry->has_children;
128 entry->changed_paths2 = b->changes;
129 entry->non_inheritable = log_entry->non_inheritable;
130 entry->subtractive_merge = log_entry->subtractive_merge;
133 SVN_ERR(b->inner(b->inner_baton, entry, scratch_poo
120 svn_log_entry_t *entry = svn_log_entry_create(scratch_pool); local
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dload-index.c37 const svn_fs_fs__p2l_entry_t *entry; local
41 entry = APR_ARRAY_IDX(entries, entries->nelts - 1,
43 return entry->offset + entry->size;
56 const svn_fs_fs__p2l_entry_t *entry local
59 if (entry->offset < expected)
66 if (entry->offset > expected)
73 expected = entry->offset + entry->size;
/freebsd-11-stable/sys/dev/acpica/
H A Dacpi_pcib.c63 typedef void prt_entry_handler(ACPI_PCI_ROUTING_TABLE *entry, void *arg);
65 static void prt_attach_devices(ACPI_PCI_ROUTING_TABLE *entry, void *arg);
66 static void prt_lookup_device(ACPI_PCI_ROUTING_TABLE *entry, void *arg);
73 ACPI_PCI_ROUTING_TABLE *entry; local
80 /* Walk the table executing the handler function for each entry. */
82 entry = (ACPI_PCI_ROUTING_TABLE *)prtptr;
83 while (entry->Length != 0) {
84 handler(entry, arg);
85 prtptr += entry->Length;
86 entry
91 prt_attach_devices(ACPI_PCI_ROUTING_TABLE *entry, void *arg) argument
156 prt_lookup_device(ACPI_PCI_ROUTING_TABLE *entry, void *arg) argument
[all...]

Completed in 300 milliseconds

1234567891011>>