Searched defs:packets (Results 51 - 72 of 72) sorted by relevance

123

/external/eigen/test/
H A Dpacketmath.cpp109 EIGEN_ALIGN16 Packet packets[PacketSize*2]; local
136 packets[0] = internal::pload<Packet>(data1);
137 packets[1] = internal::pload<Packet>(data1+PacketSize);
138 if (offset==0) internal::palign<0>(packets[0], packets[1]);
139 else if (offset==1) internal::palign<1>(packets[0], packets[1]);
140 else if (offset==2) internal::palign<2>(packets[0], packets[1]);
141 else if (offset==3) internal::palign<3>(packets[
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
H A DPackets.java5 package ch.ethz.ssh2.packets;
/external/chromium_org/chrome/browser/usb/
H A Dusb_device_handle.cc250 // Isochronous replies might carry data in the different isoc packets even
252 // received packets might contain data, so we need to calculate how many
259 // We don't need to copy as long as all packets until now provide
494 const unsigned int packets, const unsigned int packet_length,
501 const uint64 total_length = packets * packet_length;
502 CHECK(packets <= length && total_length <= length) <<
505 PlatformUsbTransferHandle const transfer = libusb_alloc_transfer(packets);
508 reinterpret_cast<uint8*>(buffer->data()), length, packets,
492 IsochronousTransfer(const UsbEndpointDirection direction, const uint8 endpoint, net::IOBuffer* buffer, const size_t length, const unsigned int packets, const unsigned int packet_length, const unsigned int timeout, const UsbTransferCallback& callback) argument
/external/kernel-headers/original/linux/netfilter/
H A Dnf_conntrack_common.h32 /* We've seen packets both ways: bit 1 set. Can be set, not unset. */
138 u_int32_t packets; member in struct:ip_conntrack_counter
/external/qemu/
H A Dshaper.c99 QueuedPacket packets; /* list of queued packets, ordered by expiration date */ member in struct:NetShaperRec_
119 while (shaper->packets) {
120 QueuedPacket packet = shaper->packets;
121 shaper->packets = packet->next;
139 while ((packet = shaper->packets) != NULL) {
145 shaper->packets = packet->next;
152 if (shaper->packets) {
153 shaper->block_until = shaper->packets->expiration;
168 shaper->packets
[all...]
/external/speex/libspeex/
H A Djitter.c41 - Linked list structure for holding the packets instead of the current fixed-size array
67 #define SPEEX_JITTER_MAX_BUFFER_SIZE 200 /**< Maximum number of packets in jitter buffer */
82 /** Buffer that keeps the time of arrival of the latest packets */
86 spx_int32_t timing[MAX_TIMINGS]; /**< Sorted list of all timings ("latest" packets first) */
87 spx_int16_t counts[MAX_TIMINGS]; /**< Order the packets were put in (will be used for short-term estimate) */
145 JitterBufferPacket packets[SPEEX_JITTER_MAX_BUFFER_SIZE]; /**< Packets stored in the buffer */ member in struct:JitterBuffer_
162 int max_late_rate; /**< Absolute maximum amount of late packets tolerable (in percent) */
163 int latency_tradeoff; /**< Latency equivalent of losing one percent of packets */
164 int auto_tradeoff; /**< Latency equivalent of losing one percent of packets (automatic default) */
166 int lost_count; /**< Number of consecutive lost packets */
[all...]
/external/chromium_org/chrome/browser/extensions/api/usb/
H A Dusb_api.cc94 "Number of packets must be a positive number less than 4,194,304.";
1117 if (transfer.packets < 0 || transfer.packets >= kMaxPackets) {
1121 unsigned int packets = transfer.packets; local
1128 const uint64 total_length = packets * packet_length;
1129 if (packets > size || total_length > size) {
1146 packets,
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dvideoengine_unittest.h544 int packets = 0; local
546 packets = NumRtpPackets();
549 } while (NumRtpPackets() > packets);
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvoiceengine_unittest.cc2040 // Test that we can properly receive packets.
2049 // Test that we can properly receive packets on multiple streams.
2059 // Create packets with the right SSRCs.
2060 char packets[4][sizeof(kPcmuFrame)]; local
2061 for (size_t i = 0; i < ARRAY_SIZE(packets); ++i) {
2062 memcpy(packets[i], kPcmuFrame, sizeof(kPcmuFrame));
2063 talk_base::SetBE32(packets[i] + 8, static_cast<uint32>(i));
2068 DeliverPacket(packets[0], sizeof(packets[0]));
2072 DeliverPacket(packets[
[all...]
H A Dfakewebrtcvoiceengine.h130 std::list<std::string> packets; member in struct:cricket::FakeWebRtcVoiceEngine::Channel
225 std::string packet = channels_[channel]->packets.front();
227 channels_[channel]->packets.pop_front();
232 return channels_[channel]->packets.empty();
658 channels_[channel]->packets.push_back(
/external/libogg/src/
H A Dframing.c13 function: code raw packets into framed OggSquish stream and
14 decode Ogg streams back into raw packets
74 /* returns the number of packets that are completed on this page (if
400 2) Unless necessary, don't flush pages if there are less than four packets on
401 them; this expands page size to reduce unneccessary overhead if incoming packets
503 /* This will flush remaining packets into a page (returning nonzero),
505 (undersized page). If there are no packets or partial packets to
508 ogg_stream_flush does not guarantee that all packets have flushed.
553 packets ou
1462 int i,j,packets,pageout=pageskip; local
1644 const int packets[]={17, -1}; local
1653 const int packets[]={17, 254, 255, 256, 500, 510, 600, -1}; local
1662 const int packets[]={0,17, 254, 255, 0, 256, 0, 500, 510, 600, 0, -1}; local
1671 const int packets[]={4345,259,255,-1}; local
1681 const int packets[]={0,65500,259,255,-1}; local
1690 const int packets[]={0,4345,259,255,0,0,-1}; local
1700 const int packets[]={0,10,10,10,10,10,10,10,10, local
1740 const int packets[]={0,100,130049,259,255,-1}; local
1750 const int packets[]={0,100,130049,259,255,-1}; local
1759 const int packets[]={0,100,64770,-1}; local
[all...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dp2ptransportchannel_unittest.cc618 std::list<std::string>& packets = GetPacketList(channel); local
619 packets.push_front(std::string(data, len));
/external/kernel-headers/original/linux/
H A Dpkt_sched.h8 no more precise mechanism to classify packets.
35 __u32 packets; /* Number of enqueued packets */ member in struct:tc_stats
114 __u32 limit; /* Queue length: bytes for bfifo, packets for pfifo */
168 __u32 limit; /* Maximal packets in queue */
217 __u32 marked; /* Marked packets */
251 __u32 packets; member in struct:tc_gred_qopt
288 __u32 direct_pkts; /* count of non shapped packets */
306 __u32 giants; /* too big packets (rate will not be accurate) */
477 __u32 limit; /* fifo limit (packets) */
[all...]
/external/openssh/
H A Dmonitor.c1842 u_int32_t seqnr, packets; local
1872 /* Now get sequence numbers for the packets */
1875 packets = buffer_get_int(&m);
1877 packet_set_state(MODE_OUT, seqnr, blocks, packets, bytes);
1880 packets = buffer_get_int(&m);
1882 packet_set_state(MODE_IN, seqnr, blocks, packets, bytes);
H A Dmonitor_wrap.c601 u_int32_t seqnr, packets; local
652 packet_get_state(MODE_OUT, &seqnr, &blocks, &packets, &bytes);
655 buffer_put_int(&m, packets);
657 packet_get_state(MODE_IN, &seqnr, &blocks, &packets, &bytes);
660 buffer_put_int(&m, packets);
H A Dpacket.c92 u_int32_t packets; member in struct:packet_state
238 active_state->p_send.packets = active_state->p_read.packets = 0;
395 u_int32_t *packets, u_int64_t *bytes)
405 if (packets)
406 *packets = state->packets;
412 packet_set_state(int mode, u_int32_t seqnr, u_int64_t blocks, u_int32_t packets, argument
421 state->packets = packets;
394 packet_get_state(int mode, u_int32_t *seqnr, u_int64_t *blocks, u_int32_t *packets, u_int64_t *bytes) argument
[all...]
/external/qemu/hw/
H A Dbt-hci.c1451 uint16_t handle, int packets)
1458 params->connection->num_packets = cpu_to_le16(packets);
1979 fprintf(stderr, "%s: can't take ACL packets %i bytes long\n",
1450 bt_hci_event_num_comp_pkts(struct bt_hci_s *hci, uint16_t handle, int packets) argument
/external/iproute2/include/linux/
H A Dxfrm.h76 __u64 packets; member in struct:xfrm_lifetime_cur
H A Dpkt_sched.h8 no more precise mechanism to classify packets.
34 __u32 packets; /* Number of enqueued packets */ member in struct:tc_stats
110 __u32 limit; /* Queue length: bytes for bfifo, packets for pfifo */
139 * buffer any incoming packets
140 * TCQ_PLUG_RELEASE_ONE: Dequeue packets from queue head
142 * TCQ_PLUG_RELEASE_INDEFINITE: Dequeue all packets from queue.
143 * Stop buffering packets until the next TCQ_PLUG_BUFFER
181 __u32 limit; /* Maximal packets in queue */
189 __u32 prob_mark; /* Marked packets, belo
279 __u32 packets; member in struct:tc_gred_qopt
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Donyx_if.c1971 int packets = (int)(oxcf->two_pass_stats_in.sz / packet_sz); local
1976 + (packets - 1) * packet_sz);
4442 /* if PSNR packets are generated we have to wait for the lpf */
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_onyx_if.c1758 int packets = (int)(oxcf->two_pass_stats_in.sz / packet_sz); local
1763 + (packets - 1) * packet_sz);
/external/libnl-headers/
H A Dnetlink-types.h318 * packets which are accepted from other layers while the
430 uint64_t packets; member in struct:rtnl_tstats::__anon21313
738 uint64_t packets; member in struct:nfnl_ct_dir

Completed in 711 milliseconds

123