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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/Hexagon/
empty_asm.s 3 # Verify empty packets aren't printed
  /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...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
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...]
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...]
  /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...]
  /kernel/tests/net/test/
tcp_test.py 22 import packets
69 _, ack = packets.ACK(self.version, self.myaddr, self.remoteaddr,
71 desc, rst = packets.RST(self.version, self.remoteaddr, self.myaddr,
76 return packets.RST(self.version, self.myaddr, self.remoteaddr,
80 return packets.FIN(self.version, self.myaddr, self.remoteaddr,
100 desc, syn = packets.SYN(self.port, version, remoteaddr, myaddr)
101 synack_desc, synack = packets.SYNACK(version, myaddr, remoteaddr, syn)
107 establishing_ack = packets.ACK(version, remoteaddr, myaddr, reply)[1]
119 desc, data = packets.ACK(version, myaddr, remoteaddr, establishing_ack,
124 desc, fin = packets.FIN(version, remoteaddr, myaddr, data
    [all...]
  /bionic/libc/kernel/uapi/linux/
gen_stats.h 35 __u32 packets; member in struct:gnet_stats_basic
39 __u32 packets; member in struct:gnet_stats_basic_packed
  /external/iproute2/include/uapi/linux/
gen_stats.h 22 * @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/
gen_stats.h 22 * @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/
gen_stats.h 19 * @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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
gen_stats.h 19 * @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/perfetto/include/perfetto/tracing/core/
shared_memory_abi.h 228 // | Tells how many packets there are and whether the |
302 struct Packets {
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
385 auto packets = chunk_header->packets.load(std::memory_order_relaxed); local
394 auto packets = chunk_header->packets.load(std::memory_order_relaxed); local
    [all...]
  /external/deqp/framework/referencerenderer/
rrShaders.hpp 96 * 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
218 m_shader.shadeVertex(inputs, packets[ndx])
    [all...]
  /external/perfetto/test/
end_to_end_integrationtest.cc 90 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/
es3fFboTestUtil.hpp 63 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, const int numPackets, const rr::FragmentShadingContext& context) const
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/tests/
validators_unittest.py 56 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/
glsRandomShaderProgram.hpp 47 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/perfetto/src/tracing/test/
mock_consumer.h 64 void(std::vector<TracePacket>* /*packets*/, bool /*has_more*/));
68 void OnTraceData(std::vector<TracePacket> packets, bool has_more) override {
69 OnTraceData(&packets, has_more);
  /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/perfetto/test/cts/
end_to_end_integrationtest_cts.cc 74 const auto& packets = helper.trace(); local
75 ASSERT_EQ(packets.size(), kEventCount);
78 for (const auto& packet : packets) {
  /external/autotest/client/site_tests/firmware_TouchMTB/
validators.py 32 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=packets
    [all...]
  /hardware/libhardware/modules/sensors/dynamic_sensor/
HidRawSensor.h 102 (const std::vector<HidParser::ReportPacket> &packets,
116 FeatureValue *featureValue, const std::vector<HidParser::ReportPacket> &packets);
121 // helper function to find sensor control feature usage from packets
122 bool findSensorControlUsage(const std::vector<HidParser::ReportPacket> &packets);
129 bool processTriAxisUsage(const std::vector<HidParser::ReportPacket> &packets,
133 bool processQuaternionUsage(const std::vector<HidParser::ReportPacket> &packets);
  /external/autotest/client/cros/cellular/mbim_compliance/
mbim_message_request.py 76 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 = [packet
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
ARTPAssembler.cpp 123 const List<sp<ABuffer> > &packets) {
125 for (List<sp<ABuffer> >::const_iterator it = packets.begin();
126 it != packets.end(); ++it) {
132 for (List<sp<ABuffer> >::const_iterator it = packets.begin();
133 it != packets.end(); ++it) {
139 CopyTimes(accessUnit, *packets.begin());
  /external/autotest/client/cros/cellular/mbim_compliance/sequences/
connect_sequence.py 43 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)

Completed in 862 milliseconds

1 2 3 4 5 6 7 8 91011>>