HomeSort by relevance Sort by last modified time
    Searched defs:packets (Results 76 - 100 of 357) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/syslinux/gpxe/src/net/80211/
rc80211.c 35 * can do that without dropping undue numbers of packets. We also
50 * packets on that rate and the number of packets for which we have
59 * for rates with less than 4 RX packets or 1 TX, as an indicator that
63 * TX and RX goodness, where the weighting is by number of packets
64 * with data and TX packets are worth 4 times as much as RX packets.
66 * between 0 and 99. If 3 consecutive packets fail transmission
82 * transmitted packets until we've set our rate based on received
83 * packets
144 int packets; member in struct:rc80211_ctx
    [all...]
  /external/webrtc/talk/media/base/
fakenetworkinterface.h 46 // Fake NetworkInterface that sends/receives RTP/RTCP packets.
61 // Conference mode is a mode where instead of simply forwarding the packets,
93 int packets = 0; local
94 GetNumRtpBytesAndPackets(ssrc, NULL, &packets);
95 return packets;
201 void GetNumRtpBytesAndPackets(uint32_t ssrc, int* bytes, int* packets) {
205 if (packets) {
206 *packets = 0;
218 if (packets) {
219 ++(*packets);
    [all...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
send_time_history_unittest.cc 209 PacketInfo packets[3] = {{0, kTimestamp, kSeqNo, 0, false}, local
213 AddPacketWithSendTime(packets[0].sequence_number, packets[0].payload_size,
214 packets[0].was_paced, packets[0].send_time_ms);
215 AddPacketWithSendTime(packets[1].sequence_number, packets[1].payload_size,
216 packets[1].was_paced, packets[1].send_time_ms);
217 PacketInfo info(0, 0, packets[0].sequence_number, 0, false)
    [all...]
transport_feedback_adapter_unittest.cc 89 // (because of resolution limits in the packets, and because of the time
122 std::vector<PacketInfo> packets; local
123 packets.push_back(PacketInfo(100, 200, 0, 1500, true));
124 packets.push_back(PacketInfo(110, 210, 1, 1500, true));
125 packets.push_back(PacketInfo(120, 220, 2, 1500, true));
126 packets.push_back(PacketInfo(130, 230, 3, 1500, true));
127 packets.push_back(PacketInfo(140, 240, 4, 1500, true));
129 for (const PacketInfo& packet : packets)
133 feedback.WithBase(packets[0].sequence_number,
134 packets[0].arrival_time_ms * 1000)
153 std::vector<PacketInfo> packets; local
198 std::vector<PacketInfo> packets; local
    [all...]
remote_bitrate_estimator_unittest_helper.cc 53 // packets.
54 int64_t RtpStream::GenerateFrame(int64_t time_now_us, PacketList* packets) {
58 assert(packets != NULL);
70 packets->push_back(packet);
168 int64_t StreamGenerator::GenerateFrame(RtpStream::PacketList* packets,
170 assert(packets != NULL);
171 assert(packets->empty());
175 (*it).second->GenerateFrame(time_now_us, packets);
177 for (RtpStream::PacketList::iterator packet_it = packets->begin();
178 packet_it != packets->end(); ++packet_it)
246 testing::RtpStream::PacketList packets; local
    [all...]
  /hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/
HidParser.cpp 208 .packets = convertGroupToPacket(reportSetGroup)
223 std::vector<ReportPacket> packets; local
264 packets.push_back(std::move(packet));
268 return packets;
287 << ", " << i.packets.size() << " report packet:" << LOG_ENDL;
288 for (const auto &packet : i.packets) {
HidParser.h 44 std::vector<ReportPacket> packets; member in struct:HidUtil::HidParser::ReportDigest
  /device/google/contexthub/firmware/os/core/
spi.c 37 const struct SpiPacket *packets; member in struct:SpiDeviceState
75 return dev->ops->masterRxTx(dev, state->packets[0].rxBuf,
76 state->packets[0].txBuf, state->packets[0].size, mode);
103 void *rxBuf = state->packets[i].rxBuf;
104 const void *txBuf = state->packets[i].txBuf;
105 size_t size = state->packets[i].size;
121 if (state->packets[i].delay > 0) {
122 if (!timTimerSet(state->packets[i].delay, 0, 50, spiDelayCallback, state, true)) {
234 void *rxBuf = state->packets[i].rxBuf
    [all...]
  /external/ImageMagick/coders/
pcl.c 690 packets;
936 packets=PCLPackbitsCompressImage(length,pixels,compress_pixels);
938 (double) packets);
940 (void) WriteBlob(image,packets,compress_pixels);
948 packets=PCLDeltaCompressImage(length,previous_pixels,pixels,
951 (double) packets);
953 (void) WriteBlob(image,packets,compress_pixels);
683 packets; local
sgi.c 172 ssize_t number_packets,unsigned char *packets,ssize_t number_pixels,
185 p=packets;
437 *packets;
450 sizeof(*packets));
463 packets=(unsigned char *) GetVirtualMemoryBlob(packet_info);
498 packets);
503 (runlength[y+z*iris_info.rows]/bytes_per_pixel),packets,
528 packets);
533 (runlength[y+z*iris_info.rows]/bytes_per_pixel),packets,
554 Convert SGI raster image to pixel packets
433 *packets; local
900 *packets; local
    [all...]
pdb.c 158 % pixel packets.
307 packets;
422 packets=(bits_per_pixel*image->columns+7)/8;
423 pixels=(unsigned char *) AcquireQuantumMemory(packets+257UL,image->rows*
432 count=(ssize_t) ReadBlob(image, packets * image -> rows, pixels);
438 if (!DecodeImage(image, pixels, packets * image -> rows))
743 packets,
829 packets=((bits_per_pixel*image->columns+7)/8);
830 runlength=(unsigned char *) AcquireQuantumMemory(9UL*packets,
302 packets; local
735 packets, local
viff.c 617 Convert VIFF raster image to pixel packets.
929 packets; local
    [all...]
  /external/eigen/test/
packetmath.cpp 124 EIGEN_ALIGN_MAX Packet packets[PacketSize*2]; local
151 packets[0] = internal::pload<Packet>(data1);
152 packets[1] = internal::pload<Packet>(data1+PacketSize);
153 if (offset==0) internal::palign<0>(packets[0], packets[1]);
154 else if (offset==1) internal::palign<1>(packets[0], packets[1]);
155 else if (offset==2) internal::palign<2>(packets[0], packets[1]);
156 else if (offset==3) internal::palign<3>(packets[0], packets[1])
    [all...]
  /external/libdrm/radeon/
radeon_cs_int.h 14 uint32_t *packets; member in struct:radeon_cs_int
  /external/tcpdump/
print-cnfp.c 73 uint32_t packets; /* packets in the flow */ member in struct:nfrec_v1
74 uint32_t octets; /* layer 3 octets in the packets of the flow */
105 uint32_t packets; /* packets in the flow */ member in struct:nfrec_v5
106 uint32_t octets; /* layer 3 octets in the packets of the flow */
139 uint32_t packets; /* packets in the flow */ member in struct:nfrec_v6
140 uint32_t octets; /* layer 3 octets in the packets of the flow */
237 EXTRACT_32BITS(&nr->packets),
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/Usb/DwUsbDxe/
DwUsbDxe.c 140 UINT32 packets; local
149 packets = (len + blocksize - 1) / blocksize;
164 /*WRITE_REG32((len | (packets << 19)), DIEPTSIZ(ep));*/ // packets+transfer size
165 WRITE_REG32(DIEPTSIZ(ep), len | (packets << 19));
  /external/libnl/python/netlink/route/
tc.py 215 def packets(self): member in class:Tc
228 return fmt.nl('{t|packets} {t|bytes} {t|qlen}')
336 # l = [['Packets', RX_PACKETS, TX_PACKETS],
355 # ['Packets', IP6_INPKTS, IP6_OUTPKTS],
358 # ['Multicast Packets', IP6_INMCASTPKTS, IP6_OUTMCASTPKTS],
360 # ['Broadcast Packets', IP6_INBCASTPKTS, IP6_OUTBCASTPKTS],
369 # ['Truncated Packets', IP6_INTRUNCATEDPKTS, None],
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_framework_unittest.cc 25 static bool IsSequenceNumberSorted(const Packets& packets) {
26 PacketsConstIt last_it = packets.begin();
27 for (PacketsConstIt it = last_it; it != packets.end(); ++it) {
40 Packets packets; local
41 // Insert some packets in order...
42 EXPECT_TRUE(IsTimeSorted(packets));
44 packets.push_back(new MediaPacket(100, 0));
45 EXPECT_TRUE(IsTimeSorted(packets));
65 Packets packets; local
158 Packets packets; local
219 Packets packets; local
233 Packets packets; local
285 Packets packets; local
383 Packets packets; local
439 Packets packets; local
507 Packets packets; local
599 Packets packets; local
656 Packets packets; local
783 Packets packets; local
928 Packets packets; local
967 Packets packets; local
982 Packets packets; local
1007 Packets packets; local
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/rtp/
RTPSender.cpp 316 List<sp<ABuffer> > packets; local
350 packets.push_back(out);
408 packets.push_back(out);
416 packets.push_back(out);
419 while (!packets.empty()) {
420 sp<ABuffer> out = *packets.begin();
421 packets.erase(packets.begin());
425 bool last = packets.empty();
690 ALOGI("lost %.2f %% of packets during report interval."
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
BatterySipper.java 138 long packets = mobileRxPackets + mobileTxPackets; local
139 mobilemspp = packets > 0 ? (mobileActive / (double) packets) : 0;
  /external/speex/libspeex/
jitter.c 41 - 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) *
    [all...]
  /external/webrtc/talk/media/webrtc/
fakewebrtcvoiceengine.h 188 std::list<std::string> packets; member in struct:cricket::FakeWebRtcVoiceEngine::Channel
271 std::string packet = channels_[channel]->packets.front();
273 channels_[channel]->packets.pop_front();
278 return channels_[channel]->packets.empty();
581 channels_[channel]->packets.push_back(
webrtcvoiceengine_unittest.cc 2325 char packets[4][sizeof(kPcmuFrame)]; local
    [all...]
  /frameworks/wilhelm/tests/sandbox/
xaplay.c 33 #define PACKETS_PER_BUFFER 20 // Number of MPEG-2 transport stream packets per buffer
43 MPEG2TS_Packet *packets; variable
44 size_t totalPackets; // total number of packets in input file
45 size_t numPackets; // number of packets to play, defaults to totalPackets - firstPacket
172 // compute number of packets to be enqueued in this buffer
207 result = (*caller)->Enqueue(caller, NULL, &packets[curPacket],
307 fprintf(stderr, " -n# Number of packets to enqueue\n");
344 packets = (MPEG2TS_Packet *) ptr;
346 printf("%s has %zu total packets\n", uri, totalPackets);
484 &packets[curPacket], MPEG2TS_PACKET_SIZE * packetsThisBuffer, NULL, 0)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
firewire-cdev.h 140 * stripped of all packets up until and including the interrupt packet are
483 * struct fw_cdev_queue_iso - Queue isochronous packets for I/O
484 * @packets: Userspace pointer to packet data
489 * Queue a number of isochronous packets for reception or transmission.
496 * The kernel may or may not queue all packets, but will write back updated
497 * values of the @packets, @data and @size fields, so the ioctl can be
501 __u64 packets; member in struct:fw_cdev_queue_iso
517 * @sync: Determines the value to wait for for receive packets that have
520 * Determines the tag values for which packets will be accepted.

Completed in 487 milliseconds

1 2 34 5 6 7 8 91011>>