Searched refs:entry (Results 151 - 175 of 3165) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gdb/dist/gdb/regformats/
H A Dregdat.sh22 read="type entry"
27 entry=""
126 name="${entry}"
142 xmltarget="${entry}"
145 xmlarch="${entry}"
148 xmlosabi="${entry}"
151 expedite="${entry}"
154 feature="${entry}"
160 echo " tdesc_create_reg (feature, \"${entry}\","
/netbsd-current/sys/arch/ia64/ia64/
H A Dpal.S46 entry = loc1 define
55 movl entry=@gprel(ia64_pal_entry)
58 add entry=entry,gp
62 ld8 entry=[entry] // read entry point
67 mov b6=entry
93 entry = loc1 define
102 movl entry
144 entry = loc0 define
187 entry = loc0 define
[all...]
/netbsd-current/lib/libc/posix1e/
H A Dacl_branding.c56 entry2acl(acl_entry_t entry) argument
60 aclp = (acl_t)(((unsigned long)entry >> _ACL_T_ALIGNMENT_BITS) << _ACL_T_ALIGNMENT_BITS);
76 _entry_brand(const acl_entry_t entry) argument
79 return (_acl_brand(entry2acl(entry)));
99 _entry_brand_may_be(const acl_entry_t entry, int brand) argument
102 return (_acl_brand_may_be(entry2acl(entry), brand));
118 _entry_brand_as(const acl_entry_t entry, int brand) argument
121 _acl_brand_as(entry2acl(entry), brand);
H A Dacl_from_text.c84 _posix1e_acl_entry_from_text(acl_t aclp, char *entry) argument
95 tag = strsep(&entry, ":");
101 if ((*tag == '\0') && (!entry)) {
110 qualifier = strsep(&entry, ":");
118 permission = strsep(&entry, ":");
119 if (permission == NULL || entry) {
170 _text_is_nfs4_entry(const char *entry) argument
174 assert(strlen(entry) > 0);
176 while (*entry != '\0') {
177 if (*entry
197 char *mybuf_p, *line, *cur, *notcomment, *comment, *entry; local
[all...]
/netbsd-current/sys/arch/zaurus/stand/zboot/
H A Dbootinfo.c41 btinfo = (struct btinfo_common *)(bootinfo->entry[i]);
62 bootinfo->entry[idx] = (u_long)what;
76 bootinfo->entry[i - 1] = bootinfo->entry[i];
78 bootinfo->entry[--bootinfo->nentries] = 0L;
/netbsd-current/external/bsd/openldap/dist/contrib/ldapc++/src/
H A DLDAPSearchResult.cpp20 entry = new LDAPEntry(req->getConnection(), msg);
40 entry = new LDAPEntry(*(res.entry));
45 delete entry;
50 return entry;
/netbsd-current/external/ibm-public/postfix/dist/src/oqmgr/
H A Dqmgr_entry.c15 /* void qmgr_entry_done(entry, which)
16 /* QMGR_ENTRY *entry;
22 /* void qmgr_entry_unselect(queue, entry)
24 /* QMGR_ENTRY *entry;
26 /* void qmgr_entry_move_todo(dst, entry)
28 /* QMGR_ENTRY *entry;
33 /* qmgr_entry_create() creates an entry for the named queue and
34 /* message, and appends the entry to the queue's todo list.
38 /* qmgr_entry_done() discards a per-site queue entry. The
39 /* \fIwhich\fR argument is either QMGR_QUEUE_BUSY for an entry
107 QMGR_ENTRY *entry; local
172 qmgr_entry_unselect(QMGR_QUEUE *queue, QMGR_ENTRY *entry) argument
182 qmgr_entry_move_todo(QMGR_QUEUE *dst, QMGR_ENTRY *entry) argument
214 qmgr_entry_done(QMGR_ENTRY *entry, int which) argument
308 QMGR_ENTRY *entry; local
[all...]
/netbsd-current/external/bsd/ipf/dist/lib/
H A Dprintdstl_live.c26 ipf_dstnode_t *entry, *zero; local
34 entry = calloc(1, sizeof(*entry) + 64);
35 if (entry == NULL)
39 free(entry);
57 iter.ili_data = entry;
68 if (entry->ipfd_next == NULL)
70 if (bcmp((char *)zero, (char *)entry, sizeof(*zero)) == 0)
72 (void) printdstlistnode(entry, bcopywrap, opts, fields);
77 free(entry);
[all...]
/netbsd-current/sys/external/bsd/drm2/dist/drm/
H A Ddrm_agpsupport.c217 * memory via agp_allocate_memory() and creates a drm_agp_mem entry for it.
221 struct drm_agp_mem *entry; local
228 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
229 if (!entry)
236 kfree(entry);
242 entry->handle = (unsigned long)memory->am_id + 1;
244 entry->handle = (unsigned long)memory->key + 1;
246 entry->memory = memory;
247 entry
287 struct drm_agp_mem *entry; local
310 struct drm_agp_mem *entry; local
353 struct drm_agp_mem *entry; local
403 struct drm_agp_mem *entry; local
503 struct drm_agp_mem *entry, *tempe; local
[all...]
H A Ddrm_hashtab.c70 struct drm_hash_item *entry; local
78 hlist_for_each_entry(entry, h_list, head)
79 DRM_DEBUG("count %d, key: 0x%08lx\n", count++, entry->key);
85 struct drm_hash_item *entry; local
91 hlist_for_each_entry(entry, h_list, head) {
92 if (entry->key == key)
93 return &entry->head;
94 if (entry->key > key)
103 struct drm_hash_item *entry; local
109 hlist_for_each_entry_rcu(entry, h_lis
120 struct drm_hash_item *entry; local
[all...]
/netbsd-current/external/bsd/wpa/dist/src/radius/
H A Dradius_client.c31 * Maximum number of server failovers before the entry is removed from
366 struct radius_msg_list *entry,
377 if (entry->msg_type == RADIUS_ACCT ||
378 entry->msg_type == RADIUS_ACCT_INTERIM) {
389 if (entry->attempts == 0)
406 if (entry->attempts == 0)
414 if (entry->msg_type == RADIUS_ACCT_INTERIM) {
418 MAC2STR(entry->addr));
420 radius->interim_error_cb(entry->addr,
431 if (entry
365 radius_client_retransmit(struct radius_client_data *radius, struct radius_msg_list *entry, os_time_t now) argument
495 struct radius_msg_list *entry, *prev, *tmp; local
581 struct radius_msg_list *entry; local
610 struct radius_msg_list *entry; local
640 struct radius_msg_list *entry; local
671 struct radius_msg_list *entry, *prev; local
970 struct radius_msg_list *entry, *prev, *_remove; local
1010 struct radius_msg_list *entry, *prev, *tmp; local
1044 struct radius_msg_list *entry; local
1074 struct radius_msg_list *entry; local
1525 struct radius_msg_list *entry, *prev, *tmp; local
[all...]
/netbsd-current/external/bsd/pkg_install/dist/create/
H A Dbuild.c100 struct archive_entry *entry; local
102 entry = archive_entry_new();
103 archive_entry_set_pathname(entry, file->name);
104 archive_entry_copy_stat(entry, &file->st);
106 archive_entry_set_uname(entry, file->owner);
107 archive_entry_set_gname(entry, file->group);
109 if (archive_write_header(archive, entry))
114 archive_entry_free(entry);
118 write_entry(struct archive *archive, struct archive_entry *entry) argument
126 if (archive_entry_pathname(entry)
175 struct archive_entry *entry, *sparse_entry; local
230 struct archive_entry *entry, *sparse_entry; local
[all...]
/netbsd-current/external/bsd/openldap/dist/tests/progs/
H A Dslapd-modrdn.c48 char *entry, int friendly );
59 "-e <entry> "
69 char *entry = NULL; local
86 case 'e': /* entry to rename */
87 entry = optarg;
99 if ( entry == NULL )
102 if ( *entry == '\0' ) {
104 fprintf( stderr, "%s: invalid EMPTY entry DN.\n",
113 do_modrdn( config, entry, friendly );
122 char *entry, in
121 do_modrdn( struct tester_conn_args *config, char *entry, int friendly ) argument
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dipa-inline.h75 edge_growth_cache_entry *entry; local
77 || (entry = edge_growth_cache->get (edge)) == NULL
78 || entry->size == 0)
80 return entry->size - (entry->size > 0);
109 edge_growth_cache_entry *entry; local
111 || (entry = edge_growth_cache->get (edge)) == NULL
112 || entry->time == 0)
116 return entry->time;
126 edge_growth_cache_entry *entry; local
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gold/testsuite/
H A Dplugin_new_section_layout.c54 /* Plugin entry point. */
58 struct ld_plugin_tv *entry; local
59 for (entry = tv; entry->tv_tag != LDPT_NULL; ++entry)
61 switch (entry->tv_tag)
64 get_input_section_count = *entry->tv_u.tv_get_input_section_count;
67 get_input_section_type = *entry->tv_u.tv_get_input_section_type;
70 get_input_section_name = *entry->tv_u.tv_get_input_section_name;
73 update_section_order = *entry
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dipa-inline.h75 edge_growth_cache_entry *entry; local
77 || (entry = edge_growth_cache->get (edge)) == NULL
78 || entry->size == 0)
80 return entry->size - (entry->size > 0);
109 edge_growth_cache_entry *entry; local
111 || (entry = edge_growth_cache->get (edge)) == NULL
112 || entry->time == 0)
116 return entry->time;
126 edge_growth_cache_entry *entry; local
[all...]
/netbsd-current/external/bsd/wpa/dist/wpa_supplicant/dbus/
H A Ddbus_new_handlers_p2p.c32 static int wpas_dbus_validate_dbus_ipaddr(struct wpa_dbus_dict_entry entry) argument
34 if (entry.type != DBUS_TYPE_ARRAY ||
35 entry.array_type != DBUS_TYPE_BYTE ||
36 entry.array_len != 4)
84 struct wpa_dbus_dict_entry entry; local
96 entry.key = NULL;
102 if (!wpa_dbus_dict_get_entry(&iter_dict, &entry))
105 if (os_strcmp(entry.key, "Timeout") == 0 &&
106 entry.type == DBUS_TYPE_INT32) {
107 timeout = entry
222 struct wpa_dbus_dict_entry entry; local
266 struct wpa_dbus_dict_entry entry; local
317 struct wpa_dbus_dict_entry entry; local
446 struct wpa_dbus_dict_entry entry; local
523 struct wpa_dbus_dict_entry entry; local
691 struct wpa_dbus_dict_entry entry; local
983 struct wpa_dbus_dict_entry entry = {.type = DBUS_TYPE_STRING }; local
2462 struct wpa_dbus_dict_entry entry = { .type = DBUS_TYPE_STRING }; local
2598 struct wpa_dbus_dict_entry entry; local
2683 struct wpa_dbus_dict_entry entry; local
2771 struct wpa_dbus_dict_entry entry; local
2865 struct wpa_dbus_dict_entry entry; local
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/spu/
H A Dcachemgr.c109 __cache_evict_entry (struct __cache_tag_array *entry, int way) argument
111 addr tag = GET_TAG (entry, way);
113 if (CHECK_DIRTY (entry->dirty_bits[way]) && !CHECK_IS_LS (entry, way))
125 line = GET_CACHE_LINE (entry->tag_lo[way], way);
143 qword *line = GET_CACHE_LINE (entry->tag_lo[way], way);
166 bits = (qword) entry->dirty_bits[way];
202 SET_EMPTY (entry, way);
203 entry->dirty_bits[way] = (vector unsigned short) si_from_uint (0);
210 struct __cache_tag_array *entry local
253 __cache_miss(__ea void *ea, struct __cache_tag_array *entry, int way) argument
310 struct __cache_tag_array *entry; local
424 struct __cache_tag_array *entry = __cache_tag_array; local
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/sim/igen/
H A Dld-decode.c93 table_entry *entry; local
96 while ((entry = table_read (file)) != NULL)
98 char *decode_options = entry->field[decode_options_field];
100 if (entry->nr_fields < min_nr_decode_fields)
101 error (entry->line, "Missing decode table fields\n");
102 new_rule->line = entry->line;
143 if (entry->nr_fields > decode_first_field
144 && strlen (entry->field[decode_first_field]) > 0)
147 entry->field[decode_first_field]);
153 if (entry
225 decode_path *entry = ZALLOC (decode_path); local
291 decode_table_max_word_nr(decode_table *entry) argument
[all...]
H A Dgen.c41 update_depth (lf *file, gen_entry *entry, int depth, void *data) argument
425 /* create a new list entry and insert it */
461 gen_entry *entry; local
474 for (entry = table->entries; entry != NULL; entry = entry->sibling)
476 if (entry->entries != NULL && depth != 0)
478 gen_entry_traverse_tree (file, entry, depth + 1,
485 leaf (file, entry, dept
504 gen_list *entry = ZALLOC (gen_list); local
565 insn_list *entry; local
798 gen_entry **entry = &table->entries; local
1071 gen_entry *entry = table; local
1278 insn_list *entry; local
1294 gen_entry *entry; local
1310 gen_entry *entry; local
1332 gen_entry *entry; local
1371 gen_entry *entry; local
1397 gen_entry **entry = &table->entries; local
1432 gen_entry *entry; local
1446 gen_list *entry; local
1459 make_gen_semantics_list(lf *file, gen_entry *entry, int depth, void *data) argument
1488 gen_list *entry; local
1546 dump_insn_list(lf *file, char *prefix, insn_list *entry, char *suffix) argument
1562 dump_insn_word_entry_list_entries(lf *file, char *prefix, insn_list *entry, char *suffix) argument
1607 dump_gen_list(lf *file, char *prefix, gen_list *entry, char *suffix, int levels) argument
[all...]
/netbsd-current/external/gpl3/gdb/dist/sim/igen/
H A Dld-decode.c89 table_entry *entry; local
92 while ((entry = table_read (file)) != NULL)
94 char *decode_options = entry->field[decode_options_field];
96 if (entry->nr_fields < min_nr_decode_fields)
97 error (entry->line, "Missing decode table fields\n");
98 new_rule->line = entry->line;
141 if (entry->nr_fields > decode_first_field
142 && strlen (entry->field[decode_first_field]) > 0)
145 entry->field[decode_first_field]);
151 if (entry
223 decode_path *entry = ZALLOC (decode_path); local
289 decode_table_max_word_nr(const decode_table *entry) argument
[all...]
H A Dgen.c41 update_depth (lf *file, const gen_entry *entry, int depth, void *data) argument
428 /* create a new list entry and insert it */
464 gen_entry *entry; local
477 for (entry = table->entries; entry != NULL; entry = entry->sibling)
479 if (entry->entries != NULL && depth != 0)
481 gen_entry_traverse_tree (file, entry, depth + 1,
488 leaf (file, entry, dept
509 gen_list *entry = ZALLOC (gen_list); local
570 const insn_list *entry; local
803 gen_entry **entry = &table->entries; local
1076 gen_entry *entry = table; local
1283 insn_list *entry; local
1299 gen_entry *entry; local
1315 gen_entry *entry; local
1337 gen_entry *entry; local
1376 gen_entry *entry; local
1402 gen_entry **entry = &table->entries; local
1437 gen_entry *entry; local
1451 gen_list *entry; local
1464 make_gen_semantics_list(lf *file, const gen_entry *entry, int depth, void *data) argument
1493 gen_list *entry; local
1551 dump_insn_list(lf *file, char *prefix, insn_list *entry, char *suffix) argument
1567 dump_insn_word_entry_list_entries(lf *file, char *prefix, insn_list *entry, char *suffix) argument
1612 dump_gen_list(lf *file, char *prefix, gen_list *entry, char *suffix, int levels) argument
[all...]
/netbsd-current/external/gpl3/binutils.old/dist/gprofng/src/
H A DStringMap.h89 Entry *entry = index->fetch (i); local
90 free (entry->key);
105 Entry *entry = index->fetch (i); local
106 free (entry->key);
119 Entry *entry = hashTable[idx]; local
120 if (entry && strcmp (entry->key, key) == 0)
122 entry->val = val;
130 entry = index->fetch (md);
131 int cmp = strcmp (entry
169 Entry *entry = hashTable[idx]; local
219 Entry *entry = index->fetch (i); local
232 Entry *entry = index->fetch (i); local
[all...]
/netbsd-current/external/gpl3/binutils/dist/gprofng/src/
H A DStringMap.h89 Entry *entry = index->fetch (i); local
90 free (entry->key);
105 Entry *entry = index->fetch (i); local
106 free (entry->key);
119 Entry *entry = hashTable[idx]; local
120 if (entry && strcmp (entry->key, key) == 0)
122 entry->val = val;
130 entry = index->fetch (md);
131 int cmp = strcmp (entry
169 Entry *entry = hashTable[idx]; local
219 Entry *entry = index->fetch (i); local
232 Entry *entry = index->fetch (i); local
[all...]
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_procmaps_fuchsia.cpp57 const auto &entry = data_.data[data_.current++]; local
58 if (entry.type == ZX_INFO_MAPS_TYPE_MAPPING) {
59 segment->start = entry.base;
60 segment->end = entry.base + entry.size;
61 segment->offset = entry.u.mapping.vmo_offset;
62 const auto flags = entry.u.mapping.mmu_flags;
68 uptr len = Min(sizeof(entry.name), segment->filename_size) - 1;
69 internal_strncpy(segment->filename, entry.name, len);

Completed in 193 milliseconds

1234567891011>>