Searched refs:insert (Results 1 - 25 of 3050) sorted by last modified time

1234567891011>>

/external/zlib/src/as400/
H A Dzlib.inc347 D bits 10I 0 value # of bits to insert
348 D value 10I 0 value Bits to insert
385 D value 10I 0 value Bits to insert
/external/zlib/src/
H A Ddeflate.c352 s->insert = 0;
358 /* insert dictionary into window and hash */
381 s->insert = s->lookahead;
936 s->insert = 0;
1123 s->insert = 0;
1471 if (s->lookahead + s->insert >= MIN_MATCH) {
1472 uInt str = s->strstart - s->insert;
1478 while (s->insert) {
1485 s->insert--;
1486 if (s->lookahead + s->insert < MIN_MATC
[all...]
H A Ddeflate.h159 uInt strstart; /* start of string to insert */
250 uInt insert; /* bytes at end of window left to insert */ member in struct:internal_state
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp6073 out.insert(out.end(), &buffer[0], &buffer[buffersize]);
6095 out.insert(out.end(), &buffer[0], &buffer[buffersize]);
6147 out.insert(out.end(), &buffer[0], &buffer[buffersize]);
6168 out.insert(out.end(), &buffer[0], &buffer[buffersize]);
6201 out.insert(out.end(), &buffer[0], &buffer[buffersize]);
6224 out.insert(out.end(), &buffer[0], &buffer[buffersize]);
H A Dlodepng_util.cpp143 result.insert(result.end(), png.begin(), png.begin() + l0);
144 for(size_t i = 0; i < chunks[0].size(); i++) result.insert(result.end(), chunks[0][i].begin(), chunks[0][i].end());
145 result.insert(result.end(), png.begin() + l0, png.begin() + l1);
146 for(size_t i = 0; i < chunks[1].size(); i++) result.insert(result.end(), chunks[1][i].begin(), chunks[1][i].end());
147 result.insert(result.end(), png.begin() + l1, png.begin() + l2);
148 for(size_t i = 0; i < chunks[2].size(); i++) result.insert(result.end(), chunks[2][i].begin(), chunks[2][i].end());
149 result.insert(result.end(), png.begin() + l2, png.end());
593 idat.insert(idat.end(), &in[pos + 4], &in[pos + 4 + chunkLength]);
/external/zopfli/src/zopflipng/
H A Dzopflipng_lib.cc97 unique->insert(index);
/external/xmlrpcpp/src/
H A DXmlRpcValue.cpp530 _value.asStruct->insert(p);
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPMetaImpl.java1291 * "last()", normalize it and check the insert flags. The order of the
1296 * @param itemIndex the index where to insert the item
1299 * @param insert insert oder overwrite at index position?
1303 PropertyOptions itemOptions, boolean insert) throws XMPException
1308 // in insert mode the index after the last is allowed,
1310 int maxIndex = insert ? arrayNode.getChildrenLength() + 1 : arrayNode.getChildrenLength();
1318 if (!insert)
1302 doSetArrayItem(XMPNode arrayNode, int itemIndex, String itemValue, PropertyOptions itemOptions, boolean insert) argument
/external/webrtc/webrtc/system_wrappers/include/
H A Dscoped_vector.h124 iterator insert(iterator position, T* x) { function in class:webrtc::ScopedVector
125 return v_.insert(position, x);
130 void insert(iterator position, InputIterator first, InputIterator last) { function in class:webrtc::ScopedVector
131 v_.insert(position, first, last);
/external/webrtc/webrtc/system_wrappers/source/
H A Dscoped_vector_unittest.cc315 scoped_vector.insert(scoped_vector.end(), vec.begin() + 1, vec.begin() + 3);
H A Dstl_util_unittest.cc46 set.insert(24);
47 set.insert(1);
48 set.insert(12);
54 set.insert(ComparableValue(24));
55 set.insert(ComparableValue(1));
56 set.insert(ComparableValue(12));
75 a1.insert(1);
76 a1.insert(2);
77 a1.insert(3);
78 a1.insert(
[all...]
/external/webrtc/webrtc/test/
H A Dhistogram.cc43 histograms_.insert(std::make_pair(name, SampleInfo(name)));
53 histograms_.insert(std::make_pair(name, SampleInfo(name)));
H A Drtcp_packet_parser.h415 last_ssrc_list_.insert(
/external/webrtc/webrtc/video/
H A Dend_to_end_tests.cc391 retransmitted_packets_.insert(header.sequenceNumber);
412 dropped_packets_.insert(header.sequenceNumber);
504 protected_sequence_numbers_.insert(header.sequenceNumber);
505 protected_timestamps_.insert(header.timestamp);
1398 EXPECT_TRUE(received_packed_ids_.insert(packet_id).second);
1408 dropped_seq_[header.ssrc].insert(header.sequenceNumber);
1430 streams_observed_.insert(header.ssrc);
2591 expected_send_ssrcs_.insert(ssrcs[i]);
2935 // get set once (this could be due to using std::map::insert for instance).
3335 EXPECT_TRUE(received_packet_ids_.insert(packet_i
[all...]
H A Dvideo_quality_test.cc751 stream.temporal_layer_thresholds_bps.insert(
H A Dvideo_receive_stream.cc269 decoder_payload_types.insert(decoder.payload_type);
/external/webrtc/webrtc/modules/pacing/
H A Dpaced_sender.cc167 // First for this ssrc, just insert.
168 dupe_map_[packet.ssrc].insert(packet.sequence_number);
173 return it->second.insert(packet.sequence_number).second;
/external/webrtc/webrtc/modules/remote_bitrate_estimator/
H A Dremote_bitrate_estimator_single_stream.cc88 overuse_detectors_.insert(std::make_pair(
H A Dsend_time_history.cc37 history_.insert(std::pair<uint16_t, PacketInfo>(
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test.cc274 media_flow_ids.insert(next_flow_id);
275 all_flow_ids.insert(next_flow_id);
279 tcp_flow_ids.insert(next_flow_id);
280 all_flow_ids.insert(next_flow_id);
H A Dmetric_recorder.cc40 running_flows_.insert(flow_id);
H A Dpacket_sender.cc397 in_flight_.insert(InFlight(*static_cast<MediaPacket*>(packet)));
/external/webrtc/webrtc/modules/remote_bitrate_estimator/tools/
H A Dbwe_rtp.cc62 ssrcs.insert(ssrc);
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Dfec_receiver_unittest.cc392 media_packets.insert(media_packets.end(), frame_media_packets.begin(),
394 media_rtp_packets.insert(media_rtp_packets.end(),
H A Dnack_rtx_unittest.cc116 expected_sequence_numbers_.insert(expected_sequence_numbers_.end(),

Completed in 313 milliseconds

1234567891011>>