| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/doc/ |
| D | Makefile.am | 127 stamp-xml: stamp-xml-single-docbook stamp-xml-single-doxygen 128 $(STAMP) stamp-xml 130 doc-xml: stamp-xml 139 stamp-html: stamp-html-docbook-data stamp-html-doxygen 140 $(STAMP) stamp-html 142 doc-html: stamp-html 151 stamp-pdf: stamp-pdf-docbook stamp-pdf-doxygen 152 $(STAMP) stamp-pdf 154 doc-pdf: stamp-pdf 163 stamp-man: stamp-man-doxygen [all …]
|
| D | Makefile.in | 667 CLEANFILES = *.log stamp* 851 stamp-xml: stamp-xml-single-docbook stamp-xml-single-doxygen 852 $(STAMP) stamp-xml 854 doc-xml: stamp-xml 860 stamp-html: stamp-html-docbook-data stamp-html-doxygen 861 $(STAMP) stamp-html 863 doc-html: stamp-html 869 stamp-pdf: stamp-pdf-docbook stamp-pdf-doxygen 870 $(STAMP) stamp-pdf 872 doc-pdf: stamp-pdf [all …]
|
| /netbsd/src/usr.bin/script/ |
| D | script.c | 69 struct stamp { struct 368 struct stamp stamp; in record() local 372 stamp.scr_len = cc; in record() 373 stamp.scr_sec = tv.tv_sec; in record() 374 stamp.scr_usec = tv.tv_usec; in record() 375 stamp.scr_direction = direction; in record() 376 iov[0].iov_len = sizeof(stamp); in record() 377 iov[0].iov_base = &stamp; in record() 403 #define swapstamp(stamp) do { \ argument 404 if (stamp.scr_direction > 0xff) { \ [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/ |
| D | Makefile.am | 1054 stamp-std stamp-bits stamp-bits-sup stamp-pstl stamp-c_base stamp-c_compatibility \ 1055 stamp-backward stamp-ext stamp-pb stamp-tr1 stamp-tr2 stamp-decimal \ 1056 stamp-experimental stamp-experimental-bits stamp-debug stamp-parallel \ 1057 stamp-host 1074 stamp-std: ${std_headers} 1077 @$(STAMP) stamp-std 1079 stamp-bits: ${bits_headers} 1082 @$(STAMP) stamp-bits 1084 stamp-bits-sup: stamp-bits ${bits_sup_headers} 1086 @$(STAMP) stamp-bits-sup [all …]
|
| D | Makefile.in | 1399 stamp-std stamp-bits stamp-bits-sup stamp-pstl stamp-c_base stamp-c_compatibility \ 1400 stamp-backward stamp-ext stamp-pb stamp-tr1 stamp-tr2 stamp-decimal \ 1401 stamp-experimental stamp-experimental-bits stamp-debug stamp-parallel \ 1402 stamp-host 1417 CLEANFILES = ${pch_output} ${pch_output_anchors} stamp-host 1589 stamp-std: ${std_headers} 1592 @$(STAMP) stamp-std 1594 stamp-bits: ${bits_headers} 1597 @$(STAMP) stamp-bits 1599 stamp-bits-sup: stamp-bits ${bits_sup_headers} [all …]
|
| /netbsd/src/sys/dev/rasops/ |
| D | rasops4.c | 64 static uint16_t stamp[16]; variable 74 #define STAMP_READ(o) stamp[o] 137 stamp[i] = (i & 1 ? fg : bg) << 12; in rasops4_makestamp() 138 stamp[i] |= (i & 2 ? fg : bg) << 8; in rasops4_makestamp() 139 stamp[i] |= (i & 4 ? fg : bg) << 4; in rasops4_makestamp() 140 stamp[i] |= (i & 8 ? fg : bg) << 0; in rasops4_makestamp() 143 stamp[i] = (i & 1 ? fg : bg) << 0; in rasops4_makestamp() 144 stamp[i] |= (i & 2 ? fg : bg) << 4; in rasops4_makestamp() 145 stamp[i] |= (i & 4 ? fg : bg) << 8; in rasops4_makestamp() 146 stamp[i] |= (i & 8 ? fg : bg) << 12; in rasops4_makestamp()
|
| D | rasops15.c | 59 static uint32_t stamp[32]; variable 70 #define STAMP_READ(o) (*(uint32_t *)((uint8_t *)stamp + (o))) 144 stamp[i] = (i & 16 ? fg : bg); in rasops15_makestamp() 145 stamp[i] |= (i & 8 ? fg : bg) << 16; in rasops15_makestamp() 146 stamp[i + 1] = (i & 4 ? fg : bg); in rasops15_makestamp() 147 stamp[i + 1] |= (i & 2 ? fg : bg) << 16; in rasops15_makestamp() 149 stamp[i] = (i & 8 ? fg : bg); in rasops15_makestamp() 150 stamp[i] |= (i & 16 ? fg : bg) << 16; in rasops15_makestamp() 151 stamp[i + 1] = (i & 2 ? fg : bg); in rasops15_makestamp() 152 stamp[i + 1] |= (i & 4 ? fg : bg) << 16; in rasops15_makestamp()
|
| D | rasops8.c | 59 static uint32_t stamp[16]; variable 69 #define STAMP_READ(o) (*(uint32_t *)((uint8_t *)stamp + (o))) 149 stamp[i] = (i & 8 ? fg : bg); in rasops8_makestamp() 150 stamp[i] |= (i & 4 ? fg : bg) << 8; in rasops8_makestamp() 151 stamp[i] |= (i & 2 ? fg : bg) << 16; in rasops8_makestamp() 152 stamp[i] |= (i & 1 ? fg : bg) << 24; in rasops8_makestamp() 155 stamp[i] = (i & 1 ? fg : bg); in rasops8_makestamp() 156 stamp[i] |= (i & 2 ? fg : bg) << 8; in rasops8_makestamp() 157 stamp[i] |= (i & 4 ? fg : bg) << 16; in rasops8_makestamp() 158 stamp[i] |= (i & 8 ? fg : bg) << 24; in rasops8_makestamp()
|
| D | rasops2.c | 65 static uint8_t stamp[16]; variable 75 #define STAMP_READ(o) stamp[o] 143 stamp[i] = (i & 8 ? fg : bg); in rasops2_makestamp() 144 stamp[i] |= (i & 4 ? fg : bg) << 2; in rasops2_makestamp() 145 stamp[i] |= (i & 2 ? fg : bg) << 4; in rasops2_makestamp() 146 stamp[i] |= (i & 1 ? fg : bg) << 6; in rasops2_makestamp() 149 stamp[i] = (i & 1 ? fg : bg); in rasops2_makestamp() 150 stamp[i] |= (i & 2 ? fg : bg) << 2; in rasops2_makestamp() 151 stamp[i] |= (i & 4 ? fg : bg) << 4; in rasops2_makestamp() 152 stamp[i] |= (i & 8 ? fg : bg) << 6; in rasops2_makestamp()
|
| D | rasops32.c | 59 static uint32_t stamp[64]; variable 72 #define STAMP_READ(o) (*(uint32_t *)((uint8_t *)stamp + (o))) 144 stamp[i + 0] = i & 32 ? fg : bg; in rasops32_makestamp() 145 stamp[i + 1] = i & 16 ? fg : bg; in rasops32_makestamp() 146 stamp[i + 2] = i & 8 ? fg : bg; in rasops32_makestamp() 147 stamp[i + 3] = i & 4 ? fg : bg; in rasops32_makestamp()
|
| /netbsd/src/external/gpl3/gdb/dist/bfd/doc/ |
| D | ChangeLog-0415 | 15 * Makefile.am (aoutx.stamp): cp -p $srcdir/aoutx.texi to keep 17 (archive.stamp, archures.stamp, bfdt.stamp, cache.stamp, 18 coffcode.stamp, core.stamp, elf.stamp, elfcode.stamp, mmo.stamp, 19 format.stamp, libbfd.stamp, bfdio.stamp, bfdwin.stamp, 20 opncls.stamp, reloc.stamp, section.stamp, syms.stamp, targets.stamp, 21 init.stamp, hash.stamp, linker.stamp): Similarly. 38 * Makefile.am ($(MKDOC)): New rule, depend on chew.stamp. Move 40 (chew.stamp): ..here. 41 (DISTCLEANFILES): Move *.stamp.. 48 (aoutx.texi): New rule, depend on aoutx.stamp. Move old rule.. [all …]
|
| D | local.mk | 80 $(MKDOC): %D%/chew.stamp ; @true 81 %D%/chew.stamp: $(srcdir)/%D%/chew.c %D%/$(am__dirstamp) 103 texi=$${texi%.stamp}.texi; \ 109 .PRECIOUS: %D%/%.stamp 110 %D%/%.texi: %D%/%.stamp ; @true 111 %D%/%.stamp: $(srcdir)/%.c $(srcdir)/%D%/doc.str $(MKDOC) %D%/$(am__dirstamp) 113 %D%/%.stamp: $(srcdir)/%.h $(srcdir)/%D%/doc.str $(MKDOC) %D%/$(am__dirstamp) 118 %D%/bfd.stamp: $(srcdir)/%D%/bfd.texi ; $(AM_V_at)touch $@ 122 %D%/bfdt.stamp: $(srcdir)/bfd.c $(srcdir)/%D%/doc.str $(MKDOC) %D%/$(am__dirstamp) 139 MOSTLYCLEANFILES += $(MKDOC) %D%/*.o %D%/*.stamp
|
| /netbsd/src/external/gpl3/binutils/dist/bfd/doc/ |
| D | ChangeLog-0415 | 15 * Makefile.am (aoutx.stamp): cp -p $srcdir/aoutx.texi to keep 17 (archive.stamp, archures.stamp, bfdt.stamp, cache.stamp, 18 coffcode.stamp, core.stamp, elf.stamp, elfcode.stamp, mmo.stamp, 19 format.stamp, libbfd.stamp, bfdio.stamp, bfdwin.stamp, 20 opncls.stamp, reloc.stamp, section.stamp, syms.stamp, targets.stamp, 21 init.stamp, hash.stamp, linker.stamp): Similarly. 38 * Makefile.am ($(MKDOC)): New rule, depend on chew.stamp. Move 40 (chew.stamp): ..here. 41 (DISTCLEANFILES): Move *.stamp.. 48 (aoutx.texi): New rule, depend on aoutx.stamp. Move old rule.. [all …]
|
| D | local.mk | 83 $(MKDOC): %D%/chew.stamp ; @true 84 %D%/chew.stamp: $(srcdir)/%D%/chew.c %D%/$(am__dirstamp) 106 texi=$${texi%.stamp}.texi; \ 112 .PRECIOUS: %D%/%.stamp 113 %D%/%.texi: %D%/%.stamp ; @true 114 %D%/%.stamp: $(srcdir)/%.c $(srcdir)/%D%/doc.str $(MKDOC) %D%/$(am__dirstamp) 116 %D%/%.stamp: $(srcdir)/%.h $(srcdir)/%D%/doc.str $(MKDOC) %D%/$(am__dirstamp) 121 %D%/bfd.stamp: $(srcdir)/%D%/bfd.texi ; $(AM_V_at)touch $@ 125 %D%/bfdt.stamp: $(srcdir)/bfd.c $(srcdir)/%D%/doc.str $(MKDOC) %D%/$(am__dirstamp) 127 NetBSD_DISABLED_bfdt.stamp: [all …]
|
| /netbsd/src/external/gpl3/gdb/dist/opcodes/ |
| D | Makefile.am | 315 stamp-lib: libopcodes.la 322 touch stamp-lib 324 libopcodes.a: stamp-lib ; @true 332 stamp-epiphany stamp-fr30 stamp-frv stamp-ip2k stamp-iq2000 stamp-lm32 \ 333 stamp-m32c stamp-m32r stamp-mep stamp-mt stamp-or1k stamp-xstormy16 \ 334 libopcodes.a stamp-lib 353 CRIS_DEPS = stamp-cris 354 EPIPHANY_DEPS = stamp-epiphany 355 FR30_DEPS = stamp-fr30 356 FRV_DEPS = stamp-frv [all …]
|
| /netbsd/src/external/gpl3/binutils/dist/opcodes/ |
| D | Makefile.am | 316 stamp-lib: libopcodes.la 323 touch stamp-lib 325 libopcodes.a: stamp-lib ; @true 333 stamp-epiphany stamp-fr30 stamp-frv stamp-ip2k stamp-iq2000 stamp-lm32 \ 334 stamp-m32c stamp-m32r stamp-mep stamp-mt stamp-or1k stamp-xstormy16 \ 335 libopcodes.a stamp-lib 354 CRIS_DEPS = stamp-cris 355 EPIPHANY_DEPS = stamp-epiphany 356 FR30_DEPS = stamp-fr30 357 FRV_DEPS = stamp-frv [all …]
|
| /netbsd/src/external/bsd/tcpdump/dist/ |
| D | Makefile-devel-adds | 8 # autoheader might not change config.h.in, so touch a stamp file. 9 ${srcdir}/config.h.in: ${srcdir}/stamp-h.in 10 ${srcdir}/stamp-h.in: configure.ac aclocal.m4 12 echo timestamp > ${srcdir}/stamp-h.in 14 config.h: stamp-h 15 stamp-h: ${srcdir}/config.h.in config.status
|
| /netbsd/src/external/bsd/libpcap/dist/ |
| D | Makefile-devel-adds | 8 # autoheader might not change config.h.in, so touch a stamp file. 9 ${srcdir}/config.h.in: ${srcdir}/stamp-h.in 10 ${srcdir}/stamp-h.in: configure.ac aclocal.m4 12 echo timestamp > ${srcdir}/stamp-h.in 14 config.h: stamp-h 15 stamp-h: ${srcdir}/config.h.in config.status
|
| /netbsd/src/external/gpl3/gdb/dist/sim/common/ |
| D | local.mk | 42 %D%/version.c: %D%/version.c-stamp ; @true 43 %D%/version.c-stamp: $(srcroot)/gdb/version.in $(srcroot)/bfd/version.h $(srcdir)/%D%/create-versio… 45 $(AM_V_at)$(SHELL) $(srcroot)/move-if-change $@.tmp $(@:-stamp=) 49 %D%/version.c %D%/version.c-stamp 114 %/hw-config.h: %/stamp-hw ; @true 115 %/stamp-hw: Makefile 128 .PRECIOUS: %/stamp-hw 130 MOSTLYCLEANFILES += $(SIM_ENABLED_ARCHES:%=%/hw-config.h) $(SIM_ENABLED_ARCHES:%=%/stamp-hw) 140 %/modules.c: %/stamp-modules ; @true 141 %/stamp-modules: Makefile [all …]
|
| /netbsd/src/external/gpl3/gdb/dist/sim/mips/ |
| D | local.mk | 141 %D%/stamp-igen-itable 145 %D%/stamp-gen-mode-single 151 %D%/stamp-gen-mode-m16-m16 \ 152 %D%/stamp-gen-mode-m16-m32 157 %D%/stamp-gen-mode-multi-igen \ 158 %D%/stamp-gen-mode-multi-run 164 $(%C%_BUILT_SRC_FROM_IGEN_ITABLE): %D%/stamp-igen-itable 165 $(%C%_BUILT_SRC_FROM_GEN_MODE_SINGLE): %D%/stamp-gen-mode-single 166 $(%C%_BUILT_SRC_FROM_GEN_MODE_M16_M16): %D%/stamp-gen-mode-m16-m16 167 $(%C%_BUILT_SRC_FROM_GEN_MODE_M16_M32): %D%/stamp-gen-mode-m16-m32 [all …]
|
| /netbsd/src/external/ibm-public/postfix/dist/src/util/ |
| D | msg_rate_delay.c | 73 void msg_rate_delay(time_t *stamp, int delay, in msg_rate_delay() argument 104 if (*stamp + delay > now) in msg_rate_delay() 106 *stamp = now; in msg_rate_delay() 131 time_t stamp = 0; in main() local 134 msg_rate_delay(&stamp, 2, msg_info, "text here %d", n); in main()
|
| /netbsd/src/external/gpl3/gdb/dist/sim/ppc/ |
| D | local.mk | 81 %D%/defines.h: %D%/stamp-defines ; @true 82 %D%/stamp-defines: config.h Makefile 88 MOSTLYCLEANFILES += %D%/defines.h %D%/stamp-defines 161 %D%/stamp-igen 163 $(%C%_BUILT_SRC_FROM_IGEN): %D%/stamp-igen 166 %D%/stamp-igen: %D%/powerpc.igen %D%/altivec.igen %D%/e500.igen $(%C%_IGEN_OPCODE_RULES) $(PPC_IGEN) 225 %D%/hw.c %D%/hw.h: %D%/stamp-hw ; @true 226 %D%/stamp-hw: Makefile $(%C%_HW_SRC) $(srcroot)/move-if-change 261 %D%/stamp-hw 262 %D%/hw.c %D%/hw.h: %D%/stamp-igen [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/fixincludes/ |
| D | Makefile.in | 106 oneprocess : full-stamp 107 twoprocess : test-stamp $(AF) 109 full-stamp : $(ALLOBJ) $(LIBIBERTY) 113 test-stamp : $(TESTOBJ) $(LIBIBERTY) 135 rm -f *.o *-stamp $(AF) $(FI) *~ fixinc.sh 141 rm -f Makefile config.h config.log config.status stamp-h 159 config.h: stamp-h 160 stamp-h: $(srcdir)/config.h.in config.status
|
| /netbsd/src/external/gpl3/gdb/dist/sim/m32r/ |
| D | local.mk | 83 %D%/stamp-mloop \ 85 %D%/stamp-mloop-x \ 87 %D%/stamp-mloop-2 93 %D%/mloop.c %D%/eng.h: %D%/stamp-mloop ; @true 94 %D%/stamp-mloop: %D%/mloop.in $(srccom)/genmloop.sh 103 %D%/mloopx.c %D%/engx.h: %D%/stamp-mloop-x ; @true 104 %D%/stamp-mloop-x: %D%/mloopx.in $(srccom)/genmloop.sh 113 %D%/mloop2.c %D%/eng2.h: %D%/stamp-mloop-2 ; @true 114 %D%/stamp-mloop-2: %D%/mloop2.in $(srccom)/genmloop.sh
|
| /netbsd/src/external/gpl2/lvm2/dist/test/ |
| D | Makefile.in | 31 bin/not: $(srcdir)/not.c .bin-dir-stamp 34 bin/harness: $(srcdir)/harness.c .bin-dir-stamp 37 init.sh: $(srcdir)/Makefile.in $(srcdir)/test-utils.sh .bin-dir-stamp bin/not bin/harness $(T) 71 .bin-dir-stamp: lvm-wrapper 91 rm -rf init.sh lvm-wrapper bin .bin-dir-stamp
|