Home
last modified time | relevance | path

Searched refs:_d (Results 1 – 25 of 86) sorted by relevance

1234

/netbsd-src/external/lgpl3/mpfr/dist/src/
H A Dinvert_limb.h108 mp_limb_t _d, _d0, _i, _d40, _d63, _v0, _v1, _v2, _e, _v3, _h, _l; \
110 _d = (d); \
111 _i = (_d >> 55) - 256; /* i = d9 - 256 */ \
115 _d40 = (_d >> 24) + 1; \
119 _d0 = _d & 1; \
120 _d63 = ((_d - 1) >> 1) + 1; \
124 umul_ppmm (_h, _l, _v3, _d); \
126 add_ssaaaa(_h, _l, _h, _l, _d, _d); \
135 mp_limb_t _d, _d0, _i, _d40, _d63, _v0, _v1, _v2, _e, _h; \
137 _d = (d); \
[all …]
H A Dinvsqrt_limb.h235 mp_limb_t _d, _i, _v0, _e0, _d37, _v1, _e1, _h, _v2, _e2; \
236 _d = (d); \
237 _i = (_d >> 54) - 256; \
240 _d37 = 1 + (_d >> 27); \
248 umul_hi (_h, _v2 * _v2, _d); \
260 mp_limb_t _d, _i, _v0, _e0, _d37, _v1, _e1, _h; \
261 _d = (d); \
262 _i = (_d >> 54) - 256; \
265 _d37 = 1 + (_d >> 27); \
/netbsd-src/external/cddl/osnet/dist/uts/common/sys/
H A Dsysmacros.h357 #define DECL_BITFIELD4(_a, _b, _c, _d) \ argument
358 uint8_t _a, _b, _c, _d
359 #define DECL_BITFIELD5(_a, _b, _c, _d, _e) \ argument
360 uint8_t _a, _b, _c, _d, _e
361 #define DECL_BITFIELD6(_a, _b, _c, _d, _e, _f) \ argument
362 uint8_t _a, _b, _c, _d, _e, _f
363 #define DECL_BITFIELD7(_a, _b, _c, _d, _e, _f, _g) \ argument
364 uint8_t _a, _b, _c, _d, _e, _f, _g
365 #define DECL_BITFIELD8(_a, _b, _c, _d, _e, _f, _g, _h) \ argument
366 uint8_t _a, _b, _c, _d, _e, _f, _g, _h
[all …]
/netbsd-src/tools/installboot/
H A DMakefile28 install: .PHONY install.${_d}.boards.plist
29 install.${_d}.boards.plist: .PHONY ${BOARDDB_DSTDIR}/${_d}/boards.plist
30 ${BOARDDB_DSTDIR}/${_d}/boards.plist: ${BOARDDB_SRCDIR}/${_d}/boards.plist
34 ${HOST_INSTALL_DIR} ${BOARDDB_DSTDIR}/${_d}
/netbsd-src/sys/external/bsd/ipf/netinet/
H A Dip_fil.h225 i6addr_t *_d = (i6addr_t *)(d); \
226 _d->i6[0] = NLADD(_s->i6[0], x); \
227 if (ntohl(_d->i6[0]) < ntohl(_s->i6[0])) { \
228 _d->i6[1] = NLADD(_d->i6[1], 1); \
229 if (ntohl(_d->i6[1]) < ntohl(_s->i6[1])) { \
230 _d->i6[2] = NLADD(_d->i6[2], 1); \
231 if (ntohl(_d->i6[2]) < ntohl(_s->i6[2])) { \
232 _d->i6[3] = NLADD(_d->i6[3], 1); \
239 i6addr_t *_d = (i6addr_t *)(d); \
240 _d->i6[0] = _s1->i6[0] & _s2->i6[0]; \
[all …]
H A Dip_compat.h1521 # define DT2(_n,_a,_b,_c,_d) DTRACE_PROBE2(_n,_a,_b,_c,_d) argument
1522 # define DT3(_n,_a,_b,_c,_d,_e,_f) \ argument
1523 DTRACE_PROBE3(_n,_a,_b,_c,_d,_e,_f)
1524 # define DT4(_n,_a,_b,_c,_d,_e,_f,_g,_h) \ argument
1525 DTRACE_PROBE4(_n,_a,_b,_c,_d,_e,_f,_g,_h)
1529 # define DT2(_n,_a,_b,_c,_d) argument
1530 # define DT3(_n,_a,_b,_c,_d,_e,_f) argument
1531 # define DT4(_n,_a,_b,_c,_d,_e,_f,_g,_h) argument
1536 # define DT2(_n,_a,_b,_c,_d) argument
1537 # define DT3(_n,_a,_b,_c,_d,_e,_f) argument
[all …]
/netbsd-src/share/mk/
H A Dbsd.clean.mk64 .for _d in ${"${.OBJDIR}" == "${.CURDIR}" || "${MKCLEANSRC}" == "no" \
68 (cd ${_d} && rm -f ${.ALLSRC:@v@${${v}}@} || true) }
71 bad="\$(cd ${_d} && ls -1d ${.ALLSRC:@v@${${v}}@} 2>/dev/null)"; \
73 echo "Failed to remove the following files from ${_d}:" ; \
/netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/
H A Dmemory.h117 u64 _a = (a), _c = (c), _d = (d); \
120 nvkm_wo##t((o), _a, _d); \
125 u64 _a = (a), _c = (c), _d = (d), _o = _a >> s, _s = _c << s; \
128 if (_d) { \
130 iowrite##t##_native(_d, &_m[_o++]); \
132 memset_io(&_m[_o], _d, _s); \
136 nvkm_wo##t((o), _a, _d); \
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dconcept_check.h51 #define __glibcxx_class_requires3(_a,_b,_c,_d) argument
52 #define __glibcxx_class_requires4(_a,_b,_c,_d,_e) argument
76 #define __glibcxx_class_requires4(_a,_b,_c,_d,_C) \ argument
77 _GLIBCXX_CLASS_REQUIRES4(_a, _b, _c, _d, __gnu_cxx, _C);
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dconcept_check.h51 #define __glibcxx_class_requires3(_a,_b,_c,_d) argument
52 #define __glibcxx_class_requires4(_a,_b,_c,_d,_e) argument
76 #define __glibcxx_class_requires4(_a,_b,_c,_d,_C) \ argument
77 _GLIBCXX_CLASS_REQUIRES4(_a, _b, _c, _d, __gnu_cxx, _C);
/netbsd-src/usr.bin/sys_info/
H A Dsys_info.sh61 local IFS _var _name _d -
66 eval _d=\"\$$_var\"
67 if [ -n "$_d" ]; then
74 if [ -f "$_d/$_name" ] && [ -x "$_d/$_name" ]; then
76 eval $_var=\""$_d/$_name"\"
/netbsd-src/usr.sbin/service/
H A Dservice61 local _d _f IFS
65 for _d in ${rc_directories}
67 if [ -d "$_d" ]
69 for _f in "$_d"/*
/netbsd-src/usr.bin/ldd/elf32/
H A DMakefile12 .for _d in ${RTLD_FUNCS}
13 CPPFLAGS+= -D${_d}=_elf32_${_d}
/netbsd-src/usr.bin/ldd/elf64/
H A DMakefile39 .for _d in ${RTLD_FUNCS}
40 CPPFLAGS+= -D${_d}=_elf64_${_d}
/netbsd-src/external/gpl2/gmake/dist/
H A Djob.h30 # define CLOSE_ON_EXEC(_d) argument
35 # define CLOSE_ON_EXEC(_d) (void) fcntl ((_d), F_SETFD, FD_CLOEXEC) argument
/netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/
H A Ddisp.h100 const u32 _d = (d); \
102 pr_err("\t%08x\n", _d); \
103 *((p)++) = _d; \
/netbsd-src/external/cddl/osnet/sys/sys/
H A Dmman.h37 #define mmap64(_a,_b,_c,_d,_e,_f) mmap(_a,_b,_c,_d,_e,_f) argument
/netbsd-src/external/mit/xorg/lib/dri.old/
H A DMakefile435 .for _d in ${DRI_SUBDIRS}
436 SRCS+= ${DRI_SOURCES.${_d}}
437 .PATH: ${X11SRCDIR.Mesa}/src/mesa/drivers/dri/${_d}
466 .for _d in ${DRIVERS}
467 SYMLINKS+= mesa_dri_drivers.so.${SHLIB_MAJOR} ${DRIDIR}/${_d}_dri.so.${SHLIB_MAJOR}
468 SYMLINKS+= ${_d}_dri.so.${SHLIB_MAJOR} ${DRIDIR}/${_d}_dri.so
470 SYMLINKS+= mesa_dri_drivers.so.${SHLIB_MAJOR}.debug ${DRIDEBUGDIR}/${_d}_dri.so.${SHLIB_MAJOR}.debug
/netbsd-src/sys/fs/efs/
H A Defs_dir.h160 #define EFS_DIRBLK_TO_DIRENT(_d, _o) (struct efs_dirent *)((char *)(_d) + _o) argument
/netbsd-src/external/mit/xorg/lib/dri/
H A DMakefile462 .for _d in ${DRI_SUBDIRS}
463 SRCS+= ${DRI_SOURCES.${_d}}
464 .PATH: ${X11SRCDIR.Mesa}/src/mesa/drivers/dri/${_d}
493 .for _d in ${DRIVERS}
494 SYMLINKS+= mesa_dri_drivers.so.${SHLIB_MAJOR} ${DRIDIR}/${_d}_dri.so.${SHLIB_MAJOR}
495 SYMLINKS+= ${_d}_dri.so.${SHLIB_MAJOR} ${DRIDIR}/${_d}_dri.so
497 SYMLINKS+= mesa_dri_drivers.so.${SHLIB_MAJOR}.debug ${DRIDEBUGDIR}/${_d}_dri.so.${SHLIB_MAJOR}.debug
/netbsd-src/sys/dev/ic/
H A Dbmx280.c456 for(int _d = 0;_d < 24;_d++) { in bmx280_attach() local
458 device_xname(sc->sc_dev), _d, raw_blob_tp[_d])); in bmx280_attach()
482 for(int _d = 0;_d < 8;_d++) { in bmx280_attach() local
484 device_xname(sc->sc_dev), _d, raw_blob_h[_d])); in bmx280_attach()
/netbsd-src/external/bsd/elftoolchain/dist/libdwarf/
H A D_libdwarf.h63 #define _DWARF_SET_ERROR(_d, _e, _err, _elf_err) \ argument
64 _dwarf_set_error(_d, _e, _err, _elf_err, __func__, __LINE__)
65 #define DWARF_SET_ERROR(_d, _e, _err) \ argument
66 _DWARF_SET_ERROR(_d, _e, _err, 0)
67 #define DWARF_SET_ELF_ERROR(_d, _e) \ argument
68 _DWARF_SET_ERROR(_d, _e, DW_DLE_ELF, elf_errno())
/netbsd-src/sys/external/isc/atheros_hal/ic/
H A Dah_osdep.h51 #define OS_MEMCPY(_d, _s, _n) ath_hal_memcpy(_d,_s,_n) argument
/netbsd-src/tools/compat/
H A DMakefile131 .for _d in ${INCSUBDIRS}
132 HOST_INCINSTDIRS+= ${HOST_INCSDIR}/compat/${_d}
133 ${HOST_INCSDIR}/compat/${_d}:
/netbsd-src/external/bsd/elftoolchain/dist/libelf/
H A D_libelf.h230 struct _Libelf_Data *_libelf_release_data(struct _Libelf_Data *_d);
237 Elf_Data *_libelf_xlate(Elf_Data *_d, const Elf_Data *_s,

1234