HomeSort by relevance Sort by last modified time
    Searched refs:Packet (Results 1 - 25 of 586) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/eigen/unsupported/Eigen/src/SpecialFunctions/
SpecialFunctionsPacketMath.h 18 template<typename Packet> EIGEN_DECLARE_FUNCTION_ALLOWING_MULTIPLE_DEFINITIONS
19 Packet plgamma(const Packet& a) { using numext::lgamma; return lgamma(a); }
22 template<typename Packet> EIGEN_DECLARE_FUNCTION_ALLOWING_MULTIPLE_DEFINITIONS
23 Packet pdigamma(const Packet& a) { using numext::digamma; return digamma(a); }
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);
    [all...]
SpecialFunctionsFunctors.h 30 template<typename Packet>
31 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Packet packetOp(const Packet& a, const Packet& x) const {
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, const Packet& b) cons
    [all...]
  /external/eigen/Eigen/src/Core/
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
540 Packet packet[N]; member in struct:Eigen::internal::PacketBlock
    [all...]
  /system/bt/packet/base/
packet.cc 17 #include "packet.h"
26 size_t Packet::size() const { return packet_end_index_ - packet_start_index_; }
28 Iterator Packet::begin() const {
32 Iterator Packet::end() const {
36 // For the Array operator, treat index 0 as the relative start of the packet
37 uint8_t Packet::operator[](size_t i) {
41 size_t Packet::get_length() const { return data_->size(); }
44 uint8_t Packet::get_at_index(size_t index) const {
packet.h 29 class Packet : public std::enable_shared_from_this<Packet> {
34 virtual ~Packet() = default;
37 Packet()
41 Packet(std::shared_ptr<const Packet> pkt, size_t start, size_t end)
43 Packet(std::shared_ptr<const Packet> pkt) : data_(pkt->data_) {
56 // Check to see if the packet is structured correctly and have the correct
57 // lengths. Data access on an invalid packet may cause a crash
    [all...]
packet_builder.h 23 class Packet;
28 virtual bool Serialize(const std::shared_ptr<Packet>& pkt) = 0;
34 void ReserveSpace(const std::shared_ptr<Packet>& pkt, size_t size);
35 bool AddPayloadOctets1(const std::shared_ptr<Packet>& pkt, uint8_t value) {
38 bool AddPayloadOctets2(const std::shared_ptr<Packet>& pkt, uint16_t value) {
41 bool AddPayloadOctets3(const std::shared_ptr<Packet>& pkt, uint32_t value) {
44 bool AddPayloadOctets4(const std::shared_ptr<Packet>& pkt, uint32_t value) {
47 bool AddPayloadOctets6(const std::shared_ptr<Packet>& pkt, uint64_t value) {
50 bool AddPayloadOctets8(const std::shared_ptr<Packet>& pkt, uint64_t value) {
58 bool AddPayloadOctets(const std::shared_ptr<Packet>& pkt, size_t octets
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
fec_test_helper.h 23 typedef ForwardErrorCorrection::Packet Packet;
25 struct RtpPacket : public Packet {
39 // Creates a new RtpPacket with the RED header added to the packet.
40 RtpPacket* BuildMediaRedPacket(const RtpPacket* packet);
44 // header. Finally replaces the payload with the content of |packet->data|.
45 RtpPacket* BuildFecRedPacket(const Packet* packet);
47 void SetRedHeader(Packet* red_packet, uint8_t payload_type,
  /external/scapy/scapy/contrib/
ubberlogger.py 20 from scapy.packet import *
40 class Uberlogger_honeypot_caract(Packet):
47 class Uberlogger_uber_h(Packet):
62 class Uberlogger_capget_data(Packet):
66 class Uberlogger_capset_data(Packet):
73 class Uberlogger_chmod_data(Packet):
77 class Uberlogger_chown_data(Packet):
82 class Uberlogger_open_data(Packet):
87 class Uberlogger_read_data(Packet):
92 class Uberlogger_setuid_data(Packet)
    [all...]
  /external/webrtc/webrtc/test/
rtcp_packet_parser.cc 25 const uint8_t* packet = static_cast<const uint8_t*>(data); local
26 RTCPUtility::RTCPParserV2 parser(packet, len, true);
32 sender_report_.Set(parser.Packet().SR);
35 receiver_report_.Set(parser.Packet().RR);
38 report_block_.Set(parser.Packet().ReportBlockItem);
39 ++report_blocks_per_ssrc_[parser.Packet().ReportBlockItem.SSRC];
45 sdes_chunk_.Set(parser.Packet().CName);
48 bye_.Set(parser.Packet().BYE);
51 app_.Set(parser.Packet().APP);
54 app_item_.Set(parser.Packet().APP)
    [all...]
  /system/bt/vendor_libs/test_vendor_lib/src/
packet.cc 17 #define LOG_TAG "packet"
19 #include "packet.h"
30 Packet::Packet(serial_data_type_t type, vector<uint8_t> header)
35 bool Packet::AddPayloadOctets(size_t octets, const vector<uint8_t>& bytes) {
46 bool Packet::AddPayloadOctets(size_t octets, uint64_t value) {
63 bool Packet::AddPayloadBtAddress(const BtAddress& address) {
73 bool Packet::IncrementPayloadCounter(size_t index) {
80 bool Packet::IncrementPayloadCounter(size_t index, uint8_t max_val) {
89 const vector<uint8_t>& Packet::GetHeader() const
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
ReplyPacket.java 28 import org.apache.harmony.jpda.tests.framework.jdwp.Packet;
31 * This class represents JDWP reply packet.
33 public class ReplyPacket extends Packet {
52 * the JDWP packet, given as array of bytes.
57 Packet.SHORT_SIZE);
90 Packet.SHORT_SIZE);
  /external/webrtc/webrtc/modules/audio_coding/neteq/
packet.h 22 struct Packet {
31 Packet()
39 // Comparison operators. Establish a packet ordering based on (1) timestamp,
40 // (2) sequence number, (3) regular packet vs sync-packet and (4) redundancy.
43 // the packets is sync-packet, the regular packet is considered earlier. For
46 bool operator==(const Packet& rhs) const {
52 bool operator!=(const Packet& rhs) const { return !operator==(rhs); }
53 bool operator<(const Packet& rhs) const
    [all...]
  /system/bt/packet/avrcp/
avrcp_packet.cc 39 // The size of the header for an Packet is 3
40 return payload_->size() + Packet::kMinSize();
43 bool PacketBuilder::Serialize(const std::shared_ptr<::bluetooth::Packet>& pkt) {
46 // Push the header for the packet
49 // Push the payload for the packet
54 const std::shared_ptr<::bluetooth::Packet>& pkt) {
61 const std::shared_ptr<::bluetooth::Packet>& pkt, uint32_t company_id) {
71 std::shared_ptr<Packet> Packet::Parse(
72 std::shared_ptr<::bluetooth::Packet> pkt)
    [all...]
avrcp_packet.h 26 #include "packet.h"
38 std::unique_ptr<::bluetooth::PacketBuilder> packet);
42 const std::shared_ptr<::bluetooth::Packet>& pkt) override;
51 void PushHeader(const std::shared_ptr<::bluetooth::Packet>& pkt);
52 bool PushCompanyId(const std::shared_ptr<::bluetooth::Packet>& pkt,
63 class Packet : public ::bluetooth::Packet {
65 virtual ~Packet() = default;
68 // another packet type. In the future, we can remove this in favor of
69 // getting an AVRCP Packet directly from an AVCTP Packe
    [all...]
pass_through_packet.h 33 const std::shared_ptr<::bluetooth::Packet>& pkt) override;
46 class PassThroughPacket : public Packet {
51 * Pass Through Packet Layout
62 static constexpr size_t kMinSize() { return Packet::kMinSize() + 2; }
73 using Packet::Packet;
vendor_packet.h 34 const std::shared_ptr<::bluetooth::Packet>& pkt) override;
41 void PushHeader(const std::shared_ptr<::bluetooth::Packet>& pkt,
44 // Helper function used a couple other AVRCP packet builders
45 bool PushAttributeValue(const std::shared_ptr<::bluetooth::Packet>& pkt,
54 class VendorPacket : public avrcp::Packet {
59 * Avrcp Vendor Packet Layout
72 static constexpr size_t kMinSize() { return Packet::kMinSize() + 7; };
85 using Packet::Packet;
  /device/linaro/bootloader/edk2/EmbeddedPkg/GdbStub/
SerialIo.c 5 Basic packet format is $packet-data#checksum. So every comand has 4 bytes of overhead: $,
30 // If the periodic callback is called while we are processing an F packet we need
32 // characters from the F reponse packet
41 @param ErrNo Error infomration from the F reply packet or other source
60 Parse the F reply packet and extract the return value and an ErrNo if it exists.
62 @param Packet Packet to parse like an F reply packet
65 @retval -1 Error, not a valid F reply packet
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ufs/UfsBlockIoPei/
UfsBlockIoPei.c 142 @retval EFI_DEVICE_ERROR A device error occurred while attempting to send SCSI Request Packet.
143 @retval EFI_TIMEOUT A timeout occurred while waiting for the SCSI Request Packet to execute.
154 UFS_SCSI_REQUEST_PACKET Packet;
158 ZeroMem (&Packet, sizeof (UFS_SCSI_REQUEST_PACKET));
163 Packet.Timeout = UFS_TIMEOUT;
164 Packet.Cdb = Cdb;
165 Packet.CdbLength = sizeof (Cdb);
166 Packet.DataDirection = UfsDataIn;
167 Packet.InDataBuffer = DataBuffer;
168 Packet.InTransferLength = *DataBufferLength;
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
eigen_activations.h 39 template <typename Packet>
40 inline Packet packetOp(const Packet& y) const {
41 const Packet one = internal::pset1<Packet>(1);
73 template <typename Packet>
74 inline Packet packetOp(const Packet& y) const {
75 const Packet one = internal::pset1<Packet>(1)
    [all...]
cwise_ops_gradients.h 34 template <typename Packet>
35 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Packet
36 packetOp(const Packet& output, const Packet& output_gradient) const {
38 psub(pset1<Packet>(T(1)), pmul(output, output)));
57 template <typename Packet>
58 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Packet
59 packetOp(const Packet& output, const Packet& output_gradient) const {
61 pmul(output, psub(pset1<Packet>(T(1)), output)))
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Input.c 20 Create an empty assemble entry for the packet identified by
21 (Dst, Src, Id). The default life for the packet is 60 seconds.
56 Assemble->Packet = NULL;
62 Release all the fragments of a packet, then free the assemble entry.
83 if (Assemble->Packet != NULL) {
84 NetbufFree (Assemble->Packet);
91 Release all the fragments of the packet. This is the callback for
92 the assembled packet's OnFree. It will free the assemble entry,
93 which in turn frees all the fragments of the packet.
108 Trim the packet to fit in [Start, End), and update per the
    [all...]
Ip6Icmp.c 124 @param[in] IpSb The IP service that received the packet.
126 @param[in] Packet The content of the ICMPv6 message with the IP head
138 IN NET_BUF *Packet
148 // make a copy the packet, it is really a bad idea to
151 Data = NetbufDuplicate (Packet, NULL, IP6_MAX_HEADLEN);
178 ReplyHead.PayloadLength = HTONS ((UINT16) (Packet->TotalSize));
203 NetbufFree (Packet);
208 Process Packet Too Big message sent by a router in response to a packet that
209 it cannot forward because the packet is larger than the MTU of outgoing link.
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/SdMmc/DwMmcHcDxe/
EmmcDevice.c 54 EFI_SD_MMC_PASS_THRU_COMMAND_PACKET Packet;
59 ZeroMem (&Packet, sizeof (Packet));
61 Packet.SdMmcCmdBlk = &SdMmcCmdBlk;
62 Packet.SdMmcStatusBlk = &SdMmcStatusBlk;
63 Packet.Timeout = DW_MMC_HC_GENERIC_TIMEOUT;
72 Status = DwMmcPassThruPassThru (PassThru, Slot, &Packet, NULL);
100 EFI_SD_MMC_PASS_THRU_COMMAND_PACKET Packet;
105 ZeroMem (&Packet, sizeof (Packet));
    [all...]
  /external/webrtc/webrtc/base/
testclient.h 24 // Records the contents of a packet that was received.
25 struct Packet {
26 Packet(const SocketAddress& a, const char* b, size_t s);
27 Packet(const Packet& p);
28 virtual ~Packet();
60 // Returns the next packet received by the client or 0 if none is received
61 // within the specified timeout. The caller must delete the packet
63 Packet* NextPacket(int timeout_ms);
65 // Checks that the next packet has the given contents. Returns the remot
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
packet.h 29 class Packet {
31 // Creates a packet, with the packet payload (including header bytes) in
34 // when the Packet object is deleted. The |time_ms| is an extra time
35 // associated with this packet, typically used to denote arrival time.
37 Packet(uint8_t* packet_memory,
45 // |virtual_packet_length_bytes| tells what size the packet had on wire,
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
    [all...]

Completed in 1090 milliseconds

1 2 3 4 5 6 7 8 91011>>