Home
last modified time | relevance | path

Searched full:stamp (Results 1 – 25 of 961) sorted by relevance

12345678910>>...39

/external/llvm-project/clang/test/CodeGenCXX/
Dpr29160.cpp18 #define STAMP(thiz, prev) using thiz = Foo< \ macro
23 STAMP(A, Base);
24 STAMP(B, A);
25 STAMP(C, B);
26 STAMP(D, C);
27 STAMP(E, D);
28 STAMP(F, E);
29 STAMP(G, F);
30 STAMP(H, G);
31 STAMP(I, H);
[all …]
/external/libpcap/
Dpcap-tstamp.manmisc.in26 When capturing traffic, each packet is given a time stamp representing,
34 if the time stamp is applied to the packet when the networking stack
37 networking device driver to poll for packets, and the time stamp might
67 of the time stamp might not be incremented for a leap second, so that
68 the fraction-of-a-second part of the time stamp might roll over past
87 example, the time stamp of a packet might not correspond to the time
88 stamp of an event on the host triggered by the arrival of that packet.
94 might allow different types of time stamp to be used. The
100 a list of time stamp types supported by the capture device for that
102 The list might be empty, in which case no choice of time stamp type is
[all …]
Dpcap_set_tstamp_type.3pcap.in23 pcap_set_tstamp_type \- set the time stamp type to be used by a
37 sets the type of time stamp desired for packets captured on the pcap
45 will give a list of the time stamp types supported by a given capture
49 for a list of all the time stamp types.
54 on success if the specified time stamp type is expected to be
57 if the specified time stamp type is not supported by the
62 if the capture device doesn't support setting the time stamp type (only
64 allow the time stamp type to be set to the default type).
68 releases, the time stamp type cannot be set; only the default time stamp
Dpcap_list_tstamp_types.3pcap.in24 stamp types supported by a capture device, and free that list
38 is used to get a list of the supported time stamp types of the interface
46 for a list of all the time stamp types.
54 returns the number of time stamp types in the array on success and
57 A return value of one means that the only time stamp type supported is
58 the one in the list, which is the capture device's default time stamp
59 type. A return value of zero means that the only time stamp type
62 which is the capture device's default time stamp type (only older
77 releases, the time stamp type cannot be set; only the default time stamp
DMakefile-devel-adds8 # 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
Dpcap_tstamp_type_val_to_name.3pcap24 a name or description for a time stamp type value
38 translates a time stamp type value to the corresponding time stamp type
44 translates a time stamp type value to a short description of that time
45 stamp type.
Dpcap_tstamp_type_name_to_val.3pcap23 pcap_tstamp_type_name_to_val \- get the time stamp type value
24 corresponding to a time stamp type name
37 translates a time stamp type name to the corresponding time stamp type
41 returns time stamp type value on success and
Dpcap_set_tstamp_precision.3pcap.in24 pcap_set_tstamp_precision \- set the time stamp precision returned in
38 sets the precision of the time stamp desired for packets captured on the pcap
45 Two time stamp precisions are supported, microseconds and nanoseconds. One can
54 on success if the specified time stamp precision is expected to be
57 if the capture device does not support the requested time stamp
/external/libxml2/fuzz/
DMakefile.am28 corpus: seed/html.stamp seed/schema.stamp seed/xml.stamp seed/xpath.stamp
35 rm -rf seed/html.stamp seed/html
36 rm -rf seed/schema.stamp seed/schema
37 rm -rf seed/xml.stamp seed/xml
38 rm -rf seed/xpath.stamp seed/xpath
46 seed/xml.stamp: genSeed$(EXEEXT)
49 @touch seed/xml.stamp
54 fuzz-xml: xml$(EXEEXT) seed/xml.stamp
64 seed/html.stamp: genSeed$(EXEEXT)
67 @touch seed/html.stamp
[all …]
/external/flac/Scripts/
Dcross-build-win-binaries.mk38 flac-$(flac_version)-win//AUTHORS : win-build/.stamp-flac-win32-install win-build/.stamp-flac-win64…
56 win-build/.stamp-flac-win64-install : win-build/.stamp-flac-win64-config
60 win-build/.stamp-flac-win64-config : win-build/.stamp-flac-prepare configure
65 win-build/.stamp-flac-win32-install : win-build/.stamp-flac-win32-config
69 win-build/.stamp-flac-win32-config : win-build/.stamp-flac-prepare configure
74 win-build/.stamp-flac-prepare : win-build/.stamp-win32-install win-build/.stamp-win64-install
80 win-build/.stamp-win64-install : win-build/.stamp-win64-configure
84 win-build/.stamp-win64-configure : win-build/.stamp-source
89 win-build/.stamp-win32-install : win-build/.stamp-win32-configure
93 win-build/.stamp-win32-configure : win-build/.stamp-source
[all …]
/external/rust/crates/crossbeam-utils/src/atomic/
Dseq_lock_wide.rs16 /// All bits except the least significant one hold the current stamp. When locked, the state_lo
17 /// equals 1 and doesn't contain a valid stamp.
29 /// If not locked, returns the current stamp.
49 /// Returns `true` if the current stamp is equal to `stamp`.
52 /// argument `stamp` should correspond to the one returned by method `optimistic_read`.
54 pub(crate) fn validate_read(&self, stamp: (usize, usize)) -> bool { in validate_read()
60 // So if `state_lo` coincides with `stamp.1`, then either (1) we're noticing no modification in validate_read()
61 // to the data after the critical section of `(stamp.0, stamp.1)`, or (2) `state_lo` wrapped in validate_read()
67 // If (2) is the case and `state_hi` coincides with `stamp.0`, then `state_hi` also wrapped in validate_read()
73 // section of `(stamp.0, stamp.1)`. in validate_read()
[all …]
Dseq_lock.rs10 /// All bits except the least significant one hold the current stamp. When locked, the state
11 /// equals 1 and doesn't contain a valid stamp.
22 /// If not locked, returns the current stamp.
35 /// Returns `true` if the current stamp is equal to `stamp`.
38 /// argument `stamp` should correspond to the one returned by method `optimistic_read`.
40 pub(crate) fn validate_read(&self, stamp: usize) -> bool { in validate_read()
42 self.state.load(Ordering::Relaxed) == stamp in validate_read()
66 /// An RAII guard that releases the lock and increments the stamp when dropped.
71 /// The stamp before locking.
76 /// Releases the lock without incrementing the stamp.
[all …]
/external/pigweed/pw_build/
Dpython_action.gni30 # stamp File to touch if the script is successful. Actions that
31 # don't create output files can use this stamp file instead of
101 # If a stamp file is requested, add it as an output of the runner script.
102 if (defined(invoker.stamp) && invoker.stamp != false) {
103 if (invoker.stamp == true) {
106 _stamp_file = invoker.stamp
190 if (defined(invoker.stamp) && invoker.stamp != false) {
191 if (invoker.stamp == true) {
192 # Use source file names in the generated stamp file path so they are
194 stamp = "$target_gen_dir/{{source_file_part}}.pw_pystamp"
[all …]
/external/mtools/debian/
Drules9 configure: configure-stamp
10 configure-stamp:
15 touch configure-stamp
17 build: patch build-stamp
18 build-stamp: configure-stamp
21 touch build-stamp
26 rm -rf build-stamp configure-stamp
/external/rust/crates/crossbeam-channel/src/flavors/
Darray.rs32 /// The current stamp.
33 stamp: AtomicUsize, field
45 /// Stamp to store into the slot after reading or writing.
46 stamp: usize, field
54 stamp: 0, in default()
63 /// This value is a "stamp" consisting of an index into the buffer, a mark bit, and a lap, but
72 /// This value is a "stamp" consisting of an index into the buffer, a mark bit, and a lap, but
85 /// A stamp with the value of `{ lap: 1, mark: 0, index: 0 }`.
120 // Set the stamp to `{ lap: 0, mark: 0, index: i }`. in with_capacity()
122 stamp: AtomicUsize::new(i), in with_capacity()
[all …]
/external/blktrace/btt/
Diostat.c60 "avgrq-sz avgqu-sz await svctm %%util Stamp\n"); in dump_hdr()
83 void __dump_stats(__u64 stamp, int all, struct d_info *dip, struct stats_t *asp) in __dump_stats() argument
88 double now = TO_SEC(stamp); in __dump_stats()
91 dt = (double)stamp / 1.0e9; in __dump_stats()
94 dt = (double)(stamp-last_start) / 1.0e9; in __dump_stats()
135 fprintf(iostat_ofp, "%8.2lf\n", TO_SEC(stamp)); in __dump_stats()
161 static void __dump_stats_t(__u64 stamp, struct stats_t *asp, int all) in __dump_stats_t() argument
182 fprintf(iostat_ofp, "%8.2lf\n", TO_SEC(stamp)); in __dump_stats_t()
192 void iostat_dump_stats(__u64 stamp, int all) in iostat_dump_stats() argument
206 __dump_stats(stamp, all, dip, &as); in iostat_dump_stats()
[all …]
/external/zstd/tests/regression/
Ddata.c470 static char const kStampName[] = "STAMP";
478 /** Hash the data to create the stamp. */
496 /** Check if the stamp matches the stamp in the cache directory. */
498 char* stamp = cat3(dir, "/", kStampName); in stamp_check() local
504 if (stamp == NULL) in stamp_check()
506 if (!UTIL_isRegularFile(stamp)) { in stamp_check()
507 fprintf(stderr, "stamp does not exist: recreating the data cache\n"); in stamp_check()
511 stampfile = fopen(stamp, "rb"); in stamp_check()
513 fprintf(stderr, "could not open stamp: recreating the data cache\n"); in stamp_check()
519 fprintf(stderr, "invalid stamp: recreating the data cache\n"); in stamp_check()
[all …]
/external/llvm-project/llvm/utils/gn/build/
Dsymlink_or_copy.gni9 # Make a stamp file the output to work around
11 stamp =
12 "$target_gen_dir/" + get_path_info(invoker.output, "file") + ".stamp"
13 outputs = [ stamp ]
16 "--stamp",
17 rebase_path(stamp, root_build_dir),
/external/tcpdump/
DMakefile-devel-adds8 # 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.in aclocal.m4
12 echo timestamp > ${srcdir}/stamp-h.in
14 config.h: stamp-h
15 stamp-h: ${srcdir}/config.h.in config.status
/external/igt-gpu-tools/docs/reference/igt-gpu-tools/
D.gitignore3 /html-build.stamp
4 /html.stamp
20 /scan-build.stamp
21 /setup-build.stamp
22 /sgml-build.stamp
23 /sgml.stamp
/external/strace/debian/
Drules23 extra_build_targets += build-udeb-stamp
30 extra_build_targets += build64-stamp
43 build-arch: build-stamp $(extra_build_targets)
44 build-indep: build-stamp $(extra_build_targets)
49 %-stamp: %/Makefile
81 test -f build-stamp || make $(MFLAGS) -f debian/rules build
84 test -f build64-stamp && ( mv build64/strace build64/strace64 ; \
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
DJavaBeanTimeStampTest.java28 Timestamp stamp = new Timestamp(1000000000000L); in testLoadDefaultJavaSqlTimestamp() local
29 javaBeanToDump.setTimestamp(stamp); in testLoadDefaultJavaSqlTimestamp()
42 assertEquals(stamp, javaBeanToLoad.getTimestamp()); in testLoadDefaultJavaSqlTimestamp()
48 Timestamp stamp = new Timestamp(1000000000000L); in testLoadDefaultJavaSqlTimestampNoGlobalTag() local
49 javaBeanToDump.setTimestamp(stamp); in testLoadDefaultJavaSqlTimestampNoGlobalTag()
58 assertEquals(stamp, javaBeanToLoad.getTimestamp()); in testLoadDefaultJavaSqlTimestampNoGlobalTag()
/external/linux-kselftest/tools/testing/selftests/networking/timestamping/
Dtimestamping.c13 * without hardware support, SIOCGSTAMP[NS] (per-socket time stamp) and
61 " SIOCGSTAMP - check last socket time stamp\n" in usage()
62 " SIOCGSTAMPNS - more accurate socket time stamp\n"); in usage()
162 struct timeval *stamp = in printpacket() local
165 (long)stamp->tv_sec, in printpacket()
166 (long)stamp->tv_usec); in printpacket()
170 struct timespec *stamp = in printpacket() local
173 (long)stamp->tv_sec, in printpacket()
174 (long)stamp->tv_nsec); in printpacket()
178 struct timespec *stamp = in printpacket() local
[all …]
/external/wayland/doc/doxygen/
Dmeson.build78 # dummy 'stamp' file
87 '--stamp=doc/doxygen/@0@.stamp'.format(t_name),
92 output: '@0@.stamp'.format(t_name),
106 '--stamp=doc/doxygen/man3.stamp',
/external/libexif/doc/
DMakefile.am27 DOXYGEN_STAMPS += $(HTML_APIDOC_DIR).stamp
28 $(HTML_APIDOC_DIR).stamp: Doxyfile $(top_builddir)/libexif/libexif.la
33 $(HTML_APIDOC_DIR).tar.gz: $(HTML_APIDOC_DIR).stamp
39 DOXYGEN_STAMPS += $(HTML_APIDOC_INTERNALS_DIR).stamp
40 $(HTML_APIDOC_INTERNALS_DIR).stamp: Doxyfile-internals $(top_builddir)/libexif/libexif.la
45 $(HTML_APIDOC_INTERNALS_DIR).tar.gz: $(HTML_APIDOC_INTERNALS_DIR).stamp
49 install-apidocs-internals: $(HTML_APIDOC_INTERNALS_DIR).stamp
64 install-apidocs: $(HTML_APIDOC_DIR).stamp

12345678910>>...39