Searched defs:Update (Results 1 - 25 of 104) sorted by last modified time

12345

/external/zlib/src/contrib/dotzlib/DotZLib/
H A DChecksumImpl.cs64 /// <remarks>All the other <c>Update</c> methods are implmeneted in terms of this one.
66 public abstract void Update(byte[] data, int offset, int count); method in class:DotZLib.ChecksumGeneratorBase
72 public void Update(byte[] data) method in class:DotZLib.ChecksumGeneratorBase
74 Update(data, 0, data.Length);
82 public void Update(string data) method in class:DotZLib.ChecksumGeneratorBase
84 Update(Encoding.UTF8.GetBytes(data));
92 public void Update(string data, Encoding encoding) method in class:DotZLib.ChecksumGeneratorBase
94 Update(encoding.GetBytes(data));
133 public override void Update(byte[] data, int offset, int count) method in class:DotZLib.CRC32Checksum
184 public override void Update(byt method in class:DotZLib.AdlerChecksum
[all...]
H A DDotZLib.cs130 void Update(byte[] data); method in interface:DotZLib.ChecksumGenerator
141 void Update(byte[] data, int offset, int count); method in interface:DotZLib.ChecksumGenerator
148 void Update(string data); method in interface:DotZLib.ChecksumGenerator
155 void Update(string data, Encoding encoding); method in interface:DotZLib.ChecksumGenerator
/external/webrtc/webrtc/modules/audio_processing/agc/
H A Dhistogram.cc89 void Histogram::Update(double rms, double activity_probaility) { function in class:webrtc::Histogram
130 // Update the circular buffer if it is enabled.
/external/webrtc/webrtc/modules/audio_processing/transient/
H A Dwpd_node.cc39 int WPDNode::Update(const float* parent_data, size_t parent_data_length) { function in class:webrtc::WPDNode
H A Dwpd_tree.cc76 int WPDTree::Update(const float* data, size_t data_length) { function in class:webrtc::WPDTree
81 // Update the root node.
102 update_result = nodes_[index_left_child]->Update(
108 update_result = nodes_[index_right_child]->Update(
/external/webrtc/webrtc/modules/remote_bitrate_estimator/
H A Daimd_rate_control.cc102 void AimdRateControl::Update(const RateControlInput* input, int64_t now_ms) { function in class:webrtc::AimdRateControl
H A Doveruse_estimator.cc48 void OveruseEstimator::Update(int64_t t_delta, function in class:webrtc::OveruseEstimator
61 // Update the Kalman filter.
97 // Update state.
H A Drate_statistics.cc38 void RateStatistics::Update(size_t count, int64_t now_ms) { function in class:webrtc::RateStatistics
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
H A Dmetric_recorder.h53 void Update(int64_t now_ms, T new_value) { function in struct:webrtc::testing::bwe::PlotInformation
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Dbitrate.cc35 void Bitrate::Update(const size_t bytes) { function in class:webrtc::Bitrate
/external/webrtc/webrtc/modules/video_coding/
H A Drtt_filter.cc56 void VCMRttFilter::Update(int64_t rttMs) { function in class:webrtc::VCMRttFilter
105 // Update the buffer used for the short time
130 // Update the buffer used for the short time
/external/webrtc/webrtc/system_wrappers/source/
H A Dtimestamp_extrapolator.cc63 TimestampExtrapolator::Update(int64_t tMs, uint32_t ts90khz) function in class:webrtc::TimestampExtrapolator
/external/webrtc/webrtc/base/
H A Dmd5digest.cc19 void Md5Digest::Update(const void* buf, size_t len) { function in class:rtc::Md5Digest
H A Dopenssldigest.cc40 void OpenSSLDigest::Update(const void* buf, size_t len) { function in class:rtc::OpenSSLDigest
53 EVP_DigestInit_ex(&ctx_, md_, NULL); // prepare for future Update()s
H A Dsha1digest.cc19 void Sha1Digest::Update(const void* buf, size_t len) { function in class:rtc::Sha1Digest
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dpitch_filter.c165 /* Update the damper state for the new sample. */
214 /* Update filter parameters based on the pitch-gains and pitch-lags. */
215 static void Update(PitchFilterParam* parameters) { function
330 /* Update parameters according to new lag value. */
331 Update(&filter_parameters);
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Dbackground_noise.cc44 void BackgroundNoise::Update(const AudioMultiVector& input, function in class:webrtc::BackgroundNoise
211 // Update maximum energy.
H A Dbuffer_level_filter.cc26 void BufferLevelFilter::Update(size_t buffer_size_packets, function in class:webrtc::BufferLevelFilter
H A Ddelay_manager.cc72 int DelayManager::Update(uint16_t sequence_number, function in class:webrtc::DelayManager
214 // Update |iat_factor_| (changes only during the first seconds after a reset).
280 // Update detector for delay peaks.
281 bool delay_peak_found = peak_detector_.Update(iat_packets, target_level);
H A Ddelay_peak_detector.cc67 bool DelayPeakDetector::Update(int inter_arrival_time, int target_level) { function in class:webrtc::DelayPeakDetector
H A Dpost_decode_vad.cc48 void PostDecodeVad::Update(int16_t* signal, size_t length, function in class:webrtc::PostDecodeVad
H A Drtcp.cc33 void Rtcp::Update(const RTPHeader& rtp_header, uint32_t receive_timestamp) { function in class:webrtc::Rtcp
34 // Update number of received packets, and largest packet number received.
/external/webrtc/webrtc/modules/audio_coding/test/
H A Dutility.cc166 void CircularBuffer::Update(const double newVal) { function in class:webrtc::CircularBuffer
184 // Update
/external/vixl/src/aarch64/
H A Dinstrument-aarch64.cc154 void Instrument::Update() { function in class:vixl::aarch64::Instrument
256 Update();
264 Update();
272 Update();
279 Update();
293 Update();
301 Update();
309 Update();
317 Update();
325 Update();
[all...]
/external/vixl/src/
H A Dpool-manager.h177 // Update the PoolObject after placing it, if necessary. This will happen for
264 void Update(T min, T max, int alignment) { function in class:vixl::PoolObject

Completed in 321 milliseconds

12345