Searched defs:ntp (Results 1 - 11 of 11) sorted by relevance

/external/webrtc/webrtc/system_wrappers/source/
H A Dntp_time_unittest.cc22 NtpTime ntp; local
23 EXPECT_FALSE(ntp.Valid());
27 NtpTime ntp(kNtpSec, kNtpFrac);
28 EXPECT_TRUE(ntp.Valid());
29 ntp.Reset();
30 EXPECT_FALSE(ntp.Valid());
34 NtpTime ntp; local
35 ntp.Set(kNtpSec, kNtpFrac);
36 EXPECT_EQ(kNtpSec, ntp.seconds());
37 EXPECT_EQ(kNtpFrac, ntp
[all...]
/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
H A Drrtr.h39 void WithNtp(const NtpTime& ntp) { ntp_ = ntp; } argument
41 NtpTime ntp() const { return ntp_; } function in class:webrtc::rtcp::Rrtr
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Dtime_util.h20 inline uint32_t NtpToRtp(NtpTime ntp, uint32_t freq) { argument
21 uint32_t tmp = (static_cast<uint64_t>(ntp.fractions()) * freq) >> 32;
22 return ntp.seconds() * freq + tmp;
30 // Helper function for compact ntp representation:
38 inline uint32_t CompactNtp(NtpTime ntp) { argument
39 return (ntp.seconds() << 16) | (ntp.fractions() >> 16);
41 // Converts interval between compact ntp timestamps to milliseconds.
/external/ipsec-tools/src/libipsec/
H A Dkey_debug.c527 struct sadb_x_nat_t_port *ntp = (void *)ext; local
533 printf("sadb_x_nat_t_port{ port=%u }\n", ntohs(ntp->sadb_x_nat_t_port_port));
/external/libpcap/
H A Dpcap-snit.c122 register struct nit_iftime *ntp; local
175 ntp = (struct nit_iftime *)cp;
176 cp += sizeof(*ntp);
195 h.ts = ntp->nh_timestamp;
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 87 milliseconds