Searched refs:tstamp (Results 1 - 25 of 30) sorted by relevance

12

/external/blktrace/btt/
H A Dlatency.c23 static inline void latency_out(FILE *ofp, __u64 tstamp, __u64 latency) argument
26 fprintf(ofp, "%lf %lf\n", TO_SEC(tstamp), TO_SEC(latency));
57 void latency_q2d(struct d_info *dip, __u64 tstamp, __u64 latency) argument
59 plat_x2c(dip->q2d_plat_handle, tstamp, latency);
60 latency_out(dip->q2d_ofp, tstamp, latency);
63 void latency_d2c(struct d_info *dip, __u64 tstamp, __u64 latency) argument
65 plat_x2c(dip->d2c_plat_handle, tstamp, latency);
66 latency_out(dip->d2c_ofp, tstamp, latency);
69 void latency_q2c(struct d_info *dip, __u64 tstamp, __u64 latency) argument
71 plat_x2c(dip->q2c_plat_handle, tstamp, latenc
[all...]
H A Dseek.c102 double tstamp, s_p_s; local
108 tstamp = sps->t_start;
112 tstamp = sps->t_start + (delta / 2);
256 double tstamp = BIT_TIME(iop->t.time); local
260 fprintf(fp, "%15.9lf %13lld %c\n", tstamp, dist, rw);
262 fprintf(sip->cfp, "%15.9lf %13lld %c\n", tstamp, dist, rw);
269 sps_add(sip, tstamp);
H A 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/owasp/sanitizer/
H A 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 ou
[all...]
/external/iproute2/include/linux/
H A Dif_addr.h60 __u32 tstamp; /* updated timestamp, hundredths of seconds */ member in struct:ifa_cacheinfo
H A Dif_link.h313 __u32 tstamp; /* ipv6InterfaceTable updated timestamp */ member in struct:ifla_cacheinfo
/external/kernel-headers/original/uapi/linux/
H A Dif_addr.h60 __u32 tstamp; /* updated timestamp, hundredths of seconds */ member in struct:ifa_cacheinfo
H A Dif_link.h330 __u32 tstamp; /* ipv6InterfaceTable updated timestamp */ member in struct:ifla_cacheinfo
/external/libnl/include/linux-private/linux/
H A Dif_addr.h58 __u32 tstamp; /* updated timestamp, hundredths of seconds */ member in struct:ifa_cacheinfo
H A Dif_link.h224 __u32 tstamp; /* ipv6InterfaceTable updated timestamp */ member in struct:ifla_cacheinfo
/external/tinycompress/
H A Dcplay.c141 struct timespec tstamp; local
143 if (compress_get_hpointer(compress, &avail, &tstamp) != 0) {
148 fprintf(stderr, "DSP played %jd.%jd\n", (intmax_t)tstamp.tv_sec, (intmax_t)tstamp.tv_nsec*1000);
H A Dcompress.c315 unsigned int *avail, struct timespec *tstamp)
325 if (0 == kavail.tstamp.sampling_rate)
328 time = kavail.tstamp.pcm_io_frames / kavail.tstamp.sampling_rate;
329 tstamp->tv_sec = time;
330 time = kavail.tstamp.pcm_io_frames % kavail.tstamp.sampling_rate;
331 tstamp->tv_nsec = time * 1000000000 / kavail.tstamp.sampling_rate;
344 return oops(compress, errno, "cannot get tstamp");
314 compress_get_hpointer(struct compress *compress, unsigned int *avail, struct timespec *tstamp) argument
[all...]
/external/tinycompress/include/tinycompress/
H A Dtinycompress.h113 * @tstamp: hw time
116 unsigned int *avail, struct timespec *tstamp);
/external/webrtc/webrtc/base/
H A Dmessagequeue.cc309 void MessageQueue::PostAt(uint32_t tstamp, argument
313 return DoDelayPost(TimeUntil(tstamp), tstamp, phandler, id, pdata);
317 uint32_t tstamp,
333 DelayedMessage dmsg(cmsDelay, tstamp, dmsgq_next_num_, msg);
316 DoDelayPost(int cmsDelay, uint32_t tstamp, MessageHandler* phandler, uint32_t id, MessageData* pdata) argument
H A Dmessagequeue.h201 virtual void PostAt(uint32_t tstamp,
239 uint32_t tstamp,
/external/kernel-headers/original/uapi/sound/
H A Dcompress_offload.h78 * @tstamp: timestamp information
82 struct snd_compr_tstamp tstamp; member in struct:snd_compr_avail
155 * This also queries the tstamp properties
H A Dasound.h447 struct timespec tstamp; /* reference timestamp */ member in struct:snd_pcm_status
457 struct timespec driver_tstamp; /* useful in case reference system tstamp is reported with delay */
466 struct timespec tstamp; /* Timestamp */ member in struct:snd_pcm_mmap_status
637 struct timespec tstamp; /* Timestamp */ member in struct:snd_rawmidi_status
749 struct timespec tstamp; /* Timestamp - last update */ member in struct:snd_timer_status
799 struct timespec tstamp; member in struct:snd_timer_tread
942 struct timespec tstamp; member in struct:snd_ctl_elem_value
/external/tinyalsa/
H A Dpcm.c451 struct timespec *tstamp)
468 *tstamp = pcm->mmap_status->tstamp;
469 if (tstamp->tv_sec == 0 && tstamp->tv_nsec == 0)
488 int pcm_mmap_get_hw_ptr(struct pcm* pcm, unsigned int *hw_ptr, struct timespec *tstamp) argument
493 if (pcm == NULL || hw_ptr == NULL || tstamp == NULL)
494 return oops(pcm, EINVAL, "pcm %p, hw_ptr %p, tstamp %p", pcm, hw_ptr, tstamp);
507 *tstamp
450 pcm_get_htimestamp(struct pcm *pcm, unsigned int *avail, struct timespec *tstamp) argument
[all...]
/external/tinyalsa/include/tinyalsa/
H A Dasoundlib.h224 struct timespec *tstamp);
248 int pcm_mmap_get_hw_ptr(struct pcm* pcm, unsigned int *hw_ptr, struct timespec *tstamp);
/external/tcpdump/
H A Dprint-icmp.c314 icmp_tstamp_print(u_int tstamp) argument
320 msec = tstamp % 1000;
321 sec = tstamp / 1000;
/external/autotest/client/cros/
H A Dpower_status.py1043 tstamp = float(tstamp_str)
1046 if tstamp <= self._prev_sample[1]:
1048 delta = tstamp - self._prev_sample[1]
1049 logging.debug("freq:%s tstamp:%f - %f delta:%f",
1051 tstamp, self._prev_sample[1],
1054 self._prev_sample = (freq, tstamp)
1058 logging.debug("freq:%s tstamp:uptime - %f delta:%f",
/external/libnl/lib/netfilter/
H A Dct_obj.c201 const struct nfnl_ct_timestamp *tstamp = nfnl_ct_get_timestamp(ct); local
202 int64_t delta_time = tstamp->stop - tstamp->start;
/external/libnl/lib/route/link/
H A Dinet6.c278 (double) i6->i6_cacheinfo.tstamp / 100.,
/external/webrtc/talk/media/base/
H A Dvideoengine_unittest.h317 uint32_t* tstamp,
341 if (tstamp) *tstamp = u32;
313 ParseRtpPacket(const rtc::Buffer* p, bool* x, int* pt, int* seqnum, uint32_t* tstamp, uint32_t* ssrc, std::string* payload) argument
/external/libpcap/
H A Dscanner.l365 icmp-tstamp { yylval.i = 13; return NUM; }

Completed in 595 milliseconds

12