Home
last modified time | relevance | path

Searched refs:in_out (Results 1 – 17 of 17) sorted by relevance

/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
Dbwe_test_framework.cc292 void RateCounterFilter::RunFor(int64_t /*time_ms*/, Packets* in_out) { in RunFor() argument
293 assert(in_out); in RunFor()
294 for (const Packet* packet : *in_out) { in RunFor()
323 void LossFilter::RunFor(int64_t /*time_ms*/, Packets* in_out) { in RunFor() argument
324 assert(in_out); in RunFor()
325 for (PacketsIt it = in_out->begin(); it != in_out->end(); ) { in RunFor()
328 it = in_out->erase(it); in RunFor()
357 void DelayFilter::RunFor(int64_t /*time_ms*/, Packets* in_out) { in RunFor() argument
358 assert(in_out); in RunFor()
359 for (Packet* packet : *in_out) { in RunFor()
[all …]
Dpacket_sender.cc53 std::list<FeedbackPacket*> GetFeedbackPackets(Packets* in_out, in GetFeedbackPackets() argument
57 for (auto it = in_out->begin(); it != in_out->end();) { in GetFeedbackPackets()
63 it = in_out->erase(it); in GetFeedbackPackets()
97 void VideoSender::RunFor(int64_t time_ms, Packets* in_out) { in RunFor() argument
99 in_out, clock_.TimeInMilliseconds() + time_ms, source_->flow_id()); in RunFor()
100 ProcessFeedbackAndGeneratePackets(time_ms, &feedbacks, in_out); in RunFor()
176 void PacedVideoSender::RunFor(int64_t time_ms, Packets* in_out) { in RunFor() argument
180 GetFeedbackPackets(in_out, end_time_ms, source_->flow_id()); in RunFor()
236 QueuePackets(in_out, end_time_ms * 1000); in RunFor()
347 void TcpSender::RunFor(int64_t time_ms, Packets* in_out) { in RunFor() argument
[all …]
Dpacket_receiver.cc78 void PacketReceiver::RunFor(int64_t time_ms, Packets* in_out) { in RunFor() argument
80 for (auto it = in_out->begin(); it != in_out->end();) { in RunFor()
110 it = in_out->erase(it); in RunFor()
116 in_out->merge(feedback, DereferencingComparator<Packet>); in RunFor()
Dbwe_test_framework.h210 virtual void RunFor(int64_t time_ms, Packets* in_out) = 0;
247 virtual void RunFor(int64_t time_ms, Packets* in_out);
267 virtual void RunFor(int64_t time_ms, Packets* in_out);
283 virtual void RunFor(int64_t time_ms, Packets* in_out);
299 virtual void RunFor(int64_t time_ms, Packets* in_out);
320 virtual void RunFor(int64_t time_ms, Packets* in_out);
341 virtual void RunFor(int64_t time_ms, Packets* in_out);
368 virtual void RunFor(int64_t time_ms, Packets* in_out);
400 virtual void RunFor(int64_t time_ms, Packets* in_out);
Dpacket_sender.h48 void SetSenderTimestamps(Packets* in_out);
74 void RunFor(int64_t time_ms, Packets* in_out) override;
110 void RunFor(int64_t time_ms, Packets* in_out) override;
145 void RunFor(int64_t time_ms, Packets* in_out) override;
170 void SendPackets(Packets* in_out);
Dpacket_receiver.h42 void RunFor(int64_t time_ms, Packets* in_out) override;
Dbwe_test.h38 void RunFor(int64_t time_ms, int64_t time_now_ms, Packets* in_out);
Dbwe_test.cc49 Packets* in_out) { in RunFor() argument
51 FindPacketsToProcess(processor_->flow_ids(), in_out, &to_process); in RunFor()
57 in_out->merge(to_process, DereferencingComparator<Packet>); in RunFor()
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dfilterbanks.c43 int16_t in_out = 0; in WebRtcIsacfix_AllpassFilter2FixDec16C() local
51 in_out = data_ch1[n]; in WebRtcIsacfix_AllpassFilter2FixDec16C()
52 a = factor_ch1[0] * in_out; // Q15 * Q0 = Q15 in WebRtcIsacfix_AllpassFilter2FixDec16C()
56 state0_ch1 = WebRtcSpl_AddSatW32(a << 1, (uint32_t)in_out << 16); // Q16 in WebRtcIsacfix_AllpassFilter2FixDec16C()
57 in_out = (int16_t) (b >> 16); // Save as Q0 in WebRtcIsacfix_AllpassFilter2FixDec16C()
59 a = factor_ch1[1] * in_out; // Q15 * Q0 = Q15 in WebRtcIsacfix_AllpassFilter2FixDec16C()
63 state1_ch1 = WebRtcSpl_AddSatW32(a << 1, (uint32_t)in_out << 16); // Q16 in WebRtcIsacfix_AllpassFilter2FixDec16C()
67 in_out = data_ch2[n]; in WebRtcIsacfix_AllpassFilter2FixDec16C()
68 a = factor_ch2[0] * in_out; // Q15 * Q0 = Q15 in WebRtcIsacfix_AllpassFilter2FixDec16C()
72 state0_ch2 = WebRtcSpl_AddSatW32(a << 1, (uint32_t)in_out << 16); // Q16 in WebRtcIsacfix_AllpassFilter2FixDec16C()
[all …]
/external/libxcam/cl_kernel/
Dkernel_bayer_basic.cl51 inline void gamma_correct(float8 *in_out, __global float *table)
53 in_out->s0 = table[clamp(convert_int(in_out->s0 * 255.0f), 0, 255)];
54 in_out->s1 = table[clamp(convert_int(in_out->s1 * 255.0f), 0, 255)];
55 in_out->s2 = table[clamp(convert_int(in_out->s2 * 255.0f), 0, 255)];
56 in_out->s3 = table[clamp(convert_int(in_out->s3 * 255.0f), 0, 255)];
57 in_out->s4 = table[clamp(convert_int(in_out->s4 * 255.0f), 0, 255)];
58 in_out->s5 = table[clamp(convert_int(in_out->s5 * 255.0f), 0, 255)];
59 in_out->s6 = table[clamp(convert_int(in_out->s6 * 255.0f), 0, 255)];
60 in_out->s7 = table[clamp(convert_int(in_out->s7 * 255.0f), 0, 255)];
/external/epid-sdk/epid/member/tiny/math/unittests/
Dvli-test.cc151 VeryLargeInt in_out = {{0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, in TEST() local
153 VliClear(&in_out); in TEST()
154 EXPECT_EQ(expected, in_out); in TEST()
/external/libxcam/tests/
Dtest-image-blend.cpp80 SmartPtr<CLGeoMapHandler> geo_map_handler, SmartPtr<VideoBuffer> &in_out, in geo_correct_image() argument
87 ret = geo_map_handler->execute (in_out, geo_out); in geo_correct_image()
90 in_out = geo_out; in geo_correct_image()
/external/libchrome/crypto/
Dp224.cc212 void Reduce(FieldElement* in_out) { in Reduce() argument
213 FieldElement& a = *in_out; in Reduce()
/external/v8/src/ia32/
Dmacro-assembler-ia32.cc1582 void MacroAssembler::LoadWeakValue(Register in_out, Label* target_if_cleared) { in LoadWeakValue() argument
1583 cmp(in_out, Immediate(kClearedWeakHeapObject)); in LoadWeakValue()
1586 and_(in_out, Immediate(~kWeakHeapObjectMask)); in LoadWeakValue()
Dmacro-assembler-ia32.h723 void LoadWeakValue(Register in_out, Label* target_if_cleared);
/external/v8/src/x64/
Dmacro-assembler-x64.cc2028 void MacroAssembler::LoadWeakValue(Register in_out, Label* target_if_cleared) { in LoadWeakValue() argument
2029 cmpp(in_out, Immediate(kClearedWeakHeapObject)); in LoadWeakValue()
2032 andp(in_out, Immediate(~kWeakHeapObjectMask)); in LoadWeakValue()
Dmacro-assembler-x64.h854 void LoadWeakValue(Register in_out, Label* target_if_cleared);