Searched refs:entry (Results 1 - 25 of 1793) sorted by relevance

1234567891011>>

/openbsd-current/sys/dev/pci/drm/amd/amdkfd/
H A Dsoc15_int.h37 #define SOC15_CLIENT_ID_FROM_IH_ENTRY(entry) (le32_to_cpu(entry[0]) & 0xff)
38 #define SOC15_SOURCE_ID_FROM_IH_ENTRY(entry) (le32_to_cpu(entry[0]) >> 8 & 0xff)
39 #define SOC15_RING_ID_FROM_IH_ENTRY(entry) (le32_to_cpu(entry[0]) >> 16 & 0xff)
40 #define SOC15_VMID_FROM_IH_ENTRY(entry) (le32_to_cpu(entry[0]) >> 24 & 0xf)
41 #define SOC15_VMID_TYPE_FROM_IH_ENTRY(entry) (le32_to_cpu(entry[
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/Unicode-Collate/Collate/Locale/
H A Daf.pl3 entry => <<'ENTRY', # for DUCET v13.0.0
H A Des.pl3 entry => <<'ENTRY', # for DUCET v13.0.0
H A Dug_cyrl.pl3 entry => <<'ENTRY', # for DUCET v13.0.0
H A Dbe.pl3 entry => <<'ENTRY', # for DUCET v13.0.0
H A Dhe.pl3 entry => <<'ENTRY', # for DUCET v13.0.0
H A Dsr.pl4 entry => <<'ENTRY', # for DUCET v13.0.0
H A Dln.pl3 entry => <<'ENTRY', # for DUCET v13.0.0
/openbsd-current/lib/libexpat/tests/
H A Dmemcheck.c58 AllocationEntry *const entry local
61 if (entry == NULL) {
65 entry->num_bytes = size;
66 entry->allocation = malloc(size);
67 if (entry->allocation == NULL) {
68 free(entry);
71 entry->next = NULL;
75 entry->prev = NULL;
76 alloc_head = alloc_tail = entry;
78 entry
88 AllocationEntry *entry; local
101 AllocationEntry *entry; local
129 AllocationEntry *entry; local
180 AllocationEntry *entry; local
[all...]
/openbsd-current/sbin/pdisk/
H A Dpartition_map.c49 void combine_entry(struct entry *);
50 struct entry *create_entry(struct partition_map *, long, const char *,
52 void delete_entry(struct entry *);
53 void insert_in_base_order(struct entry *);
54 void insert_in_disk_order(struct entry *);
56 void remove_driver(struct entry *);
128 struct entry *entry; local
134 entry = LIST_FIRST(&map->disk_order);
135 LIST_REMOVE(entry, disk_entr
146 struct entry *entry; local
245 struct entry *entry; local
264 struct entry *entry; local
386 struct entry *entry; local
420 dpme_init_flags(struct entry *entry) argument
448 delete_partition_from_map(struct entry *entry) argument
484 contains_driver(struct entry *entry) argument
506 combine_entry(struct entry *entry) argument
570 delete_entry(struct entry *entry) argument
660 insert_in_disk_order(struct entry *entry) argument
686 insert_in_base_order(struct entry *entry) argument
716 struct entry *entry; local
768 remove_driver(struct entry *entry) argument
[all...]
H A Dfile_media.h36 int read_dpme(int, uint64_t, struct entry *);
37 int write_dpme(int, uint64_t, struct entry *);
H A Ddump.c43 void dump_partition_entry(struct entry *, int, int, int);
80 struct entry *entry; local
98 LIST_FOREACH(entry, &map->disk_order, disk_entry) {
99 dump_partition_entry(entry, max_type_length,
107 dump_partition_entry(struct entry *entry, int type_length, int name_length, argument
112 printf("%2ld: %*.32s", entry->disk_address, type_length,
113 entry->dpme_type);
114 printf("%c%-*.32s ", contains_driver(entry)
131 struct entry *entry; local
200 struct entry *entry; local
325 struct entry *entry; local
342 struct entry *entry; local
359 struct entry *entry; local
[all...]
/openbsd-current/sys/dev/pci/drm/
H A Ddrm_scatter.c46 static void drm_sg_cleanup(struct drm_sg_mem * entry) argument
51 for (i = 0; i < entry->pages; i++) {
52 page = entry->pagelist[i];
57 vfree(entry->virtual);
59 kfree(entry->busaddr);
60 kfree(entry->pagelist);
61 kfree(entry);
82 struct drm_sg_mem *entry; local
99 entry = kzalloc(sizeof(*entry), GFP_KERNE
201 struct drm_sg_mem *entry; local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D20000405-3.c2 void *entry[40]; member in struct:foo
7 ptr->entry[idx] = pointer;
/openbsd-current/sbin/isakmpd/
H A Dconstants.c40 struct constant_map *entry = map; local
42 for (entry = map; entry->name; entry++)
43 if (strcasecmp(entry->name, name) == 0)
44 return entry->value;
51 struct constant_map *entry = map; local
53 for (entry = map; entry->name; entry
62 struct constant_map *entry = map; local
[all...]
/openbsd-current/sys/dev/pci/drm/i915/
H A Di915_ioctl.c46 struct reg_whitelist const *entry; local
52 entry = reg_read_whitelist;
55 u32 entry_offset = i915_mmio_reg_offset(entry->offset_ldw);
57 GEM_BUG_ON(!is_power_of_2(entry->size));
58 GEM_BUG_ON(entry->size > 8);
59 GEM_BUG_ON(entry_offset & (entry->size - 1));
61 if (IS_GRAPHICS_VER(i915, entry->min_graphics_ver, entry->max_graphics_ver) &&
62 entry_offset == (reg->offset & -entry->size))
64 entry
[all...]
/openbsd-current/lib/csu/m88k/
H A Dmd_init.h24 #define MD_SECTION_PROLOGUE(section, entry) __asm ( \
26 "\t.globl\t" #entry "\n" \
27 "\t.type\t" #entry ",@function\n" \
29 #entry ":\n" \
/openbsd-current/lib/libfuse/
H A Dtree.c25 SPLAY_ENTRY(treeentry) entry;
32 SPLAY_PROTOTYPE(tree, treeentry, entry, treeentry_cmp);
46 struct treeentry *entry, key; local
49 if ((entry = SPLAY_FIND(tree, t, &key)) == NULL) {
50 entry = malloc(sizeof *entry);
51 if (entry == NULL)
53 entry->id = id;
54 SPLAY_INSERT(tree, t, entry);
57 entry
65 struct treeentry key, *entry; local
79 struct treeentry key, *entry; local
[all...]
/openbsd-current/sys/dev/usb/dwc2/
H A Dlist.h77 list_add_tail(struct list_head *entry, struct list_head *head) { argument
78 (entry)->prev = (head)->prev;
79 (entry)->next = head;
80 (head)->prev->next = entry;
81 (head)->prev = entry;
85 list_del(struct list_head *entry) { argument
86 (entry)->next->prev = (entry)->prev;
87 (entry)->prev->next = (entry)
104 list_del_init(struct list_head *entry) argument
[all...]
/openbsd-current/regress/lib/libc/glob/
H A Dglobtest.c31 struct gl_entry entry; local
50 memset(&entry, 0, sizeof(entry));
61 if (entry.pattern[0])
62 errors += test_glob(&entry);
64 /* start new entry */
66 errx(1, "invalid entry on line %d", lineno);
68 if (len >= sizeof(entry.pattern))
70 memcpy(entry.pattern, buf + 1, len);
71 entry
104 test_glob(struct gl_entry *entry) argument
[all...]
/openbsd-current/gnu/llvm/lldb/tools/debugserver/scripts/
H A Ddiagnose-termination.d1 fbt::exception_deliver:entry
8 syscall::kill:entry
14 syscall::__pthread_kill:entry
/openbsd-current/sys/dev/pci/drm/amd/pm/powerplay/hwmgr/
H A Dcommon_baco.c83 const struct baco_cmd_entry *entry,
89 if ((entry[i].cmd == CMD_WRITE) ||
90 (entry[i].cmd == CMD_READMODIFYWRITE) ||
91 (entry[i].cmd == CMD_WAITFOR))
92 reg = entry[i].reg_offset;
93 if (!baco_cmd_handler(hwmgr, entry[i].cmd, reg, entry[i].mask,
94 entry[i].shift, entry[i].val, entry[
82 baco_program_registers(struct pp_hwmgr *hwmgr, const struct baco_cmd_entry *entry, const u32 array_size) argument
101 soc15_baco_program_registers(struct pp_hwmgr *hwmgr, const struct soc15_baco_cmd_entry *entry, const u32 array_size) argument
[all...]
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dframe-unwind.c66 /* Find the end of the list and insert the new entry there. */
77 struct frame_unwind_table_entry *entry; local
79 /* Insert the new entry at the start of the list. */
80 entry = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct frame_unwind_table_entry);
81 entry->unwinder = unwinder;
82 entry->next = (*table->osabi_head);
83 (*table->osabi_head) = entry;
92 struct frame_unwind_table_entry *entry; local
93 for (entry = table->list; entry !
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g77.f-torture/noncompile/
H A D19990905-1.f6 entry y(a)
/openbsd-current/usr.sbin/smtpd/
H A Dtree.c28 SPLAY_ENTRY(treeentry) entry;
35 SPLAY_PROTOTYPE(_tree, treeentry, entry, treeentry_cmp);
49 struct treeentry *entry, key; local
53 if ((entry = SPLAY_FIND(_tree, &t->tree, &key)) == NULL) {
54 if ((entry = malloc(sizeof *entry)) == NULL)
56 entry->id = id;
57 SPLAY_INSERT(_tree, &t->tree, entry);
61 old = entry->data;
63 entry
71 struct treeentry *entry; local
85 struct treeentry key, *entry; local
97 struct treeentry key, *entry; local
109 struct treeentry key, *entry; local
127 struct treeentry key, *entry; local
145 struct treeentry *entry; local
164 struct treeentry *entry; local
233 struct treeentry *entry; local
[all...]

Completed in 325 milliseconds

1234567891011>>