Searched refs:dl (Results 1 - 25 of 583) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/
H A Dpowerpc-d128-regs.c22 _Decimal128 d128 = 1.2345678910dl;
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
H A Dpowerpc-d128-regs.c22 _Decimal128 d128 = 1.2345678910dl;
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-elf/
H A Dpr21964-2c.c8 void *dl; local
15 dl = dlopen("pr21964-2b.so", RTLD_LAZY);
16 if (!dl)
19 sym = dlsym(dl, "__start___verbose");
23 func = dlsym(dl, "foo2");
29 dlclose(dl);
/netbsd-current/common/lib/libc/arch/x86_64/string/
H A Dstrcpy.S38 movb (%rsi),%dl
40 movb %dl,(%rdi)
42 testb %dl,%dl
63 movb %dl,(%rdi)
65 testb %dl,%dl /* 1st byte == 0? */
69 movb %dl,(%rdi)
71 testb %dl,%dl /*
[all...]
H A Dstrrchr.S25 movb (%rdi),%dl
26 cmpb %cl,%dl
29 testb %dl,%dl
65 movb -8(%rdi),%dl
66 cmpb %cl,%dl /* 1st byte == ch? */
69 1: testb %dl,%dl /* 1st byte == 0? */
72 movb -7(%rdi),%dl
73 cmpb %cl,%dl /*
[all...]
H A Dstrcat.S91 movb (%rsi),%dl
93 movb %dl,(%rdi)
95 testb %dl,%dl
116 movb %dl,(%rdi)
118 testb %dl,%dl /* 1st byte == 0? */
122 movb %dl,(%rdi)
124 testb %dl,%dl /*
[all...]
/netbsd-current/usr.sbin/mopd/mopcopy/
H A Dmopcopy.c99 struct dllist dl; local
107 dl.ldfd = open (argv[1], O_RDONLY);
108 if (dl.ldfd == -1)
111 if (GetFileInfo(&dl) == -1)
114 switch (dl.image_type) {
121 if (dl.e_machine != EM_VAX)
123 "(machine=%d)\n", argv[1], dl.e_machine);
124 for (i = 0, j = 0; j < dl.e_nsec; j++)
125 i += dl.e_sections[j].s_fsize + dl
[all...]
/netbsd-current/external/cddl/osnet/dist/uts/common/fs/zfs/
H A Ddsl_deadlist.c70 dsl_deadlist_load_tree(dsl_deadlist_t *dl) argument
75 ASSERT(!dl->dl_oldfmt);
76 if (dl->dl_havetree)
79 avl_create(&dl->dl_tree, dsl_deadlist_compare,
82 for (zap_cursor_init(&zc, dl->dl_os, dl->dl_object);
87 VERIFY3U(0, ==, bpobj_open(&dle->dle_bpobj, dl->dl_os,
89 avl_add(&dl->dl_tree, dle);
92 dl->dl_havetree = B_TRUE;
96 dsl_deadlist_open(dsl_deadlist_t *dl, objset_ argument
119 dsl_deadlist_close(dsl_deadlist_t *dl) argument
182 dle_enqueue(dsl_deadlist_t *dl, dsl_deadlist_entry_t *dle, const blkptr_t *bp, dmu_tx_t *tx) argument
198 dle_enqueue_subobj(dsl_deadlist_t *dl, dsl_deadlist_entry_t *dle, uint64_t obj, dmu_tx_t *tx) argument
214 dsl_deadlist_insert(dsl_deadlist_t *dl, const blkptr_t *bp, dmu_tx_t *tx) argument
249 dsl_deadlist_add_key(dsl_deadlist_t *dl, uint64_t mintxg, dmu_tx_t *tx) argument
273 dsl_deadlist_remove_key(dsl_deadlist_t *dl, uint64_t mintxg, dmu_tx_t *tx) argument
303 dsl_deadlist_t dl; local
324 dsl_deadlist_clone(dsl_deadlist_t *dl, uint64_t maxtxg, uint64_t mrs_obj, dmu_tx_t *tx) argument
354 dsl_deadlist_space(dsl_deadlist_t *dl, uint64_t *usedp, uint64_t *compp, uint64_t *uncompp) argument
377 dsl_deadlist_space_range(dsl_deadlist_t *dl, uint64_t mintxg, uint64_t maxtxg, uint64_t *usedp, uint64_t *compp, uint64_t *uncompp) argument
418 dsl_deadlist_insert_bpobj(dsl_deadlist_t *dl, uint64_t obj, uint64_t birth, dmu_tx_t *tx) argument
450 dsl_deadlist_t *dl = arg; local
460 dsl_deadlist_merge(dsl_deadlist_t *dl, uint64_t obj, dmu_tx_t *tx) argument
498 dsl_deadlist_move_bpobj(dsl_deadlist_t *dl, bpobj_t *bpo, uint64_t mintxg, dmu_tx_t *tx) argument
[all...]
/netbsd-current/sys/arch/atari/stand/ahdilabel/
H A Dcksum.c39 dkcksum (struct disklabel *dl) argument
43 start = (u_short *)dl;
44 end = (u_short *)&dl->d_partitions[dl->d_npartitions];
H A Dmagic.c52 struct disklabel *dl = (struct disklabel *)&p[1]; local
56 (u_char *)dl - bblk == 7168) &&
57 dl->d_npartitions <= MAXPARTITIONS &&
58 dl->d_magic2 == DISKMAGIC &&
59 dl->d_magic == DISKMAGIC &&
60 dkcksum(dl) == 0) {
/netbsd-current/sys/arch/atari/stand/tostools/libtos/
H A Dbsdlabel.c59 struct disklabel *dl = (struct disklabel *)&p[1]; local
62 || (u_char *)dl - bblk == 7168
64 && dl->d_npartitions <= MAXPARTITIONS
65 && dl->d_magic2 == DISKMAGIC
66 && dl->d_magic == DISKMAGIC
67 && dkcksum(dl) == 0
69 memcpy(dlp, dl, sizeof(*dlp));
82 dkcksum(struct disklabel *dl) argument
86 start = (u_short *)dl;
87 end = (u_short *)&dl
[all...]
/netbsd-current/external/lgpl3/gmp/dist/mpz/
H A Dtdiv_qr.c40 mp_size_t ns, ds, nl, dl; local
47 dl = ABS (ds);
48 ql = nl - dl + 1;
50 if (UNLIKELY (dl == 0))
53 rp = MPZ_REALLOC (rem, dl);
84 tp = TMP_ALLOC_LIMBS (dl);
85 MPN_COPY (tp, dp, dl);
98 mpn_tdiv_qr (qp, rp, 0L, np, nl, dp, dl);
101 MPN_NORMALIZE (rp, dl);
104 SIZ (rem) = ns >= 0 ? dl
[all...]
H A Dtdiv_r.c39 mp_size_t ns, nl, dl; local
45 dl = ABSIZ (den);
46 ql = nl - dl + 1;
48 if (UNLIKELY (dl == 0))
63 rp = MPZ_REALLOC (rem, dl);
78 tp = TMP_ALLOC_LIMBS (dl);
79 MPN_COPY (tp, dp, dl);
91 mpn_tdiv_qr (qp, rp, 0L, np, nl, dp, dl);
93 MPN_NORMALIZE (rp, dl);
95 SIZ (rem) = ns >= 0 ? dl
[all...]
H A Dtdiv_q.c39 mp_size_t ns, ds, nl, dl; local
46 dl = ABS (ds);
47 ql = nl - dl + 1;
49 if (UNLIKELY (dl == 0))
67 tp = TMP_ALLOC_LIMBS (dl);
68 MPN_COPY (tp, dp, dl);
81 mpn_div_q (qp, np, nl, dp, dl, tp);
/netbsd-current/usr.sbin/mopd/mopchk/
H A Dmopchk.c64 struct dllist dl; local
117 dl.ldfd = open(filename, O_RDONLY, 0);
118 if (dl.ldfd == -1)
121 if ((error = CheckElfFile(dl.ldfd)) == 0) {
122 if (GetElfFileInfo(&dl) < 0) {
126 } else if ((error = CheckAOutFile(dl.ldfd)) == 0) {
127 if (GetAOutFileInfo(&dl) < 0) {
131 } else if ((error = CheckMopFile(dl.ldfd)) == 0) {
132 if (GetMopFileInfo(&dl) < 0) {
138 (void) close(dl
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Ddlmopen.c34 int dl; local
54 for (dl = 0; dl < 4; ++dl)
56 fun = dlsym (handle[dl], "inc");
61 dlclose (handle[dl]);
/netbsd-current/external/gpl3/binutils/dist/gprofng/src/
H A DDbeSyncMap.h97 for (DbeLinkList<ITEM *> *dl = chunk[h]; dl; dl = dl->get_next ())
99 ITEM *item = dl->get_item ();
118 for (DbeLinkList<ITEM *> *dl = chunk[h]; dl; dl = dl->get_next ())
120 ITEM *item = dl
135 DbeLinkList<ITEM *> *dl = new DbeLinkList<ITEM *>(item); local
185 DbeLinkList<ITEM *> *dl = new DbeLinkList<ITEM *>(item); local
[all...]
/netbsd-current/external/gpl2/lvm2/dist/lib/format1/
H A Dvg_number.c32 struct disk_list *dl; local
46 dm_list_iterate_items(dl, &all_pvs) {
47 if (!*dl->pvd.vg_name || !strcmp((char *)dl->pvd.vg_name, candidate_vg))
50 numbers[dl->vgd.vg_number] = 1;
/netbsd-current/external/gpl3/gcc/dist/libgcc/config/m68k/
H A Dfpgnulib.c126 union double_long dl;
128 dl.d = a;
129 if (EXPD(dl) == EXPDMASK
130 && ((dl.l.upper & MANTDMASK) != 0 || dl.l.lower != 0))
132 dl.d = b;
133 if (EXPD(dl) == EXPDMASK
134 && ((dl.l.upper & MANTDMASK) != 0 || dl.l.lower != 0))
144 union double_long dl;
125 union double_long dl; local
143 union double_long dl; local
176 union double_long dl; local
238 register union double_long dl; local
420 register union double_long dl; local
454 register union double_long dl; local
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/m68k/
H A Dfpgnulib.c126 union double_long dl;
128 dl.d = a;
129 if (EXPD(dl) == EXPDMASK
130 && ((dl.l.upper & MANTDMASK) != 0 || dl.l.lower != 0))
132 dl.d = b;
133 if (EXPD(dl) == EXPDMASK
134 && ((dl.l.upper & MANTDMASK) != 0 || dl.l.lower != 0))
144 union double_long dl;
125 union double_long dl; local
143 union double_long dl; local
176 union double_long dl; local
238 register union double_long dl; local
420 register union double_long dl; local
454 register union double_long dl; local
[all...]
/netbsd-current/external/cddl/osnet/dist/uts/common/fs/zfs/sys/
H A Ddsl_deadlist.h65 void dsl_deadlist_open(dsl_deadlist_t *dl, objset_t *os, uint64_t object);
66 void dsl_deadlist_close(dsl_deadlist_t *dl);
69 void dsl_deadlist_insert(dsl_deadlist_t *dl, const blkptr_t *bp, dmu_tx_t *tx);
70 void dsl_deadlist_add_key(dsl_deadlist_t *dl, uint64_t mintxg, dmu_tx_t *tx);
71 void dsl_deadlist_remove_key(dsl_deadlist_t *dl, uint64_t mintxg, dmu_tx_t *tx);
72 uint64_t dsl_deadlist_clone(dsl_deadlist_t *dl, uint64_t maxtxg,
74 void dsl_deadlist_space(dsl_deadlist_t *dl,
76 void dsl_deadlist_space_range(dsl_deadlist_t *dl,
79 void dsl_deadlist_merge(dsl_deadlist_t *dl, uint64_t obj, dmu_tx_t *tx);
80 void dsl_deadlist_move_bpobj(dsl_deadlist_t *dl, bpobj_
[all...]
/netbsd-current/lib/libc/citrus/
H A Dcitrus_db.h68 _citrus_db_locator_init(struct _citrus_db_locator *dl) argument
70 dl->dl_hashval = 0;
71 dl->dl_offset = 0;
/netbsd-current/tools/llvm/
H A DMakefile12 realdepends realall: config/config.status need-dl need-terminfo support-modules
36 need-dl: Makefile
37 printf '#include <dlfcn.h>\nint main(void){void *p; return dladdr(p, p);}' > need-dl.c
38 if ${HOST_CC} -o need-dl.out -D_GNU_SOURCE need-dl.c > /dev/null 2>&1; then \
40 elif ${HOST_CC} -o need-dl.out -D_GNU_SOURCE need-dl.c -ldl > /dev/null 2>&1; then \
55 CLEANFILES+= need-dl need-dl.c need-dl
[all...]
/netbsd-current/sys/arch/atari/include/
H A Ddisklabel.h74 #define BBGETLABEL(bb, dl) memcpy((dl), (bb)->bb_label, sizeof (struct disklabel))
75 #define BBSETLABEL(bb, dl) memcpy((bb)->bb_label, (dl), sizeof (struct disklabel))
/netbsd-current/sbin/disklabel/
H A Dbswap.h59 #define htotargetlabel(dl, sl) do { *(dl) = *(sl); } while (0)
60 #define targettohlabel(dl, sl) do { *(dl) = *(sl); } while (0)

Completed in 302 milliseconds

1234567891011>>