Searched refs:packets (Results 1 - 25 of 191) sorted by relevance

12345678

/external/llvm/test/MC/Hexagon/
H A Dempty_asm.s3 # Verify empty packets aren't printed
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_framework_unittest.cc25 static bool IsSequenceNumberSorted(const Packets& packets) { argument
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));
47 packets.push_back(new MediaPacket(110, 0));
48 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...]
/external/webrtc/webrtc/modules/remote_bitrate_estimator/
H A Dtransport_feedback_adapter_unittest.cc89 // (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[
153 std::vector<PacketInfo> packets; local
198 std::vector<PacketInfo> packets; local
[all...]
H A Dsend_time_history_unittest.cc209 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[
[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/iproute2/include/uapi/linux/
H A Dgen_stats.h22 * @packets: number of seen packets
26 __u32 packets; member in struct:gnet_stats_basic
30 __u32 packets; member in struct:gnet_stats_basic_packed
57 * @drops: number of dropped packets
/external/kernel-headers/original/uapi/linux/
H A Dgen_stats.h22 * @packets: number of seen packets
26 __u32 packets; member in struct:gnet_stats_basic
30 __u32 packets; member in struct:gnet_stats_basic_packed
57 * @drops: number of dropped packets
/external/libnl/include/linux-private/linux/
H A Dgen_stats.h19 * @packets: number of seen packets
23 __u32 packets; member in struct:gnet_stats_basic
27 __u32 packets; member in struct:gnet_stats_basic_packed
44 * @drops: number of dropped packets
/external/autotest/client/site_tests/firmware_TouchMTB/
H A Dvalidators.py32 def check(self, packets, variation=None):
34 self.init_check(packets)
35 xxx = self.packets.xxx()
83 def validate(packets, gesture, variation):
86 vlog = validator.check(packets, variation)
104 if packets is None:
189 self.packets = None
195 def init_check(self, packets=None):
197 self.packets = mtb.Mtb(device=self.device, packets
[all...]
/external/perfetto/include/perfetto/tracing/core/
H A Dshared_memory_abi.h228 // | Tells how many packets there are and whether the |
315 // chunks are contiguous (and hence a trace packets spanning across them can
330 std::atomic<Packets> packets; member in class:perfetto::SharedMemoryABI
368 // Returns the count of packets and the flags with acquire-load semantics.
370 auto packets = header()->packets.load(std::memory_order_acquire); local
371 const uint16_t packets_count = packets.count;
372 const uint8_t packets_flags = packets.flags;
376 // Increases |packets.count| with release semantics (note, however, that the
385 auto packets local
394 auto packets = chunk_header->packets.load(std::memory_order_relaxed); local
[all...]
/external/deqp/framework/referencerenderer/
H A DrrShaders.hpp96 * Vertex shaders execute shading for set of vertex packets. See VertexPacket
104 virtual void shadeVertices (const VertexAttrib* inputs, VertexPacket* const* packets, const int numPackets) const = 0;
119 * Fragment shader executes shading for list of fragment packets. See
130 virtual void shadeFragments (FragmentPacket* packets, const int numPackets, const FragmentShadingContext& context) const = 0; // \note numPackets must be greater than zero.
168 * Geometry shader executes a list of primitive packets and outputs
169 * a new set of vertex packets for new primitives.
181 virtual void shadePrimitives (GeometryEmitter& output, int verticesIn, const PrimitivePacket* packets, const int numPackets, int invocationID) const = 0;
208 void shadeVertices (const VertexAttrib* inputs, VertexPacket* packets, const int numPackets) const;
215 void VertexShaderLoop<Shader>::shadeVertices (const VertexAttrib* inputs, VertexPacket* packets, const int numPackets) const argument
218 m_shader.shadeVertex(inputs, packets[nd
234 shadeFragments(FragmentPacket* packets, const int numPackets) const argument
[all...]
/external/perfetto/test/
H A Dend_to_end_integrationtest.cc90 const auto& packets = helper.trace(); local
91 ASSERT_GT(packets.size(), 0u);
93 for (const auto& packet : packets) {
131 const auto& packets = helper.trace(); local
132 ASSERT_EQ(packets.size(), kNumPackets);
135 for (const auto& packet : packets) {
172 const auto& packets = helper.trace(); local
173 ASSERT_EQ(packets.size(), kNumPackets);
176 for (const auto& packet : packets) {
/external/deqp/modules/gles3/functional/
H A Des3fFboTestUtil.hpp63 void shadeVertices (const rr::VertexAttrib* inputs, rr::VertexPacket* const* packets, const int numPackets) const;
64 void shadeFragments (rr::FragmentPacket* packets, const int numPackets, const rr::FragmentShadingContext& context) const;
78 void shadeVertices (const rr::VertexAttrib* inputs, rr::VertexPacket* const* packets, const int numPackets) const;
79 void shadeFragments (rr::FragmentPacket* packets, const int numPackets, const rr::FragmentShadingContext& context) const;
97 void shadeVertices (const rr::VertexAttrib* inputs, rr::VertexPacket* const* packets, const int numPackets) const;
98 void shadeFragments (rr::FragmentPacket* packets, const int numPackets, const rr::FragmentShadingContext& context) const;
126 void shadeVertices (const rr::VertexAttrib* inputs, rr::VertexPacket* const* packets, const int numPackets) const;
127 void shadeFragments (rr::FragmentPacket* packets, const int numPackets, const rr::FragmentShadingContext& context) const;
148 void shadeVertices (const rr::VertexAttrib* inputs, rr::VertexPacket* const* packets, const int numPackets) const;
149 void shadeFragments (rr::FragmentPacket* packets, cons
[all...]
/external/autotest/client/site_tests/firmware_TouchMTB/tests/
H A Dvalidators_unittest.py56 packets = parse_tests_data(filename)
58 vlog = validator.check(packets)
96 packets = parse_tests_data(filename)
98 vlog = validator.check(packets)
102 packets = parse_tests_data(filename, gesture_dir=unittest_path_lumpy)
104 metrics = validator.check(packets).metrics
239 packets = parse_tests_data(filename, gesture_dir=gesture_dir)
242 self.validator.check(packets, direction)
273 packets = parse_tests_data(file_subpath)
275 vlog = validator.check(packets)
[all...]
/external/deqp/modules/glshared/
H A DglsRandomShaderProgram.hpp47 virtual void shadeVertices (const rr::VertexAttrib* inputs, rr::VertexPacket* const* packets, const int numPackets) const;
48 virtual void shadeFragments (rr::FragmentPacket* packets, const int numPackets, const rr::FragmentShadingContext& context) const;
/external/autotest/client/cros/cellular/mbim_compliance/sequences/
H A Dconnect_sequence.py43 error in the order of packets sent or not. It's a user provided
45 packets generated for connect before sending it to the device.
84 packets = mbim_message_request.generate_request_packets(
93 packets = [packets[i] for i in introduce_error_in_packets_order]
94 response_packets = channel.bidirectional_transaction(*packets)
H A Dmbim_cid_device_caps_sequence.py41 packets = mbim_message_request.generate_request_packets(
49 response_packets = channel.bidirectional_transaction(*packets)
H A Dmbim_cid_device_services_sequence.py33 packets = command_message.generate_packets()
40 response_packets = channel.bidirectional_transaction(*packets)
H A Dmbim_close_sequence.py41 packets = mbim_message_request.generate_request_packets(
51 response_packets = channel.bidirectional_transaction(*packets)
/external/perfetto/test/cts/
H A Dend_to_end_integrationtest_cts.cc74 const auto& packets = helper.trace(); local
75 ASSERT_EQ(packets.size(), kEventCount);
78 for (const auto& packet : packets) {
/external/autotest/client/cros/cellular/mbim_compliance/
H A Dmbim_message_request.py76 Fragments request messages into a multiple fragment packets if the total
85 @returns List of fragmented packets.
88 packets = []
129 packets.append(packet)
150 packets.append(packet)
154 return packets
163 @returns Tuple of (packets, message),
164 packets: List of raw byte array packets.
174 packets
[all...]
/external/libdrm/radeon/
H A Dradeon_cs.h54 uint32_t *packets; member in struct:radeon_cs
117 cs->packets[cs->cdw++] = dword;
125 memcpy(cs->packets + cs->cdw, &qword, sizeof(uint64_t));
135 memcpy(cs->packets + cs->cdw, data, size * 4);
/external/scapy/scapy/contrib/
H A Dpnio_rtc.py48 """IOCS and IOPS packets for PROFINET Real-Time payload"""
62 """Raw data packets for PROFINET Real-Time payload.
110 """PacketList which binds each underlayer of packets to the current pkt"""
180 # packets the rest being IOCS
227 # dissected packets
239 def analyse_data(packets):
242 loc = PNIORealTime.find_data(packets)
243 loc = PNIORealTime.analyse_profisafe(packets, loc)
248 def find_data(packets):
249 """Analyse a packet list to extract data offsets from packets dat
[all...]
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Dreceive_statistics_unittest.cc75 // Add more incoming packets and verify that they are registered in both
144 EXPECT_EQ(1u, counters.transmitted.packets);
149 EXPECT_EQ(2u, counters.transmitted.packets);
259 EXPECT_EQ(expected.packets, actual.packets);
292 expected.transmitted.packets = 1;
296 expected.retransmitted.packets = 0;
297 expected.fec.packets = 0;
309 expected.transmitted.packets = 2;
319 expected.transmitted.packets
[all...]
/external/autotest/client/cros/cellular/mbim_compliance/tests/
H A Dcm_07.py41 packets = command_message.generate_packets()
48 response_packets = channel.bidirectional_transaction(*packets)

Completed in 5806 milliseconds

12345678