HomeSort by relevance Sort by last modified time
    Searched defs:packet (Results 26 - 50 of 553) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/avahi/avahi-core/
dns-spin-test.c 91 AvahiDnsPacket *packet; local
109 TRY_EXCEPT(packet = avahi_dns_packet_new_query(512), NULL);
110 TRY_EXCEPT(avahi_dns_packet_append_bytes(packet, badrr, sizeof(badrr)), NULL);
113 ret = avahi_dns_packet_consume_name(packet, name, sizeof(name));
  /external/deqp/framework/referencerenderer/
rrVertexPacket.cpp 21 * \brief Vertex packet and Vertex packet allocator
85 VertexPacket* packet = *--m_singleAllocPool.end(); local
87 return packet;
  /external/kernel-headers/original/uapi/linux/
pg.h 5 pg.h defines the user interface to the generic ATAPI packet
49 char packet[12]; /* packet command */ member in struct:pg_write_hdr
  /external/libvorbis/doc/
06-floor0.tex 27 codec setup header (third packet). configuration decode proceeds as
40 An end-of-packet condition during any of these bitstream reads renders
48 \subsubsection{packet decode} \label{vorbis:spec:floor0-decode}
50 Extracting a floor0 curve from an audio packet consists of first
56 Packet decode proceeds as follows:
62 5) if ( [booknumber] is greater than the highest number decode codebook ) then packet is undecodable
79 \item An end-of-packet condition during decode should be considered a
80 nominal occruence; if end-of-packet is reached during any read
107 vector from packet decode as well as the [floor0_order],
07-floor1.tex 33 a difference value decoded from the bitstream packet.
55 list-order Y values as decoded from an example packet are 110, 20, -5,
96 A list of floor X values is stored in the packet header in interleaved
97 format (used in list order during packet decode and synthesis). This
107 books were chosen for representation in a given packet. The
158 An end-of-packet condition while reading any aspect of a floor 1
167 \paragraph{packet decode} \label{vorbis:spec:floor1-decode}
169 Packet decode begins by checking the \varname{[nonzero]} flag:
199 12) [cval] = read from packet using codebook number
209 17) vector [floor1_Y] element ([j]+[offset]) = read from packet using codeboo
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_scene_queue.c 92 struct scene_packet packet; local
95 packet.scene = NULL;
98 &packet.header,
99 sizeof packet / 4,
104 return packet.scene;
112 struct scene_packet packet; local
114 packet.header.dwords = sizeof packet / 4;
115 packet.header.data24 = 0;
116 packet.scene = scene
    [all...]
  /external/opencv3/modules/cudacodec/src/
video_parser.cpp 67 CUVIDSOURCEDATAPACKET packet; local
68 std::memset(&packet, 0, sizeof(CUVIDSOURCEDATAPACKET));
71 packet.flags |= CUVID_PKT_ENDOFSTREAM;
73 packet.payload_size = static_cast<unsigned long>(size);
74 packet.payload = data;
76 if (cuvidParseVideoData(parser_, &packet) != CUDA_SUCCESS)
  /external/webrtc/webrtc/base/
bufferqueue.cc 42 Buffer* packet = queue_.front();
45 bytes = std::min(bytes, packet->size());
46 memcpy(buffer, packet->data(), bytes);
50 free_list_.push_back(packet);
65 Buffer* packet; local
67 packet = free_list_.back();
70 packet = new Buffer(bytes, default_size_);
73 packet->SetData(static_cast<const uint8_t*>(buffer), bytes);
77 queue_.push_back(packet);
  /external/webrtc/webrtc/modules/audio_coding/acm2/
