Searched defs:Increment (Results 1 - 25 of 48) sorted by relevance

12

/external/google-breakpad/src/testing/gtest/samples/
H A Dsample4.cc39 int Counter::Increment() { function in class:Counter
/external/googletest/googletest/samples/
H A Dsample4.cc39 int Counter::Increment() { function in class:Counter
/external/protobuf/gtest/samples/
H A Dsample4.cc39 int Counter::Increment() { function in class:Counter
/external/v8/testing/gtest/samples/
H A Dsample4.cc39 int Counter::Increment() { function in class:Counter
/external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
H A Dsample4.cc39 int Counter::Increment() { function in class:Counter
/external/google-benchmark/src/
H A Dcounter.cc37 void Increment(UserCounters *l, UserCounters const& r) { function in namespace:benchmark::internal
/external/libchrome/base/
H A Dcallback_helpers_unittest.cc13 void Increment(int* value) { function in namespace:__anon10785
20 base::Closure cb = base::Bind(&Increment, &run_count);
28 base::OnceClosure cb2 = base::BindOnce(&Increment, &run_count);
38 base::ScopedClosureRunner runner(base::Bind(&Increment, &run_count));
48 base::ScopedClosureRunner runner(base::Bind(&Increment, &run_count));
62 runner.ReplaceClosure(base::Bind(&Increment, &run_count_1));
63 runner.ReplaceClosure(base::Bind(&Increment, &run_count_2));
74 base::ScopedClosureRunner runner(base::Bind(&Increment, &run_count_3));
86 new base::ScopedClosureRunner(base::Bind(&Increment, &run_count)));
98 base::ScopedClosureRunner runner(base::Bind(&Increment,
[all...]
H A Dcancelable_callback_unittest.cc28 void Increment(int* count) { (*count)++; } function in namespace:base::__anon10789
42 base::Bind(&Increment, base::Unretained(&count)));
63 base::Bind(&Increment, base::Unretained(&count)));
91 base::Bind(&Increment, base::Unretained(&count)));
126 base::Bind(&Increment, base::Unretained(&count)));
160 cancelable.Reset(base::Bind(&Increment,
174 CancelableClosure cancelable(base::Bind(&Increment,
H A Dcallback_list_unittest.cc107 void Increment() { value_++; } function in class:base::__anon10787::Counter
310 Bind(&Counter::Increment, Unretained(&remove_count)));
/external/libcxx/utils/google-benchmark/src/
H A Dcounter.cc37 void Increment(UserCounters *l, UserCounters const& r) { function in namespace:benchmark::internal
/external/llvm/lib/ProfileData/
H A DInstrProfReader.cpp97 void InstrProfIterator::Increment() { function in class:InstrProfIterator
/external/webrtc/webrtc/base/
H A Datomicops.h28 static int Increment(volatile int* i) { function in class:rtc::AtomicOps
56 static int Increment(volatile int* i) {
H A Devent_tracer_unittest.cc28 void Increment() { function in class:__anon30562::TestStatistics
58 TestStatistics::Get()->Increment();
/external/webrtc/webrtc/system_wrappers/source/
H A Dcritical_section_unittest.cc37 void Increment() { function in class:webrtc::__anon31133::ProtectedCount
73 the_count->Increment();
99 the_count->Increment();
/external/dng_sdk/source/
H A Ddng_abort_sniffer.cpp41 void Increment (dng_priority priority);
94 void dng_priority_manager::Increment (dng_priority priority) function in class:dng_priority_manager
164 gPriorityManager.Increment (fPriority);
H A Ddng_gain_map.cpp66 void Increment () function in class:dng_gain_map_interpolator
587 interp.Increment ();
/external/pdfium/core/fpdfapi/parser/
H A Dcpdf_object_walker.cpp95 const CPDF_Object* CPDF_ObjectWalker::SubobjectIterator::Increment() { function in class:CPDF_ObjectWalker::SubobjectIterator
148 next_object_ = it->Increment();
/external/webrtc/webrtc/voice_engine/
H A Dchannel_manager.cc152 void ChannelManager::Iterator::Increment() { function in class:webrtc::voe::ChannelManager::Iterator
/external/protobuf/gtest/test/
H A Dgtest-port_test.cc830 void Increment() { function in class:testing::internal::AtomicCounterWithMutex
860 param.first->Increment();
/external/v8/src/base/
H A Datomic-utils.h23 V8_INLINE T Increment(T increment) { function in class:v8::base::AtomicNumber
47 V8_INLINE T operator+=(T value) { return Increment(value); }
/external/webp/src/utils/
H A Dutils.c91 static void Increment(int* const v) { function
162 #define Increment(v) do {} while (0) macro
193 Increment(&num_malloc_calls);
203 Increment(&num_calloc_calls);
213 Increment(&num_free_calls);
/external/google-breakpad/src/testing/gtest/test/
H A Dgtest-port_test.cc1023 void Increment() { function in class:testing::internal::AtomicCounterWithMutex
1054 param.first->Increment();
/external/googletest/googletest/test/
H A Dgtest-port_test.cc1056 void Increment() { function in class:testing::internal::AtomicCounterWithMutex
1098 param.first->Increment();
/external/libchrome/base/strings/
H A Dstring_number_conversions.cc169 // - a static function, Increment, that appends the next digit appropriately
203 Sign::Increment(new_digit, output);
220 static void Increment(uint8_t increment, value_type* output) { function in class:base::__anon10948::IteratorRangeToNumber::Positive
236 static void Increment(uint8_t increment, value_type* output) { function in class:base::__anon10948::IteratorRangeToNumber::Negative
/external/llvm/lib/Target/AMDGPU/
H A DSIInsertWaits.cpp112 const Counters& Increment);
289 const Counters &Increment) {
296 LastIssued.Array[i] += Increment.Array[i];
297 if (Increment.Array[i])
299 Sum += Increment.Array[i];
318 if (LastOpcodeType == VMEM && Increment.Named.VM) {
327 else if (Increment.Named.VM)
332 if (Increment.Named.EXP) {
599 Counters Increment = getHwCounts(*I); local
601 if (countersNonZero(Required) || countersNonZero(Increment))
287 pushInstruction(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, const Counters &Increment) argument
[all...]

Completed in 690 milliseconds

12