Searched refs:entries (Results 1 - 25 of 1001) sorted by relevance

1234567891011>>

/netbsd-current/external/bsd/jemalloc/dist/test/unit/
H A Dqr.c5 /* Number of ring entries, in [2..26]. */
18 init_entries(ring_t *entries) { argument
22 qr_new(&entries[i], link);
23 entries[i].id = 'a' + i;
28 test_independent_entries(ring_t *entries) { argument
34 qr_foreach(t, &entries[i], link) {
43 qr_reverse_foreach(t, &entries[i], link) {
51 t = qr_next(&entries[i], link);
52 assert_ptr_eq(t, &entries[i],
57 t = qr_prev(&entries[
65 ring_t entries[NENTRIES]; local
73 test_entries_ring(ring_t *entries) argument
106 ring_t entries[NENTRIES]; local
118 ring_t entries[NENTRIES]; local
147 ring_t entries[NENTRIES]; local
185 test_split_entries(ring_t *entries) argument
207 ring_t entries[NENTRIES]; local
[all...]
H A Dql.c5 /* Number of ring entries, in [2..26]. */
47 init_entries(list_t *entries, unsigned nentries) { argument
51 entries[i].id = 'a' + i;
52 ql_elm_new(&entries[i], link);
57 test_entries_list(list_head_t *head, list_t *entries, unsigned nentries) { argument
61 assert_c_eq(ql_first(head)->id, entries[0].id, "Element id mismatch");
62 assert_c_eq(ql_last(head, link)->id, entries[nentries-1].id,
67 assert_c_eq(t->id, entries[i].id, "Element id mismatch");
73 assert_c_eq(t->id, entries[nentries-i-1].id,
79 t = ql_next(head, &entries[
94 list_t entries[NENTRIES]; local
109 list_t entries[NENTRIES]; local
128 list_t entries[NENTRIES]; local
143 list_t entries[NENTRIES]; local
162 list_t entries[8]; local
[all...]
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/gc/
H A Dregistry.d43 auto ptr = cast(Entry*)realloc(entries.ptr, (entries.length + 1) * Entry.sizeof);
44 entries = ptr[0 .. entries.length + 1];
45 entries[$ - 1] = Entry(name, factory);
60 foreach (entry; entries)
66 free(entries.ptr);
67 entries = null;
76 return entries;
87 __gshared Entry[] entries;
[all...]
/netbsd-current/external/bsd/libarchive/dist/libarchive/test/
H A Dtest_write_format_mtree_classic_indent.c37 } entries[] = { variable in typeref:struct:__anon231
128 /* Write entries */
129 for (i = 0; entries[i].path != NULL; i++) {
131 archive_entry_set_nlink(ae, entries[i].nlink);
132 assertEqualInt(entries[i].nlink, archive_entry_nlink(ae));
133 archive_entry_set_mtime(ae, entries[i].mtime, 0);
134 assertEqualInt(entries[i].mtime, archive_entry_mtime(ae));
135 archive_entry_set_mode(ae, entries[i].mode);
136 assertEqualInt(entries[i].mode, archive_entry_mode(ae));
137 archive_entry_set_uid(ae, entries[
[all...]
H A Dtest_write_format_mtree_classic.c37 } entries[] = { variable in typeref:struct:__anon230
126 /* Write entries */
127 for (i = 0; entries[i].path != NULL; i++) {
129 archive_entry_set_nlink(ae, entries[i].nlink);
130 assertEqualInt(entries[i].nlink, archive_entry_nlink(ae));
131 archive_entry_set_mtime(ae, entries[i].mtime, 0);
132 assertEqualInt(entries[i].mtime, archive_entry_mtime(ae));
133 archive_entry_set_mode(ae, entries[i].mode);
134 assertEqualInt(entries[i].mode, archive_entry_mode(ae));
135 archive_entry_set_uid(ae, entries[
[all...]
/netbsd-current/external/mit/isl/dist/
H A Disl_hash.c56 table->entries = isl_calloc_array(ctx, struct isl_hash_table_entry,
58 if (!table->entries)
74 * We reuse isl_hash_table_find to create entries in the extended table.
75 * Since all entries in the original table are assumed to be different,
82 struct isl_hash_table_entry *entries; local
85 entries = table->entries;
88 table->entries = isl_calloc_array(ctx, struct isl_hash_table_entry,
90 if (!table->entries) {
91 table->entries
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-mips-elf/
H A Dgot-page-1.d6 # There should be 10 page entries and 2 reserved entries
H A Dgot-page-2.d6 # There should be 10 page entries and 2 reserved entries
H A Dgot-dump-1.d10 Reserved entries:
15 Local entries:
20 Global entries:
/netbsd-current/sys/stand/efiboot/
H A Doverlay.c40 TAILQ_ENTRY(dtoverlay_entry) entries;
53 TAILQ_FOREACH(d, &dtoverlay_entries, entries) {
68 TAILQ_FOREACH(d, &dtoverlay_entries, entries) {
76 TAILQ_INSERT_TAIL(&dtoverlay_entries, d, entries);
89 TAILQ_FOREACH(d, &dtoverlay_entries, entries) {
91 TAILQ_REMOVE(&dtoverlay_entries, d, entries);
105 TAILQ_REMOVE(&dtoverlay_entries, d, entries);
H A Dmodule.c42 TAILQ_ENTRY(boot_module) entries;
90 TAILQ_FOREACH(bm, &boot_modules, entries) {
105 TAILQ_FOREACH(bm, &boot_modules, entries) {
115 TAILQ_INSERT_TAIL(&boot_modules, bm, entries);
127 TAILQ_FOREACH(bm, &boot_modules, entries) {
129 TAILQ_REMOVE(&boot_modules, bm, entries);
143 TAILQ_REMOVE(&boot_modules, bm, entries);
H A Duserconf.c38 TAILQ_ENTRY(userconf_command) entries;
48 TAILQ_FOREACH(uc, &userconf_commands, entries) {
80 TAILQ_INSERT_TAIL(&userconf_commands, uc, entries);
/netbsd-current/crypto/external/cpl/trousers/dist/src/include/
H A Dmemmgr.h29 struct memEntry *entries; member in struct:memTable
/netbsd-current/external/bsd/unbound/dist/contrib/
H A Dbuild-unbound-localzone-from-hosts.pl24 my @entries = split( /\s+/, $hostline );
29 foreach my $entry ( @entries ) {
/netbsd-current/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/
H A Dclb069.h8 __u32 entries; member in struct:nvif_clb069_v0
/netbsd-current/external/gpl3/gdb.old/dist/binutils/testsuite/binutils-all/
H A Dremove-relocs-01.d7 Relocation section '\.rela?\.data\.relocs\.02' at offset 0x[0-9a-f]+ contains 3 entries:
13 Relocation section '\.rela?\.data\.relocs\.03' at offset 0x[0-9a-f]+ contains 3 entries:
H A Dremove-relocs-05.d7 Relocation section '\.rela?\.data\.relocs\.02' at offset 0x[0-9a-f]+ contains 3 entries:
13 Relocation section '\.rela?\.data\.relocs\.03' at offset 0x[0-9a-f]+ contains 3 entries:
/netbsd-current/external/bsd/cron/dist/
H A Djob.c36 SIMPLEQ_ENTRY(_job) entries;
52 SIMPLEQ_FOREACH(j, &jobs, entries) {
68 SIMPLEQ_INSERT_TAIL(&jobs, j, entries);
76 SIMPLEQ_FOREACH(j, &jobs, entries) {
79 SIMPLEQ_REMOVE_HEAD(&jobs, entries);
81 SIMPLEQ_REMOVE_AFTER(&jobs, prev, entries);
95 SIMPLEQ_FOREACH(j, &jobs, entries) {
98 SIMPLEQ_REMOVE_HEAD(&jobs, entries);
100 SIMPLEQ_REMOVE_AFTER(&jobs, prev, entries);
115 SIMPLEQ_REMOVE_HEAD(&jobs, entries);
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-elf/
H A Dgroup3a.d5 Symbol table '.symtab' contains .* entries:
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-elfvsb/
H A Dhidden1.d5 Symbol table '.symtab' contains .* entries:
/netbsd-current/tests/include/sys/
H A Dt_list.c54 LIST_ENTRY(entry) entries;
62 LIST_INSERT_HEAD(&old_head, n1, entries);
66 LIST_INSERT_HEAD(&old_head, n2, entries);
68 LIST_MOVE(&old_head, &new_head, entries);
75 LIST_REMOVE(n3, entries);
79 LIST_REMOVE(LIST_FIRST(&new_head), entries); local
/netbsd-current/external/bsd/openldap/dist/contrib/ldapc++/examples/
H A DreadSchema.cpp30 LDAPSearchResults* entries = lc->search("", local
34 LDAPEntry* rootDse = entries->getNext();
44 entries = lc->search(schemabase, LDAPConnection::SEARCH_BASE, "(objectClass=*)",
46 if (entries != 0){
47 LDAPEntry* entry = entries->getNext();
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/roken/
H A Ddirent.c51 struct dirent **entries; member in struct:_dirent_dirinfo
138 dp->entries = calloc(dp->nc_entries, sizeof(dp->entries[0]));
140 if (dp->entries == NULL) {
154 ne = realloc(dp->entries, sizeof(dp->entries[0]) * dp->nc_entries);
162 dp->entries = ne;
175 dp->entries[dp->n_entries++] = e;
192 if (dp->entries) {
196 free(dp->entries[
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/mach-o/
H A Dsections-3.d9 first indirect sym: 0 \(0 entries\) stub size: (16|20) reserved3: 0x0
14 first indirect sym: 0 \(0 entries\) reserved2: 0x0 reserved3: 0x0
19 first indirect sym: 0 \(0 entries\) reserved2: 0x0 reserved3: 0x0
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-arm/
H A Dunwind-rel.d2 Relocation section '\.rel\.text' at offset .* contains 3 entries:
8 Relocation section '\.rel\.ARM\.exidx' at offset .* contains 5 entries:
16 Unwind section '\.ARM\.exidx' at offset .* contains 3 entries:

Completed in 339 milliseconds

1234567891011>>