Searched refs:counter (Results 301 - 325 of 810) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/media/cast/test/
H A Dsimulator.cc142 int* counter,
147 ++*counter;
149 base::Bind(&GotVideoFrame, counter, cast_receiver));
153 int* counter,
158 ++*counter;
160 base::Bind(&GotAudioFrame, counter, cast_receiver));
141 GotVideoFrame( int* counter, CastReceiver* cast_receiver, const scoped_refptr<media::VideoFrame>& video_frame, const base::TimeTicks& render_time, bool continuous) argument
152 GotAudioFrame( int* counter, CastReceiver* cast_receiver, scoped_ptr<AudioBus> audio_bus, const base::TimeTicks& playout_time, bool is_continuous) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_emulate_loops.c127 /* XXX: Give up if the counter is modified within an IF block. We
134 /* Find the index of the counter register. */
192 struct rc_src_register * counter; local
197 /* Find the counter and the upper limit */
202 counter = &loop->Cond->U.I.SrcReg[1];
207 counter = &loop->Cond->U.I.SrcReg[0];
214 /* Find the initial value of the counter */
215 counter_value.Src = counter;
224 DBG("Initial counter value cannot be determined.\n");
227 DBG("Initial counter valu
[all...]
/external/chromium_org/third_party/webrtc/modules/video_render/ios/
H A Dvideo_render_ios_gles20.mm290 uint counter = 0;
294 if (counter == stream_id) {
298 counter++;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DUtils.java189 ColorCounter counter = (ColorCounter) freq.get(rgb);
190 if (counter == null) {
191 counter = new ColorCounter();
192 counter.rgb = rgb;
193 freq.put(rgb, counter);
195 counter.count++;
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_emulate_loops.c127 /* XXX: Give up if the counter is modified within an IF block. We
134 /* Find the index of the counter register. */
192 struct rc_src_register * counter; local
197 /* Find the counter and the upper limit */
202 counter = &loop->Cond->U.I.SrcReg[1];
207 counter = &loop->Cond->U.I.SrcReg[0];
214 /* Find the initial value of the counter */
215 counter_value.Src = counter;
224 DBG("Initial counter value cannot be determined.\n");
227 DBG("Initial counter valu
[all...]
/external/proguard/src/proguard/retrace/
H A DReTrace.java396 for (int counter = 0; counter < extraIndent; counter++)
475 for (int counter = 0; counter < extraIndent; counter++)
/external/bluetooth/bluedroid/stack/gatt/
H A Dgatt_cl.c163 if (!p_clcb->counter)
330 p_rsp_value->len != p_clcb->counter ||
394 p_clcb->counter = to_send;
694 For now, just log the error reset the counter.
859 p_clcb->counter = len - 2;
861 if ( p_clcb->counter == (p_clcb->p_tcb->payload_size -4))
866 if (p_clcb->p_attr_buf && p_clcb->counter <= GATT_MAX_ATTR_LEN)
868 memcpy(p_clcb->p_attr_buf, p, p_clcb->counter);
869 gatt_act_read(p_clcb, p_clcb->counter);
949 UINT16 offset = p_clcb->counter;
[all...]
H A Dgatt_auth.c104 UINT32 counter; local
108 STREAM_TO_UINT32(counter, p);
110 if (BTM_BleVerifySignature(p_tcb->peer_bda, p_orig, cmd_len, counter, p))
147 gatt_act_read(p_clcb, p_clcb->counter);
/external/chromium_org/components/startup_metric_utils/
H A Dstartup_metric_utils.cc219 base::HistogramBase* counter = base::Histogram::FactoryTimeGet( local
225 counter->AddTime(i->second);
/external/chromium_org/content/renderer/media/
H A Drtc_data_channel_handler.cc27 void IncrementCounter(DataChannelCounters counter) { argument
29 counter,
/external/chromium_org/third_party/webrtc/modules/audio_processing/agc/
H A Ddigital_agc.c354 if (stt->vadFarend.counter > 10)
661 state->counter = 3; // counts updates
746 if (state->counter < kAvgDecayTime)
749 state->counter++;
767 tmp32 = WEBRTC_SPL_MUL_16_16(state->meanLongTerm, state->counter) + (int32_t)dB;
769 tmp32, WebRtcSpl_AddSatW16(state->counter, 1));
773 tmp32 += WEBRTC_SPL_MUL(state->varianceLongTerm, state->counter);
775 tmp32, WebRtcSpl_AddSatW16(state->counter, 1));
/external/clang/test/Sema/
H A Ddesignated-initializers.c127 int counter = 0; variable
128 int get8() { ++counter; return 8; }
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Drdpmc.c14 static u64 rdpmc(unsigned int counter) argument
18 asm volatile("rdpmc" : "=a" (low), "=d" (high) : "c" (counter));
/external/openssl/crypto/modes/
H A Dccm128.c154 /* counter part of nonce may not be larger than L*8 bits,
155 * L is not larger than 8, therefore 64-bit counter... */
156 static void ctr64_inc(unsigned char *counter) { argument
160 counter += 8;
163 c = counter[n];
165 counter[n] = c;
311 static void ctr64_add (unsigned char *counter,size_t inc) argument
314 counter += 8;
317 val += counter[n] + (inc&0xff);
318 counter[
[all...]
/external/openssl/crypto/rand/
H A Drand_lib.c222 * current PID, a time value and a counter.
229 static unsigned long counter; local
230 FIPS_get_timevec(buf, &counter);
/external/webrtc/src/modules/audio_processing/agc/
H A Ddigital_agc.c359 if (stt->vadFarend.counter > 10)
656 state->counter = 3; // counts updates
741 if (state->counter < kAvgDecayTime)
744 state->counter++;
762 tmp32 = WEBRTC_SPL_MUL_16_16(state->meanLongTerm, state->counter) + (WebRtc_Word32)dB;
764 WEBRTC_SPL_ADD_SAT_W16(state->counter, 1));
768 tmp32 += WEBRTC_SPL_MUL(state->varianceLongTerm, state->counter);
770 WEBRTC_SPL_ADD_SAT_W16(state->counter, 1));
/external/webrtc/src/system_wrappers/test/list/
H A Dlist.cc148 int counter = 0; local
151 FailTest(counter++ > kNumberOfElements);
/external/chromium_org/build/android/pylib/base/
H A Dtest_dispatcher_unittest.py112 counter = test_dispatcher._ThreadSafeCounter()
113 test_dispatcher._SetUp(MockRunner, '0', runners, counter)
118 counter = test_dispatcher._ThreadSafeCounter()
120 self.assertEqual(counter.GetAndIncrement(), i)
/external/chromium_org/third_party/opus/src/silk/
H A DVAD.c64 psSilk_VAD->counter = 15;
309 if( psSilk_VAD->counter < 1000 ) { /* 1000 = 20 sec */
310 min_coef = silk_DIV32_16( silk_int16_MAX, silk_RSHIFT( psSilk_VAD->counter, 4 ) + 1 );
355 /* Increment frame counter */
356 psSilk_VAD->counter++;
/external/libopus/silk/
H A DVAD.c64 psSilk_VAD->counter = 15;
309 if( psSilk_VAD->counter < 1000 ) { /* 1000 = 20 sec */
310 min_coef = silk_DIV32_16( silk_int16_MAX, silk_RSHIFT( psSilk_VAD->counter, 4 ) + 1 );
355 /* Increment frame counter */
356 psSilk_VAD->counter++;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSPrimitiveValue.cpp395 m_value.counter = c.leakRef();
450 // We must not call deref() when oilpan is enabled because m_value.counter is traced.
452 m_value.counter->deref();
977 exceptionState.throwDOMException(InvalidAccessError, "This object is not a counter value.");
981 return m_value.counter;
1200 text = "counter(" + String(m_value.string) + ')';
1204 String separator = m_value.counter->separator();
1206 result.appendLiteral("counter(");
1210 result.append(m_value.counter->identifier());
1215 String listStyle = m_value.counter
[all...]
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dfilter_ar_fast_q12_armv7.S28 @ r4: Iteration counter for the outer loop.
30 @ r6: Calculated value for output data_out[]; interation counter for inner loop
58 subs r6, r3, #3 @ Iteration counter for inner loop.
118 subs r6, r3, #2 @ inner loop counter
/external/chromium_org/tools/perf/metrics/
H A Dtimeline.py55 for counter_name, counter in renderer_process.counters.iteritems():
56 total = sum(counter.totals)
65 total / float(len(counter.totals))))
/external/chromium_org/v8/src/extensions/
H A Dstatistics-extension.cc24 StatsCounter* counter,
26 if (counter->Enabled()) {
28 v8::Number::New(isolate, *counter->GetInternalPointer()));
22 AddCounter(v8::Isolate* isolate, v8::Local<v8::Object> object, StatsCounter* counter, const char* name) argument
/external/lldb/tools/lldb-perf/common/stepping/
H A Dlldb-perf-stepping.cpp141 TestStep (int counter, ActionWanted &next_action) argument
143 if (counter > 0)
150 if (counter == 0)

Completed in 961 milliseconds

<<11121314151617181920>>