Searched refs:_tmp (Results 1 - 25 of 26) sorted by relevance

12

/netbsd-current/external/bsd/ntp/dist/lib/isc/include/isc/
H A Drefcount.h113 unsigned int *_tmp = (unsigned int *)(tp); \
116 if (_tmp != NULL) \
117 *_tmp = prev + 1; \
122 unsigned int *_tmp = (unsigned int *)(tp); \
126 if (_tmp != NULL) \
127 *_tmp = prev + 1; \
132 unsigned int *_tmp = (unsigned int *)(tp); \
136 if (_tmp != NULL) \
137 *_tmp = prev - 1; \
159 unsigned int *_tmp
[all...]
/netbsd-current/sys/arch/or1k/include/
H A Dbyte_swap.h37 #define BSWAP16(_src, _dst, _tmp) \
40 l.srli _tmp, _src, 8; \
41 l.extbz _tmp, _tmp; \
42 l.or _dst, _dst, _tmp
44 #define BSWAP32(_src, _dst, _tmp) \
45 l.movhi _tmp, 0xff00 ;\
46 l.ori _tmp, _tmp, 0xff00 /* tmp = 0xff00ff00 */ ;\
47 l.slri _dst, _tmp,
[all...]
/netbsd-current/sys/arch/riscv/include/
H A Dbyte_swap.h37 #define BSWAP16(_src, _dst, _tmp) \
40 srli _tmp, _src, 8 ;\
41 and _tmp, _tmp, 0xff ;\
42 ori _dst, _dst, _tmp
44 #define BSWAP32(_src, _dst, _tmp) \
47 srli _tmp, _src, 24 ;\
48 ori _dst, _dst, _tmp ;\
49 and _tmp, _src, v1 ;\
50 slli _tmp, _sr
[all...]
/netbsd-current/sys/arch/arm/include/
H A Dbyte_swap.h39 #define BSWAP16(_src, _dst, _tmp) \
41 #define BSWAP32(_src, _dst, _tmp) \
46 #define BSWAP16(_src, _dst, _tmp) \
47 mov _tmp, _src, ror #8 ;\
48 orr _tmp, _tmp, _tmp, lsr #16 ;\
49 bic _dst, _tmp, _tmp, lsl #16
51 #define BSWAP32(_src, _dst, _tmp) \
[all...]
/netbsd-current/include/
H A Ddb.h181 uint32_t _tmp = a; \
182 ((char *)(void *)&a)[0] = ((char *)(void *)&_tmp)[3]; \
183 ((char *)(void *)&a)[1] = ((char *)(void *)&_tmp)[2]; \
184 ((char *)(void *)&a)[2] = ((char *)(void *)&_tmp)[1]; \
185 ((char *)(void *)&a)[3] = ((char *)(void *)&_tmp)[0]; \
188 char _tmp[4]; \
189 _tmp[0] = ((char *)(void *)a)[0]; \
190 _tmp[1] = ((char *)(void *)a)[1]; \
191 _tmp[2] = ((char *)(void *)a)[2]; \
192 _tmp[
[all...]
/netbsd-current/sys/arch/hp300/dev/
H A Dmaskbits.h88 int _tmp; \
89 FASTGETBITS(psrc, x, 32, _tmp); \
90 dst = _tmp; \
/netbsd-current/sys/arch/vax/vsa/
H A Dmaskbits.h72 int _tmp; \
73 FASTGETBITS(psrc, x, 32, _tmp); \
74 dst = _tmp; \
/netbsd-current/external/bsd/libevent/
H A Dlibevent2netbsd99 cat - ${f} > ${f}_tmp <<- EOF
102 mv ${f}_tmp ${f}
105 cat - ${f} > ${f}_tmp <<- EOF
109 mv ${f}_tmp ${f}
/netbsd-current/distrib/sun2/ramdisk/
H A DShowsyms5 tf=_tmp$$
/netbsd-current/distrib/sun3/ramdisk/
H A DShowsyms5 tf=_tmp$$
/netbsd-current/sys/arch/hp300/stand/common/
H A Dmaskbits.h88 int _tmp; \
89 FASTGETBITS(psrc, x, 32, _tmp); \
90 dst = _tmp; \
/netbsd-current/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
H A Dbuffer.h938 isc_buffer_t *_tmp = _b; \
939 ISC_REQUIRE(isc_buffer_reserve(&_tmp, _length) == \
958 isc_buffer_t *_tmp = _b; \
959 ISC_REQUIRE(isc_buffer_reserve(&_tmp, _length) == \
975 isc_buffer_t *_tmp = _b; \
976 ISC_REQUIRE(isc_buffer_reserve(&_tmp, 1) == \
992 isc_buffer_t *_tmp = _b; \
993 ISC_REQUIRE(isc_buffer_reserve(&_tmp, 2) == \
1010 isc_buffer_t *_tmp = _b; \
1011 ISC_REQUIRE(isc_buffer_reserve(&_tmp,
[all...]
/netbsd-current/external/bsd/pcc/
H A Dprepare-import.sh42 < ${f} > ${f}_tmp
43 mv ${f}_tmp ${f}
/netbsd-current/sys/dev/mii/
H A Dciphy.c368 uint16_t _tmp; local
371 if ((rv = PHY_READ(sc, y, &_tmp)) != 0)
373 return PHY_WRITE(sc, y, _tmp | z);
379 uint16_t _tmp; local
382 if ((rv = PHY_READ(sc, y, &_tmp)) != 0)
384 return PHY_WRITE(sc, y, _tmp & ~z);
H A Drgephy.c496 uint16_t _tmp; local
499 if ((rv = PHY_READ(sc, y, &_tmp)) != 0)
501 return PHY_WRITE(sc, y, _tmp | z);
507 uint16_t _tmp; local
510 if ((rv = PHY_READ(sc, y, &_tmp)) != 0)
512 return PHY_WRITE(sc, y, _tmp & ~z);
/netbsd-current/share/mk/
H A Dbsd.kmodule.mk152 CLEANFILES+= tmp.o tmp.S ${KMOD}_tmp.o ${KMOD}_tramp.o ${KMOD}_tramp.S
153 ${KMOD}_tmp.o: ${OBJS} ${DPADD}
161 ${KMOD}_tramp.S: ${KMOD}_tmp.o ${ARCHDIR}/kmodtramp.awk ${ASM_H}
163 ${OBJDUMP} --syms --reloc ${KMOD}_tmp.o | \
168 ${PROG}: ${KMOD}_tmp.o ${KMOD}_tramp.o
172 -o tmp.o ${KMOD}_tmp.o ${KMOD}_tramp.o
179 -o ${.TARGET} ${KMOD}_tmp.o ${KMOD}_tramp.o
/netbsd-current/sys/sys/
H A Dmbuf.h612 int _tmp; \
616 _t = m_pulldown((m), (off), (len), &_tmp); \
618 if (_t->m_len < _tmp + (len)) \
620 (val) = (typ)(mtod(_t, char *) + _tmp); \
/netbsd-current/external/gpl2/xcvs/dist/contrib/
H A Drcs2sccs.sh25 tmpfile=/tmp/rcs2sccs_$$_tmp
H A Dsccs2rcs.in101 set tmpfile = /tmp/sccs2rcs_$$_tmp
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/camellia/asm/
H A Dcmll-x86.pl828 my $_tmp=&DWP(44,"esp"); #volatile variable [yes, aliases with ivec]
996 &mov ($_tmp,$key);
1011 &mov ($key,$_tmp); # load ivp
1034 &mov ($_tmp,$idx); # save ivp
1042 &mov ($key,$_tmp); # load temp ivp
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/camellia/asm/
H A Dcmll-x86.pl827 my $_tmp=&DWP(44,"esp"); #volatile variable [yes, aliases with ivec]
995 &mov ($_tmp,$key);
1010 &mov ($key,$_tmp); # load ivp
1033 &mov ($_tmp,$idx); # save ivp
1041 &mov ($key,$_tmp); # load temp ivp
/netbsd-current/external/lgpl3/mpfr/dist/src/
H A Dmpfr-impl.h1833 mp_limb_t *_tmp; \
1835 for (_tmp = _sp, _n = _srcs - _dests ; \
1837 _sb = *--_tmp; \
1849 mp_limb_t *_tmp; \
1851 for (_tmp = _sp - 1, _n = _srcs - _dests - 1 ; \
1853 _sb = *--_tmp; \
/netbsd-current/external/gpl3/gcc/dist/libquadmath/strtod/
H A Dstrtod_l.c129 #define SWAP(x, y) ({ typeof(x) _tmp = x; x = y; y = _tmp; })
/netbsd-current/external/gpl3/gcc.old/dist/libquadmath/strtod/
H A Dstrtod_l.c129 #define SWAP(x, y) ({ typeof(x) _tmp = x; x = y; y = _tmp; })
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dsel-sched.c2655 expr_def _tmp, *tmp = &_tmp;
2647 expr_def _tmp, *tmp = &_tmp; local

Completed in 404 milliseconds

12