acm_send_test_oldapi.cc 22 #include "webrtc/modules/audio_coding/neteq/tools/packet.h"
76 Packet* AcmSendTestOldApi::NextPacket() {
80 // same throughout the whole test run, no packet at all will be delivered.
84 // Insert audio and process until one packet is produced.
99 // Encoded packet received.
107 // This method receives the callback from ACM when a new packet is produced.
115 // Store the packet locally.
125 Packet* AcmSendTestOldApi::CreatePacket() {
150 Packet* packet local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/test/
RTPtimeshift.cc 51 NETEQTEST_RTPpacket packet; local
52 int packLen = packet.readFromFile(inFile);
58 uint32_t TSdiff = atoi(argv[3]) - packet.timeStamp();
64 SNdiff = startSN - packet.sequenceNumber();
68 ATdiff = startTS - packet.time();
73 packet.setTimeStamp(packet.timeStamp() + TSdiff);
74 packet.setSequenceNumber(packet.sequenceNumber() + SNdiff);
75 packet.setTime(packet.time() + ATdiff)
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
fec_receiver_impl.cc 85 LOG(LS_WARNING) << "Corrupt/truncated FEC packet.";
89 // Add to list without RED header, aka a virtual RTP packet
94 received_packet->pkt = new ForwardErrorCorrection::Packet;
108 LOG(LS_WARNING) << "Corrupt/truncated FEC packet.";
128 LOG(LS_WARNING) << "More than 2 blocks in packet not supported.";
131 // Check that the packet is long enough to contain data in the following
134 LOG(LS_WARNING) << "Block length longer than packet.";
164 second_received_packet->pkt = new ForwardErrorCorrection::Packet;
224 // Send received media packet to VCM.
226 ForwardErrorCorrection::Packet* packet local
247 ForwardErrorCorrection::Packet* packet = (*it)->pkt; local
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
app_unittest.cc 32 void BuildPacket() { packet = app.Build(); }
36 RtcpParseCommonHeader(packet->Buffer(), packet->Length(), &header));
37 // Check there is exactly one RTCP packet in the buffer.
38 EXPECT_EQ(header.BlockSize(), packet->Length());
40 header, packet->Buffer() + RtcpCommonHeader::kHeaderSizeBytes));
44 rtc::scoped_ptr<RawPacket> packet; member in class:webrtc::__anon27109::RtcpPacketAppTest
bye_unittest.cc 33 void BuildPacket() { packet = bye.Build(); }
37 RtcpParseCommonHeader(packet->Buffer(), packet->Length(), &header));
38 // Check that there is exactly one RTCP packet in the buffer.
39 EXPECT_EQ(header.BlockSize(), packet->Length());
41 header, packet->Buffer() + RtcpCommonHeader::kHeaderSizeBytes));
45 rtc::scoped_ptr<RawPacket> packet; member in class:webrtc::__anon27110::RtcpPacketByeTest
67 EXPECT_EQ(16u, packet->Length()); // Header: 4, 3xSRCs: 12, Reason: 0.
85 EXPECT_EQ(28u, packet->Length()); // Header: 4, 3xSRCs: 12, Reason: 12.
118 // Test that packet creation/parsing behave with reasons of different lengt
    [all...]
extended_jitter_report_unittest.cc 28 void BuildPacket() { packet = ij.Build(); }
32 RtcpParseCommonHeader(packet->Buffer(), packet->Length(), &header));
33 EXPECT_EQ(header.BlockSize(), packet->Length());
35 header, packet->Buffer() + RtcpCommonHeader::kHeaderSizeBytes));
39 rtc::scoped_ptr<RawPacket> packet; member in class:webrtc::__anon27112::RtcpPacketExtendedJitterReportTest
47 // No initialization because packet is empty.
88 RtcpParseCommonHeader(packet->Buffer(), packet->Length(), &header);
94 header, packet->Buffer() + RtcpCommonHeader::kHeaderSizeBytes))
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/test/
packet_manipulator.cc 49 uint8_t* packet = NULL; local
54 while ((nbr_bytes_to_read = packet_reader_->NextPacket(&packet)) > 0) {
55 // Check if we're currently in a packet loss burst that is not completed:
  /external/webrtc/webrtc/test/
rtp_file_reader_unittest.cc 33 test::RtpPacket packet; local
35 while (rtp_packet_source_->NextPacket(&packet)) {
37 EXPECT_LT(packet.length, packet.original_length);
39 EXPECT_EQ(packet.length, packet.original_length);
74 test::RtpPacket packet; local
75 while (rtp_packet_source_->NextPacket(&packet)) {
76 EXPECT_EQ(packet.length, packet.original_length)
84 test::RtpPacket packet; local
    [all...]
rtp_file_writer_unittest.cc 31 test::RtpPacket packet; local
33 packet.length = i;
34 packet.original_length = i;
35 packet.time_ms = i;
36 memset(packet.data, i, packet.length);
37 EXPECT_TRUE(rtp_writer_->WritePacket(&packet));
49 test::RtpPacket packet; local
51 while (rtp_reader->NextPacket(&packet)) {
53 EXPECT_EQ(static_cast<size_t>(i), packet.length)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
pg.h 5 pg.h defines the user interface to the generic ATAPI packet
49 char packet[12]; /* packet command */ member in struct:pg_write_hdr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
pg.h 5 pg.h defines the user interface to the generic ATAPI packet
49 char packet[12]; /* packet command */ member in struct:pg_write_hdr
  /prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/linux/
pg.h 30 char packet[12]; member in struct:pg_write_hdr
  /prebuilts/ndk/current/platforms/android-21/arch-arm64/usr/include/linux/
pg.h 30 char packet[12]; member in struct:pg_write_hdr
  /prebuilts/ndk/current/platforms/android-21/arch-mips/usr/include/linux/
pg.h 30 char packet[12]; member in struct:pg_write_hdr
  /prebuilts/ndk/current/platforms/android-21/arch-mips64/usr/include/linux/
pg.h 30 char packet[12]; member in struct:pg_write_hdr
  /prebuilts/ndk/current/platforms/android-21/arch-x86/usr/include/linux/
pg.h 30 char packet[12]; member in struct:pg_write_hdr
  /prebuilts/ndk/current/platforms/android-21/arch-x86_64/usr/include/linux/
pg.h 30 char packet[12]; member in struct:pg_write_hdr

Completed in 623 milliseconds

12 3 4 5 6 7 8 91011>>