/external/eigen/Eigen/src/Core/ |
D | GenericPacketMath.h | 150 template<typename Packet> EIGEN_DEVICE_FUNC inline Packet 151 padd(const Packet& a, 152 const Packet& b) { return a+b; } 155 template<typename Packet> EIGEN_DEVICE_FUNC inline Packet 156 psub(const Packet& a, 157 const Packet& b) { return a-b; } 160 template<typename Packet> EIGEN_DEVICE_FUNC inline Packet 161 pnegate(const Packet& a) { return -a; } 165 template<typename Packet> EIGEN_DEVICE_FUNC inline Packet 166 pconj(const Packet& a) { return numext::conj(a); } [all …]
|
/external/eigen/unsupported/Eigen/src/SpecialFunctions/ |
D | SpecialFunctionsPacketMath.h | 18 template<typename Packet> EIGEN_DECLARE_FUNCTION_ALLOWING_MULTIPLE_DEFINITIONS 19 Packet plgamma(const Packet& a) { using numext::lgamma; return lgamma(a); } in plgamma() 22 template<typename Packet> EIGEN_DECLARE_FUNCTION_ALLOWING_MULTIPLE_DEFINITIONS 23 Packet pdigamma(const Packet& a) { using numext::digamma; return digamma(a); } in pdigamma() 26 template<typename Packet> EIGEN_DECLARE_FUNCTION_ALLOWING_MULTIPLE_DEFINITIONS 27 Packet pzeta(const Packet& x, const Packet& q) { using numext::zeta; return zeta(x, q); } in pzeta() 30 template<typename Packet> EIGEN_DECLARE_FUNCTION_ALLOWING_MULTIPLE_DEFINITIONS 31 Packet ppolygamma(const Packet& n, const Packet& x) { using numext::polygamma; return polygamma(n, … in ppolygamma() 34 template<typename Packet> EIGEN_DECLARE_FUNCTION_ALLOWING_MULTIPLE_DEFINITIONS 35 Packet perf(const Packet& a) { using numext::erf; return erf(a); } in perf() [all …]
|
D | SpecialFunctionsFunctors.h | 30 template<typename Packet> 31 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Packet packetOp(const Packet& a, const Packet& x) cons… in packetOp() 56 template<typename Packet> 57 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Packet packetOp(const Packet& a, const Packet& x) const 81 template<typename Packet> 82 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Packet packetOp(const Packet& x, const Packet& a, cons… 107 typedef typename packet_traits<Scalar>::type Packet; 108 EIGEN_DEVICE_FUNC inline Packet packetOp(const Packet& a) const { return internal::plgamma(a); } 129 typedef typename packet_traits<Scalar>::type Packet; 130 EIGEN_DEVICE_FUNC inline Packet packetOp(const Packet& a) const { return internal::pdigamma(a); } [all …]
|
/external/webrtc/webrtc/test/ |
D | rtcp_packet_parser.cc | 32 sender_report_.Set(parser.Packet().SR); in Parse() 35 receiver_report_.Set(parser.Packet().RR); in Parse() 38 report_block_.Set(parser.Packet().ReportBlockItem); in Parse() 39 ++report_blocks_per_ssrc_[parser.Packet().ReportBlockItem.SSRC]; in Parse() 45 sdes_chunk_.Set(parser.Packet().CName); in Parse() 48 bye_.Set(parser.Packet().BYE); in Parse() 51 app_.Set(parser.Packet().APP); in Parse() 54 app_item_.Set(parser.Packet().APP); in Parse() 60 ij_item_.Set(parser.Packet().ExtendedJitterReportItem); in Parse() 63 pli_.Set(parser.Packet().PLI); in Parse() [all …]
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorFunctors.h | 70 template <typename Packet> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE 71 Packet packetOp(const Packet& x) const { 72 const Packet one = pset1<Packet>(T(1)); 105 template <typename Packet> 106 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void reducePacket(const Packet& p, Packet* accum) const { 107 (*accum) = padd<Packet>(*accum, p); 114 template <typename Packet> 115 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Packet initializePacket() const { 116 return pset1<Packet>(initialize()); 121 template <typename Packet> [all …]
|
/external/eigen/Eigen/src/Core/functors/ |
D | UnaryFunctors.h | 31 template <typename Packet> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE 32 Packet packetOp(const Packet& x) const { in packetOp() 33 const Packet one = pset1<Packet>(T(1)); in packetOp() 56 template<typename Packet> 57 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Packet packetOp(const Packet& a) const 76 template<typename Packet> 77 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Packet packetOp(const Packet& a) const 127 template<typename Packet> 128 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Packet packetOp(const Packet& a) const 144 template<typename Packet> [all …]
|
D | BinaryFunctors.h | 43 template<typename Packet> 44 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Packet packetOp(const Packet& a, const Packet& b) const in packetOp() 46 template<typename Packet> 47 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const result_type predux(const Packet& a) const in predux() 87 template<typename Packet> 88 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Packet packetOp(const Packet& a, const Packet& b) const 90 template<typename Packet> 91 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const result_type predux(const Packet& a) const 122 template<typename Packet> 123 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Packet packetOp(const Packet& a, const Packet& b) const [all …]
|
D | AssignmentFunctors.h | 26 template<int Alignment, typename Packet> 27 EIGEN_STRONG_INLINE void assignPacket(DstScalar* a, const Packet& b) const in assignPacket() 28 { internal::pstoret<DstScalar,Packet,Alignment>(a,b); } in assignPacket() 51 template<int Alignment, typename Packet> 52 EIGEN_STRONG_INLINE void assignPacket(DstScalar* a, const Packet& b) const 53 …{ internal::pstoret<DstScalar,Packet,Alignment>(a,internal::padd(internal::ploadt<Packet,Alignment… 72 template<int Alignment, typename Packet> 73 EIGEN_STRONG_INLINE void assignPacket(DstScalar* a, const Packet& b) const 74 …{ internal::pstoret<DstScalar,Packet,Alignment>(a,internal::psub(internal::ploadt<Packet,Alignment… 94 template<int Alignment, typename Packet> [all …]
|
D | NullaryFunctors.h | 40 template <typename Scalar, typename Packet, bool IsInteger> struct linspaced_op_impl; 42 template <typename Scalar, typename Packet> 43 struct linspaced_op_impl<Scalar,Packet,/*IsInteger*/false> 60 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Packet packetOp(IndexType i) const 66 Packet pi = plset<Packet>(Scalar(i-m_size1)); 67 Packet res = padd(pset1<Packet>(m_high), pmul(pset1<Packet>(m_step), pi)); 74 Packet pi = plset<Packet>(Scalar(i)); 75 Packet res = padd(pset1<Packet>(m_low), pmul(pset1<Packet>(m_step), pi)); 76 if(i==m_size1-unpacket_traits<Packet>::size+1) 89 template <typename Scalar, typename Packet> [all …]
|
/external/eigen/Eigen/src/SparseLU/ |
D | SparseLU_gemm_kernel.h | 30 typedef typename packet_traits<Scalar>::type Packet; in sparselu_gemm() typedef 74 Packet b00, b10, b20, b30, b01, b11, b21, b31; in sparselu_gemm() 75 { b00 = pset1<Packet>(Bc0[0]); } in sparselu_gemm() 76 { b10 = pset1<Packet>(Bc0[1]); } in sparselu_gemm() 77 if(RK==4) { b20 = pset1<Packet>(Bc0[2]); } in sparselu_gemm() 78 if(RK==4) { b30 = pset1<Packet>(Bc0[3]); } in sparselu_gemm() 79 { b01 = pset1<Packet>(Bc1[0]); } in sparselu_gemm() 80 { b11 = pset1<Packet>(Bc1[1]); } in sparselu_gemm() 81 if(RK==4) { b21 = pset1<Packet>(Bc1[2]); } in sparselu_gemm() 82 if(RK==4) { b31 = pset1<Packet>(Bc1[3]); } in sparselu_gemm() [all …]
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
D | ParsedEvent.java | 44 protected ParsedEvent(byte suspendPolicy, Packet packet, byte eventKind) { in ParsedEvent() 88 protected EventThread(byte suspendPolicy, Packet packet, byte eventKind) { in EventThread() 114 protected EventThreadLocation(byte suspendPolicy, Packet packet, in EventThreadLocation() 142 protected EventThreadMonitor(byte suspendPolicy, Packet packet, in EventThreadMonitor() 175 private Event_VM_START(byte suspendPolicy, Packet packet) { in Event_VM_START() 191 private Event_SINGLE_STEP(byte suspendPolicy, Packet packet) { in Event_SINGLE_STEP() 207 private Event_BREAKPOINT(byte suspendPolicy, Packet packet) { in Event_BREAKPOINT() 223 private Event_METHOD_ENTRY(byte suspendPolicy, Packet packet) { in Event_METHOD_ENTRY() 239 private Event_METHOD_EXIT(byte suspendPolicy, Packet packet) { in Event_METHOD_EXIT() 257 private Event_METHOD_EXIT_WITH_RETURN_VALUE(byte suspendPolicy, Packet packet) { in Event_METHOD_EXIT_WITH_RETURN_VALUE() [all …]
|
/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
D | fec_receiver_unittest.cc | 40 void GenerateFEC(std::list<Packet*>* media_packets, in GenerateFEC() 41 std::list<Packet*>* fec_packets, in GenerateFEC() 51 std::list<Packet*>* media_packets) { in GenerateFrame() 78 void BuildAndAddRedFecPacket(Packet* packet) { in BuildAndAddRedFecPacket() 97 void DeletePackets(std::list<Packet*>* packets) { in DeletePackets() 107 std::list<Packet*> media_packets; in TEST_F() 109 std::list<Packet*> fec_packets; in TEST_F() 118 std::list<Packet*>::iterator fec_it = fec_packets.begin(); in TEST_F() 138 std::list<Packet*> media_packets; in InjectGarbagePacketLength() 140 std::list<Packet*> fec_packets; in InjectGarbagePacketLength() [all …]
|
/external/eigen/test/ |
D | packetmath.cpp | 67 internal::pstore(data2, POP(internal::pload<Packet>(data1))); \ 71 template<bool Cond,typename Packet> 75 inline Packet load(const T* from) const { return internal::pload<Packet>(from); } in load() 78 inline void store(T* to, const Packet& x) const { internal::pstore(to,x); } in store() 81 template<typename Packet> 82 struct packet_helper<false,Packet> 92 packet_helper<COND,Packet> h; \ 100 packet_helper<COND,Packet> h; \ 116 typedef typename PacketTraits::type Packet; in packetmath() typedef 124 EIGEN_ALIGN_MAX Packet packets[PacketSize*2]; in packetmath() [all …]
|
/external/webrtc/webrtc/base/ |
D | testclient.cc | 23 packets_ = new std::vector<Packet*>(); in TestClient() 54 TestClient::Packet* TestClient::NextPacket(int timeout_ms) { in NextPacket() 78 Packet* packet = NULL; in NextPacket() 91 Packet* packet = NextPacket(kTimeoutMs); in CheckNextPacket() 103 Packet* packet = NextPacket(kNoPacketTimeoutMs); in CheckNoPacket() 125 packets_->push_back(new Packet(remote_addr, buf, size)); in OnPacket() 132 TestClient::Packet::Packet(const SocketAddress& a, const char* b, size_t s) in Packet() function in rtc::TestClient::Packet 138 TestClient::Packet::Packet(const Packet& p) in Packet() function in rtc::TestClient::Packet 144 TestClient::Packet::~Packet() { in ~Packet()
|
D | testclient.h | 25 struct Packet { struct 26 Packet(const SocketAddress& a, const char* b, size_t s); 27 Packet(const Packet& p); 28 virtual ~Packet(); 63 Packet* NextPacket(int timeout_ms); 90 std::vector<Packet*>* packets_;
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
D | packet.h | 22 struct Packet { struct 31 Packet() in Packet() argument 46 bool operator==(const Packet& rhs) const { 52 bool operator!=(const Packet& rhs) const { return !operator==(rhs); } 53 bool operator<(const Packet& rhs) const { 79 bool operator>(const Packet& rhs) const { return rhs.operator<(*this); } 80 bool operator<=(const Packet& rhs) const { return !operator>(rhs); } 81 bool operator>=(const Packet& rhs) const { return !operator<(rhs); } 85 typedef std::list<Packet*> PacketList;
|
D | payload_splitter.cc | 32 Packet* red_packet = (*it); in SplitRed() 52 Packet* new_packet = new Packet; in SplitRed() 129 Packet* packet = (*it); // Just to make the notation more intuitive. in SplitFec() 161 Packet* new_packet = new Packet; in SplitFec() 224 Packet* packet = (*it); // Just to make the notation more intuitive. in SplitAudio() 358 void PayloadSplitter::SplitBySamples(const Packet* packet, in SplitBySamples() 382 Packet* new_packet = new Packet; in SplitBySamples() 396 Packet* new_packet = new Packet; in SplitBySamples() 407 int PayloadSplitter::SplitByFrames(const Packet* packet, in SplitByFrames() 426 Packet* new_packet = new Packet; in SplitByFrames()
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/ |
D | packet.h | 26 class Packet { 30 Packet(); 31 Packet(int flow_id, int64_t send_time_us, size_t payload_size); 32 virtual ~Packet(); 34 virtual bool operator<(const Packet& rhs) const; 41 virtual Packet::Type GetPacketType() const = 0; 64 class MediaPacket : public Packet { 86 virtual Packet::Type GetPacketType() const { return kMedia; } in GetPacketType() 98 class FeedbackPacket : public Packet { 103 : Packet(flow_id, this_send_time_us, 0), in FeedbackPacket() [all …]
|
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/ |
D | packet.cc | 21 Packet::Packet(uint8_t* packet_memory, in Packet() function in webrtc::test::Packet 35 Packet::Packet(uint8_t* packet_memory, in Packet() function in webrtc::test::Packet 50 Packet::Packet(uint8_t* packet_memory, size_t allocated_bytes, double time_ms) in Packet() function in webrtc::test::Packet 62 Packet::Packet(uint8_t* packet_memory, in Packet() function in webrtc::test::Packet 77 bool Packet::ExtractRedHeaders(std::list<RTPHeader*>* headers) const { in ExtractRedHeaders() 117 void Packet::DeleteRedHeaders(std::list<RTPHeader*>* headers) { in DeleteRedHeaders() 124 void Packet::ConvertHeader(WebRtcRTPHeader* copy_to) const { in ConvertHeader() 132 bool Packet::ParseHeader(const RtpHeaderParser& parser) { in ParseHeader() 149 void Packet::CopyToHeader(RTPHeader* destination) const { in CopyToHeader()
|
D | packet.h | 29 class Packet { 37 Packet(uint8_t* packet_memory, 48 Packet(uint8_t* packet_memory, 58 Packet(uint8_t* packet_memory, size_t allocated_bytes, double time_ms); 60 Packet(uint8_t* packet_memory, 65 virtual ~Packet() {} in ~Packet() 117 RTC_DISALLOW_COPY_AND_ASSIGN(Packet);
|
/external/webrtc/webrtc/voice_engine/test/auto_test/fixtures/ |
D | after_initialization_fixture.h | 45 StorePacket(Packet::Rtp, data, len); in SendRtp() 50 StorePacket(Packet::Rtcp, data, len); in SendRtcp() 70 struct Packet { struct 73 Packet() : len(0) {} in Packet() argument 74 Packet(Type type, const void* data, size_t len) in Packet() function 84 void StorePacket(Packet::Type type, in StorePacket() argument 89 packet_queue_.push_back(Packet(type, data, len)); in StorePacket() 110 Packet p; in SendPackets() 119 if (p.type == Packet::Rtp) { in SendPackets() 133 case Packet::Rtp: in SendPackets() [all …]
|
/external/eigen/Eigen/src/Core/products/ |
D | SelfadjointMatrixVector.h | 46 typedef typename packet_traits<Scalar>::type Packet; in run() typedef 48 const Index PacketSize = sizeof(Packet)/sizeof(Scalar); in run() 60 …conj_helper<Packet,Packet,NumTraits<Scalar>::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, IsRowMa… in run() 61 …conj_helper<Packet,Packet,NumTraits<Scalar>::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, !IsRowMa… in run() 77 Packet ptmp0 = pset1<Packet>(t0); in run() 79 Packet ptmp1 = pset1<Packet>(t1); in run() 82 Packet ptmp2 = pset1<Packet>(t2); in run() 84 Packet ptmp3 = pset1<Packet>(t3); in run() 118 Packet A0i = ploadu<Packet>(a0It); a0It += PacketSize; in run() 119 Packet A1i = ploadu<Packet>(a1It); a1It += PacketSize; in run() [all …]
|
/external/webrtc/webrtc/modules/pacing/ |
D | paced_sender.cc | 40 struct Packet { struct 41 Packet(RtpPacketSender::Priority priority, in Packet() argument 66 std::list<Packet>::iterator this_it; argument 71 bool operator()(const Packet* first, const Packet* second) { in operator ()() 98 void Push(const Packet& packet) { in Push() 108 std::list<Packet>::iterator it = packet_list_.begin(); in Push() 114 const Packet& BeginPop() { in BeginPop() 115 const Packet& packet = *prio_queue_.top(); in BeginPop() 120 void CancelPop(const Packet& packet) { prio_queue_.push(&(*packet.this_it)); } in CancelPop() 122 void FinalizePop(const Packet& packet) { in FinalizePop() [all …]
|
/external/eigen/Eigen/src/Jacobi/ |
D | Jacobi.h | 309 typedef typename packet_traits<Scalar>::type Packet; in apply_rotation_in_the_plane() typedef 339 conj_helper<OtherPacket,Packet,NumTraits<OtherScalar>::IsComplex,false> pcj; in apply_rotation_in_the_plane() 340 conj_helper<OtherPacket,Packet,false,false> pm; in apply_rotation_in_the_plane() 357 Packet xi = pload<Packet>(px); in apply_rotation_in_the_plane() 358 Packet yi = pload<Packet>(py); in apply_rotation_in_the_plane() 370 Packet xi = ploadu<Packet>(px); in apply_rotation_in_the_plane() 371 Packet xi1 = ploadu<Packet>(px+PacketSize); in apply_rotation_in_the_plane() 372 Packet yi = pload <Packet>(py); in apply_rotation_in_the_plane() 373 Packet yi1 = pload <Packet>(py+PacketSize); in apply_rotation_in_the_plane() 383 Packet xi = ploadu<Packet>(x+peelingEnd); in apply_rotation_in_the_plane() [all …]
|
/external/eigen/bench/ |
D | bench_norm.cpp | 145 typedef typename internal::packet_traits<Scalar>::type Packet; in pblueNorm() 147 Packet pasml = internal::pset1<Packet>(Scalar(0)); in pblueNorm() 148 Packet pamed = internal::pset1<Packet>(Scalar(0)); in pblueNorm() 149 Packet pabig = internal::pset1<Packet>(Scalar(0)); in pblueNorm() 150 Packet ps2m = internal::pset1<Packet>(s2m); in pblueNorm() 151 Packet ps1m = internal::pset1<Packet>(s1m); in pblueNorm() 152 Packet pb2 = internal::pset1<Packet>(b2); in pblueNorm() 153 Packet pb1 = internal::pset1<Packet>(b1); in pblueNorm() 156 Packet ax = internal::pabs(v.template packet<Aligned>(j)); in pblueNorm() 157 Packet ax_s2m = internal::pmul(ax,ps2m); in pblueNorm() [all …]
|