/external/blktrace/btt/ |
D | latency.c | 23 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 …]
|
D | seek.c | 102 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()
|
D | globals.h | 241 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/libvpx/nestegg/test/ |
D | test.c | 84 uint64_t duration, tstamp, pkt_tstamp; in main() local 161 nestegg_packet_tstamp(pkt, &tstamp); in main() 163 fprintf(stderr, "* t %u pts %f frames %u\n", track, tstamp / 1e9, cnt); in main() 185 nestegg_packet_tstamp(pkt, &tstamp); in main() 187 fprintf(stderr, "* t %u pts %f frames %u\n", track, tstamp / 1e9, cnt); in main() 209 nestegg_packet_tstamp(pkt, &tstamp); in main() 211 fprintf(stderr, "* t %u pts %f frames %u\n", track, tstamp / 1e9, cnt); in main()
|
/external/chromium/third_party/libjingle/source/talk/base/ |
D | messagequeue.h | 190 virtual void PostAt(uint32 tstamp, MessageHandler *phandler, 192 return DoDelayPost(TimeUntil(tstamp), tstamp, phandler, id, pdata); 224 void DoDelayPost(int cmsDelay, uint32 tstamp, MessageHandler *phandler,
|
D | messagequeue.cc | 282 void MessageQueue::DoDelayPost(int cmsDelay, uint32 tstamp, in DoDelayPost() argument 297 DelayedMessage dmsg(cmsDelay, tstamp, dmsgq_next_num_, msg); in DoDelayPost()
|
/external/libvpx/nestegg/include/nestegg/ |
D | nestegg.h | 181 int nestegg_track_seek(nestegg * context, unsigned int track, uint64_t tstamp); 268 int nestegg_packet_tstamp(nestegg_packet * packet, uint64_t * tstamp);
|
/external/kernel-headers/original/sound/ |
D | asound.h | 396 struct timespec tstamp; /* reference timestamp */ member 411 struct timespec tstamp; /* Timestamp */ member 530 struct timespec tstamp; /* Timestamp */ member 642 struct timespec tstamp; /* Timestamp - last update */ member 692 struct timespec tstamp; member 831 struct timespec tstamp; member
|
/external/iproute2/include/linux/ |
D | if_addr.h | 52 __u32 tstamp; /* updated timestamp, hundredths of seconds */ member
|
D | if_link.h | 173 __u32 tstamp; /* ipv6InterfaceTable updated timestamp */ member
|
/external/kernel-headers/original/linux/ |
D | if_addr.h | 55 __u32 tstamp; /* updated timestamp, hundredths of seconds */ member
|
D | skbuff.h | 237 struct skb_timeval tstamp; member 1380 stamp->tv_sec = skb->tstamp.off_sec; in skb_get_timestamp() 1381 stamp->tv_usec = skb->tstamp.off_usec; in skb_get_timestamp() 1395 skb->tstamp.off_sec = stamp->tv_sec; in skb_set_timestamp() 1396 skb->tstamp.off_usec = stamp->tv_usec; in skb_set_timestamp()
|
D | if_link.h | 176 __u32 tstamp; /* ipv6InterfaceTable updated timestamp */ member
|
/external/tinyalsa/ |
D | pcm.c | 331 struct timespec *tstamp) in pcm_get_htimestamp() argument 348 *tstamp = pcm->mmap_status->tstamp; in pcm_get_htimestamp() 349 if (tstamp->tv_sec == 0 && tstamp->tv_nsec == 0) in pcm_get_htimestamp()
|
/external/libvpx/ |
D | vpxdec.c | 529 uint64_t tstamp=0; in webm_guess_framerate() local 534 for(i=0; tstamp < 1000000000 && i < 50;) in webm_guess_framerate() 545 nestegg_packet_tstamp(pkt, &tstamp); in webm_guess_framerate() 556 *fps_den = tstamp / 1000; in webm_guess_framerate() 576 uint64_t tstamp=0; in file_is_webm() local
|
/external/tcpdump/ |
D | print-icmp.c | 320 icmp_tstamp_print(u_int tstamp) { in icmp_tstamp_print() argument 325 msec = tstamp % 1000; in icmp_tstamp_print() 326 sec = tstamp / 1000; in icmp_tstamp_print()
|
/external/chromium/net/base/ |
D | network_change_notifier_netlink_linux.cc | 50 if (cache_info->cstamp != cache_info->tstamp) in IsDuplicateIPv6AddressUpdate()
|
/external/tinyalsa/include/tinyalsa/ |
D | asoundlib.h | 145 struct timespec *tstamp);
|
/external/libvpx/nestegg/src/ |
D | nestegg.c | 1372 ne_find_cue_point_for_tstamp(struct ebml_list_node * cue_point, uint64_t scale, uint64_t tstamp) in ne_find_cue_point_for_tstamp() argument 1384 if (ne_get_uint(c->time, &time) == 0 && time * scale > tstamp) in ne_find_cue_point_for_tstamp() 1533 nestegg_track_seek(nestegg * ctx, unsigned int track, uint64_t tstamp) in nestegg_track_seek() argument 1592 cue_point = ne_find_cue_point_for_tstamp(ctx->segment.cues.cue_point.head, tc_scale, tstamp); in nestegg_track_seek() 1896 nestegg_packet_tstamp(nestegg_packet * pkt, uint64_t * tstamp) in nestegg_packet_tstamp() argument 1898 *tstamp = pkt->timecode; in nestegg_packet_tstamp()
|
/external/iptables/utils/ |
D | pf.os | 676 *:128:1:52:M*,N,W0,N,N,S: @Windows:XP:RFC1323:Windows XP/2000 (RFC1323 no tstamp) 677 *:128:1:52:M*,N,W0,N,N,S: @Windows:2000:RFC1323:Windows XP/2000 (RFC1323 no tstamp) 678 *:128:1:52:M*,N,W*,N,N,S: @Windows:XP:RFC1323:Windows XP/2000 (RFC1323 no tstamp) 679 *:128:1:52:M*,N,W*,N,N,S: @Windows:2000:RFC1323:Windows XP/2000 (RFC1323 no tstamp)
|
/external/libpcap/ |
D | scanner.l | 342 icmp-tstamp { yylval.i = 13; return NUM; }
|