Home
last modified time | relevance | path

Searched refs:tstamp (Results 1 – 25 of 35) sorted by relevance

12

/external/owasp/sanitizer/
DMakefile66 classes: out/classes.tstamp
67 out/classes.tstamp: out/classes src/main/org/owasp/html/*.java
70 touch out/classes.tstamp
72 examples: out/examples.tstamp
73 out/examples.tstamp: out/classes.tstamp src/main/org/owasp/html/examples/*.java
77 touch out/examples.tstamp
80 tests: out/tests.tstamp
81 out/tests.tstamp: out/classes.tstamp out/genfiles.tstamp out/examples.tstamp src/tests/org/owasp/ht…
87 touch out/tests.tstamp
89 out/genfiles.tstamp: out/genfiles/org/owasp/html/AllExamples.java out/genfiles/org/owasp/html/AllTe…
[all …]
/external/blktrace/btt/
Dlatency.c23 static inline void latency_out(FILE *ofp, __u64 tstamp, __u64 latency) in latency_out() argument
26 fprintf(ofp, "%lf %lf\n", TO_SEC(tstamp), TO_SEC(latency)); in latency_out()
57 void latency_q2d(struct d_info *dip, __u64 tstamp, __u64 latency) in latency_q2d() argument
59 plat_x2c(dip->q2d_plat_handle, tstamp, latency); in latency_q2d()
60 latency_out(dip->q2d_ofp, tstamp, latency); in latency_q2d()
63 void latency_d2c(struct d_info *dip, __u64 tstamp, __u64 latency) in latency_d2c() argument
65 plat_x2c(dip->d2c_plat_handle, tstamp, latency); in latency_d2c()
66 latency_out(dip->d2c_ofp, tstamp, latency); in latency_d2c()
69 void latency_q2c(struct d_info *dip, __u64 tstamp, __u64 latency) in latency_q2c() argument
71 plat_x2c(dip->q2c_plat_handle, tstamp, latency); in latency_q2c()
[all …]
Dseek.c102 double tstamp, s_p_s; in sps_emit() local
108 tstamp = sps->t_start; in sps_emit()
112 tstamp = sps->t_start + (delta / 2); in sps_emit()
256 double tstamp = BIT_TIME(iop->t.time); in seeki_add() local
260 fprintf(fp, "%15.9lf %13lld %c\n", tstamp, dist, rw); in seeki_add()
262 fprintf(sip->cfp, "%15.9lf %13lld %c\n", tstamp, dist, rw); in seeki_add()
269 sps_add(sip, tstamp); in seeki_add()
Dglobals.h241 void latency_q2d(struct d_info *dip, __u64 tstamp, __u64 latency);
242 void latency_d2c(struct d_info *dip, __u64 tstamp, __u64 latency);
243 void latency_q2c(struct d_info *dip, __u64 tstamp, __u64 latency);
/external/walt/hardware/kicad/
DWALTsm.kicad_pcb204 (module Capacitors_SMD:C_0805 (layer F.Cu) (tedit 58B4C36B) (tstamp 5766179B)
233 (module walt_footprints:R_0603_pad07mm_long (layer F.Cu) (tedit 57B60F33) (tstamp 576617B3)
262 (module walt_footprints:R_0603_pad07mm_long (layer F.Cu) (tedit 57B60F2D) (tstamp 576617AD)
291 (module walt_footprints:R_0603_pad07mm_long (layer F.Cu) (tedit 57B60ECD) (tstamp 576617FB)
320 (module walt_footprints:R_0603_pad07mm_long (layer F.Cu) (tedit 58B4C636) (tstamp 576617F5)
349 (module walt_footprints:R_0603_pad07mm_long (layer F.Cu) (tedit 58B4C62B) (tstamp 576617EF)
378 (module walt_footprints:R_0603_pad07mm_long (layer F.Cu) (tedit 57B612C2) (tstamp 576617E9)
407 (module walt_footprints:R_0603_pad07mm_long (layer F.Cu) (tedit 57B60E47) (tstamp 576617E3)
436 (module walt_footprints:R_0603_pad07mm_long (layer F.Cu) (tedit 578562C6) (tstamp 576617DD)
465 (module walt_footprints:R_0603_pad07mm_long (layer F.Cu) (tedit 578562CD) (tstamp 576617D7)
[all …]
DWALTsm.net24 (tstamp 576468C7))
30 (tstamp 57646A24))
36 (tstamp 57646BD5))
42 (tstamp 57646C37))
48 (tstamp 57646CD9))
54 (tstamp 57646D13))
60 (tstamp 57647D5A))
66 (tstamp 576483C4))
72 (tstamp 57648608))
78 (tstamp 576487CA))
[all …]
/external/tinycompress/
Dcompress.c315 unsigned int *avail, struct timespec *tstamp) in compress_get_hpointer() argument
325 if (0 == kavail.tstamp.sampling_rate) in compress_get_hpointer()
328 time = kavail.tstamp.pcm_io_frames / kavail.tstamp.sampling_rate; in compress_get_hpointer()
329 tstamp->tv_sec = time; in compress_get_hpointer()
330 time = kavail.tstamp.pcm_io_frames % kavail.tstamp.sampling_rate; in compress_get_hpointer()
331 tstamp->tv_nsec = time * 1000000000 / kavail.tstamp.sampling_rate; in compress_get_hpointer()
Dcplay.c141 struct timespec tstamp; in print_time() local
143 if (compress_get_hpointer(compress, &avail, &tstamp) != 0) { in print_time()
148 fprintf(stderr, "DSP played %jd.%jd\n", (intmax_t)tstamp.tv_sec, (intmax_t)tstamp.tv_nsec*1000); in print_time()
/external/webrtc/webrtc/base/
Dmessagequeue.cc309 void MessageQueue::PostAt(uint32_t tstamp, in PostAt() argument
313 return DoDelayPost(TimeUntil(tstamp), tstamp, phandler, id, pdata); in PostAt()
317 uint32_t tstamp, in DoDelayPost() argument
333 DelayedMessage dmsg(cmsDelay, tstamp, dmsgq_next_num_, msg); in DoDelayPost()
Dmessagequeue.h201 virtual void PostAt(uint32_t tstamp,
239 uint32_t tstamp,
/external/tinyalsa/
Dpcm.c451 struct timespec *tstamp) in pcm_get_htimestamp() argument
468 *tstamp = pcm->mmap_status->tstamp; in pcm_get_htimestamp()
469 if (tstamp->tv_sec == 0 && tstamp->tv_nsec == 0) in pcm_get_htimestamp()
488 int pcm_mmap_get_hw_ptr(struct pcm* pcm, unsigned int *hw_ptr, struct timespec *tstamp) in pcm_mmap_get_hw_ptr() argument
493 if (pcm == NULL || hw_ptr == NULL || tstamp == NULL) in pcm_mmap_get_hw_ptr()
494 return oops(pcm, EINVAL, "pcm %p, hw_ptr %p, tstamp %p", pcm, hw_ptr, tstamp); in pcm_mmap_get_hw_ptr()
510 *tstamp = pcm->mmap_status->tstamp; in pcm_mmap_get_hw_ptr()
511 if (tstamp->tv_sec == 0 && tstamp->tv_nsec == 0) in pcm_mmap_get_hw_ptr()
/external/kernel-headers/original/uapi/sound/
Dasound.h447 struct timespec tstamp; /* reference timestamp */ member
466 struct timespec tstamp; /* Timestamp */ member
637 struct timespec tstamp; /* Timestamp */ member
749 struct timespec tstamp; /* Timestamp - last update */ member
799 struct timespec tstamp; member
942 struct timespec tstamp; member
Dcompress_offload.h82 struct snd_compr_tstamp tstamp; member
/external/tinyalsa/include/tinyalsa/
Dasoundlib.h224 struct timespec *tstamp);
248 int pcm_mmap_get_hw_ptr(struct pcm* pcm, unsigned int *hw_ptr, struct timespec *tstamp);
/external/libnl/include/linux-private/linux/
Dif_addr.h58 __u32 tstamp; /* updated timestamp, hundredths of seconds */ member
Dif_link.h224 __u32 tstamp; /* ipv6InterfaceTable updated timestamp */ member
/external/iproute2/include/linux/
Dif_addr.h60 __u32 tstamp; /* updated timestamp, hundredths of seconds */ member
Dif_link.h313 __u32 tstamp; /* ipv6InterfaceTable updated timestamp */ member
/external/kernel-headers/original/uapi/linux/
Dif_addr.h60 __u32 tstamp; /* updated timestamp, hundredths of seconds */ member
/external/tinycompress/include/tinycompress/
Dtinycompress.h116 unsigned int *avail, struct timespec *tstamp);
/external/tcpdump/
Dprint-icmp.c315 icmp_tstamp_print(u_int tstamp) in icmp_tstamp_print() argument
321 msec = tstamp % 1000; in icmp_tstamp_print()
322 sec = tstamp / 1000; in icmp_tstamp_print()
/external/autotest/client/cros/
Dpower_status.py1045 tstamp = float(tstamp_str)
1048 if tstamp <= self._prev_sample[1]:
1050 delta = tstamp - self._prev_sample[1]
1053 tstamp, self._prev_sample[1],
1056 self._prev_sample = (freq, tstamp)
/external/libnl/lib/netfilter/
Dct_obj.c201 const struct nfnl_ct_timestamp *tstamp = nfnl_ct_get_timestamp(ct); in ct_dump_line() local
202 int64_t delta_time = tstamp->stop - tstamp->start; in ct_dump_line()
/external/google-breakpad/src/common/mac/
DGTMLogger.m465 NSString *tstamp = nil;
467 tstamp = [dateFormatter_ stringFromDate:[NSDate date]];
470 tstamp, pname_, pid_, pthread_self(),
/external/walt/pywalt/pywalt/
Dwalt.py203 num, tstamp = reply.strip().split(':')
206 t = float(tstamp) * US # WALT sends timestamps in microseconds

12