Searched refs:feedback (Results 1 - 25 of 72) sorted by relevance

123

/external/chromium_org/net/quic/congestion_control/
H A Dtcp_receiver_test.cc23 QuicCongestionFeedbackFrame feedback; local
26 ASSERT_TRUE(receiver_->GenerateCongestionFeedback(&feedback));
27 EXPECT_EQ(kTCP, feedback.type);
28 EXPECT_EQ(256000u, feedback.tcp.receive_window);
29 EXPECT_EQ(0, feedback.tcp.accumulated_number_of_lost_packets);
31 ASSERT_TRUE(receiver_->GenerateCongestionFeedback(&feedback));
32 EXPECT_EQ(kTCP, feedback.type);
33 EXPECT_EQ(256000u, feedback.tcp.receive_window);
34 EXPECT_EQ(1, feedback.tcp.accumulated_number_of_lost_packets);
H A Dinter_arrival_receiver.cc19 QuicCongestionFeedbackFrame* feedback) {
21 // Don't waste resources by sending a feedback frame for only one packet.
24 feedback->type = kInterArrival;
25 feedback->inter_arrival.accumulated_number_of_lost_packets =
28 // Copy our current receive set to our feedback message, we will not resend
30 feedback->inter_arrival.received_packet_times = received_packet_times_;
18 GenerateCongestionFeedback( QuicCongestionFeedbackFrame* feedback) argument
H A Dtcp_receiver.cc20 QuicCongestionFeedbackFrame* feedback) {
21 feedback->type = kTCP;
22 feedback->tcp.accumulated_number_of_lost_packets =
24 feedback->tcp.receive_window = receive_window_;
19 GenerateCongestionFeedback( QuicCongestionFeedbackFrame* feedback) argument
H A Dfix_rate_receiver.cc21 QuicCongestionFeedbackFrame* feedback) {
22 feedback->type = kFixRate;
23 feedback->fix_rate.bitrate = configured_rate_;
20 GenerateCongestionFeedback( QuicCongestionFeedbackFrame* feedback) argument
H A Dinter_arrival_receiver_test.cc26 QuicCongestionFeedbackFrame feedback; local
27 ASSERT_FALSE(receiver_.GenerateCongestionFeedback(&feedback));
37 ASSERT_TRUE(receiver_.GenerateCongestionFeedback(&feedback));
39 EXPECT_EQ(kInterArrival, feedback.type);
40 EXPECT_EQ(1, feedback.inter_arrival.accumulated_number_of_lost_packets);
41 EXPECT_EQ(3u, feedback.inter_arrival.received_packet_times.size());
42 TimeMap::iterator it = feedback.inter_arrival.received_packet_times.begin();
45 it = feedback.inter_arrival.received_packet_times.begin();
H A Dfix_rate_test.cc48 QuicCongestionFeedbackFrame feedback; local
52 ASSERT_TRUE(receiver_->GenerateCongestionFeedback(&feedback));
53 EXPECT_EQ(kFixRate, feedback.type);
54 EXPECT_EQ(300000u, feedback.fix_rate.bitrate.ToBytesPerSecond());
58 QuicCongestionFeedbackFrame feedback; local
59 feedback.type = kFixRate;
60 feedback.fix_rate.bitrate = QuicBandwidth::FromKBytesPerSecond(300);
61 sender_->OnIncomingQuicCongestionFeedbackFrame(feedback, clock_.Now(),
92 QuicCongestionFeedbackFrame feedback; local
94 ASSERT_TRUE(receiver_->GenerateCongestionFeedback(&feedback));
[all...]
H A Dreceive_algorithm_interface.h25 // Otherwise fills in feedback and return true.
27 QuicCongestionFeedbackFrame* feedback) = 0;
H A Dfix_rate_receiver.h28 QuicCongestionFeedbackFrame* feedback) OVERRIDE;
H A Dinter_arrival_receiver.h25 QuicCongestionFeedbackFrame* feedback) OVERRIDE;
37 // The set of received packets since the last feedback was sent, along with
H A Dtcp_receiver.h28 QuicCongestionFeedbackFrame* feedback) OVERRIDE;
H A Dtcp_cubic_sender_test.cc83 QuicCongestionFeedbackFrame feedback; local
91 ASSERT_TRUE(receiver_->GenerateCongestionFeedback(&feedback));
92 sender_->OnIncomingQuicCongestionFeedbackFrame(feedback, clock_.Now(),
108 QuicCongestionFeedbackFrame feedback; local
113 ASSERT_TRUE(receiver_->GenerateCongestionFeedback(&feedback));
114 sender_->OnIncomingQuicCongestionFeedbackFrame(feedback, clock_.Now(),
137 QuicCongestionFeedbackFrame feedback; local
142 ASSERT_TRUE(receiver_->GenerateCongestionFeedback(&feedback));
143 sender_->OnIncomingQuicCongestionFeedbackFrame(feedback, clock_.Now(),
181 QuicCongestionFeedbackFrame feedback; local
286 QuicCongestionFeedbackFrame feedback; local
314 QuicCongestionFeedbackFrame feedback; local
348 QuicCongestionFeedbackFrame feedback; local
[all...]
H A Dfix_rate_sender.cc43 const QuicCongestionFeedbackFrame& feedback,
46 if (feedback.type != kFixRate) {
47 LOG(DFATAL) << "Invalid incoming CongestionFeedbackType:" << feedback.type;
49 if (feedback.type == kFixRate) {
50 bitrate_ = feedback.fix_rate.bitrate;
42 OnIncomingQuicCongestionFeedbackFrame( const QuicCongestionFeedbackFrame& feedback, QuicTime feedback_receive_time, const SentPacketsMap& ) argument
H A Dtcp_cubic_sender.cc72 const QuicCongestionFeedbackFrame& feedback,
76 feedback.tcp.accumulated_number_of_lost_packets) {
79 feedback.tcp.accumulated_number_of_lost_packets;
81 feedback.tcp.accumulated_number_of_lost_packets;
87 receive_window_ = feedback.tcp.receive_window;
71 OnIncomingQuicCongestionFeedbackFrame( const QuicCongestionFeedbackFrame& feedback, QuicTime feedback_receive_time, const SentPacketsMap& ) argument
H A Dpacing_sender.cc30 const QuicCongestionFeedbackFrame& feedback,
34 feedback, feedback_receive_time, sent_packets);
29 OnIncomingQuicCongestionFeedbackFrame( const QuicCongestionFeedbackFrame& feedback, QuicTime feedback_receive_time, const SendAlgorithmInterface::SentPacketsMap& sent_packets) argument
/external/chromium_org/chrome/browser/resources/options/
H A Dreset_profile_settings_overlay.css19 #feedback-bar {
24 #feedback-template {
29 #feedback-template table {
34 #feedback-template table td {
38 #feedback-template .key {
44 #feedback-template .value {
50 #expand-feedback {
60 #expand-feedback:hover {
/external/chromium_org/chrome/browser/safe_browsing/
H A Ddownload_feedback_service_unittest.cc88 FakeDownloadFeedback* feedback = new FakeDownloadFeedback( variable
97 feedbacks_.push_back(feedback);
98 return feedback;
105 FakeDownloadFeedback* feedback(size_t n) const { function in class:safe_browsing::__anon5835::FakeDownloadFeedbackFactory
159 FakeDownloadFeedback* feedback(size_t n) const { function in class:safe_browsing::DownloadFeedbackServiceTest
160 return download_feedback_factory_.feedback(n);
218 ASSERT_TRUE(feedback(0));
219 EXPECT_TRUE(feedback(0)->start_called());
220 EXPECT_EQ(ping_request, feedback(0)->GetPingRequestForTesting());
221 EXPECT_EQ(ping_response, feedback(
[all...]
H A Ddownload_feedback_unittest.cc135 void FinishCallback(DownloadFeedback* feedback) { argument
138 delete feedback;
172 DownloadFeedback* feedback = local
180 feedback->Start(base::Bind(&DownloadFeedbackTest::FinishCallback,
182 feedback));
219 DownloadFeedback* feedback = local
227 feedback->Start(base::Bind(&DownloadFeedbackTest::FinishCallback,
229 feedback));
235 delete feedback;
/external/chromium_org/v8/test/mjsunit/
H A Dswitch.js332 // clauses | tags | type feedback | optimization
349 function switch_gen(clause_type, feedback, optimize) {
353 if (feedback === 'all') {
355 } else if (Array.isArray(feedback)) {
358 return feedback.indexOf(v) === -1;
360 } else if (feedback !== undefined) {
362 fn(feedback);
384 function test_switch(clause_type, test_type, feedback, optimize) {
386 fn = switch_gen(clause_type, feedback, optimize);
436 // test_switch(clause_type, test_type, feedback, optimiz
[all...]
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_fmengine.h50 /* feedback control level shift (7 = 0dB) */
74 EAS_I16 op1Out; /* op1 output for feedback loop */
75 EAS_I16 op3Out; /* op3 output for feedback loop */
82 EAS_U8 feedback; /* feedback for Op1 and Op3 */ member in struct:__anon26580
91 EAS_U8 feedback; /* feedback for Op1 and Op3 */ member in struct:__anon26581
H A Deas_fmengine.c280 EAS_U8 feedback,
304 /* restore final output from previous frame for feedback loop */
321 /* incorporate feedback */
325 temp = (temp * (EAS_I32) feedback) << FM_FEEDBACK_SHIFT;
363 /* save last output for feedback in next frame */
390 EAS_U8 feedback,
428 temp += ((temp2 -temp) * feedback) >> 8;
461 /* save last output for feedback in next frame */
498 pVoice->feedback = vCfg->feedback;
272 FM_Operator( S_FM_ENG_OPER *p, EAS_I32 numSamplesToAdd, EAS_PCM *pBuffer, EAS_PCM *pModBuffer, EAS_BOOL mix, EAS_U16 gainTarget, EAS_I16 pitch, EAS_U8 feedback, EAS_I16 *pLastOutput) argument
384 FM_NoiseOperator( S_FM_ENG_OPER *p, EAS_I32 numSamplesToAdd, EAS_PCM *pBuffer, EAS_BOOL mix, EAS_U16 gainTarget, EAS_U8 feedback, EAS_I16 *pLastOutput) argument
[all...]
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_fmengine.h50 /* feedback control level shift (7 = 0dB) */
74 EAS_I16 op1Out; /* op1 output for feedback loop */
75 EAS_I16 op3Out; /* op3 output for feedback loop */
82 EAS_U8 feedback; /* feedback for Op1 and Op3 */ member in struct:__anon26630
91 EAS_U8 feedback; /* feedback for Op1 and Op3 */ member in struct:__anon26631
H A Deas_fmengine.c280 EAS_U8 feedback,
304 /* restore final output from previous frame for feedback loop */
321 /* incorporate feedback */
325 temp = (temp * (EAS_I32) feedback) << FM_FEEDBACK_SHIFT;
363 /* save last output for feedback in next frame */
390 EAS_U8 feedback,
428 temp += ((temp2 -temp) * feedback) >> 8;
461 /* save last output for feedback in next frame */
498 pVoice->feedback = vCfg->feedback;
272 FM_Operator( S_FM_ENG_OPER *p, EAS_I32 numSamplesToAdd, EAS_PCM *pBuffer, EAS_PCM *pModBuffer, EAS_BOOL mix, EAS_U16 gainTarget, EAS_I16 pitch, EAS_U8 feedback, EAS_I16 *pLastOutput) argument
384 FM_NoiseOperator( S_FM_ENG_OPER *p, EAS_I32 numSamplesToAdd, EAS_PCM *pBuffer, EAS_BOOL mix, EAS_U16 gainTarget, EAS_U8 feedback, EAS_I16 *pLastOutput) argument
[all...]
/external/v8/test/mjsunit/
H A Dswitch.js332 // clauses | tags | type feedback | optimization
349 function switch_gen(clause_type, feedback, optimize) {
353 if (feedback === 'all') {
355 } else if (Array.isArray(feedback)) {
358 return feedback.indexOf(v) === -1;
360 } else if (feedback !== undefined) {
362 fn(feedback);
384 function test_switch(clause_type, test_type, feedback, optimize) {
386 fn = switch_gen(clause_type, feedback, optimize);
436 // test_switch(clause_type, test_type, feedback, optimiz
[all...]
/external/chromium_org/net/http/
H A Dhttp_pipelined_connection.h41 Feedback feedback) = 0;
H A Dhttp_pipelined_host_forced.h66 HttpPipelinedConnection::Feedback feedback) OVERRIDE;

Completed in 623 milliseconds

123