HomeSort by relevance Sort by last modified time
    Searched defs:Increment (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/google-breakpad/src/testing/gtest/samples/
sample4.cc 39 int Counter::Increment() {
  /external/googletest/googletest/samples/
sample4.cc 37 int Counter::Increment() {
  /external/google-benchmark/src/
counter.cc 44 void Increment(UserCounters* l, UserCounters const& r) {
  /external/libcxx/utils/google-benchmark/src/
counter.cc 44 void Increment(UserCounters* l, UserCounters const& r) {
  /external/tensorflow/tensorflow/contrib/rpc/python/kernel_tests/
rpc_op_test_servicer.py 33 def Increment(self, request, context):
34 """Increment the entries in the `values` attribute of request.
  /external/grpc-grpc/src/csharp/Grpc.Core/Internal/
AtomicCounter.cs 33 public long Increment()
35 return Interlocked.Increment(ref counter);
  /external/libchrome/base/
atomic_ref_count.h 21 // Increment a reference count.
22 void Increment() { Increment(1); }
24 // Increment a reference count by "increment", which must exceed 0.
25 void Increment(int increment) {
26 ref_count_.fetch_add(increment, std::memory_order_relaxed);
callback_helpers_unittest.cc 13 void Increment(int* value) {
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, &run_count_1))
    [all...]
cancelable_callback_unittest.cc 30 void Increment(int* count) { (*count)++; }
44 base::Bind(&Increment, base::Unretained(&count)));
65 base::Bind(&Increment, base::Unretained(&count)));
93 base::Bind(&Increment, base::Unretained(&count)));
128 base::Bind(&Increment, base::Unretained(&count)));
162 cancelable.Reset(base::Bind(&Increment,
176 CancelableClosure cancelable(base::Bind(&Increment,
  /external/llvm/lib/ProfileData/
InstrProfReader.cpp 97 void InstrProfIterator::Increment() {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/
InstrProfReader.cpp 117 void InstrProfIterator::Increment() {
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
ScopeExitTest.cpp 34 auto Increment = [&] { ++Count; };
36 auto G = make_scope_exit(Increment);
43 auto G = make_scope_exit(Increment);
  /external/webrtc/webrtc/base/
atomicops.h 28 static int Increment(volatile int* i) {
56 static int Increment(volatile int* i) {
event_tracer_unittest.cc 28 void Increment() {
58 TestStatistics::Get()->Increment();
  /frameworks/av/media/libmedia/include/media/
CounterMetric.h 42 // workCounter.Increment(err);
63 // Increment the count of times the operation occurred with this
65 void Increment(AttributeType attribute) {
  /art/runtime/
barrier.cc 35 template void Barrier::Increment<Barrier::kAllowHoldingLocks>(Thread* self, int delta);
36 template void Barrier::Increment<Barrier::kDisallowHoldingLocks>(Thread* self, int delta);
44 Increment(self, -1);
53 void Barrier::Increment(Thread* self, int delta) {
57 // Increment the count. If it becomes zero after the increment
73 bool Barrier::Increment(Thread* self, int delta, uint32_t timeout_ms) {
  /external/webrtc/webrtc/system_wrappers/source/
critical_section_unittest.cc 37 void Increment() {
73 the_count->Increment();
89 // Thus, the thread should not be able to increment the count
99 the_count->Increment();
120 // The thread does not increment while lock is held.
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBotPei/
BotPeim.c 190 UINTN Increment;
217 Increment = 16 * MaxPacketLen;
219 Increment = Remain;
227 &Increment,
231 TransferredSize += Increment;
238 BufferPtr += Increment;
239 Remain -= Increment;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbMassStorageDxe/
UsbMassCbi.c 264 UINTN Increment;
297 Increment = USB_CBI_MAX_PACKET_NUM * Endpoint->MaxPacketSize;
299 Increment = Remain;
306 &Increment,
319 if (Increment == 0) {
324 Next += Increment;
325 Remain -= Increment;
343 Next += Increment;
344 Remain -= Increment;
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/Opal/OpalPasswordSmm/
OpalIdeMode.c 620 UINTN Increment;
654 Increment = 256;
674 if ((WordCount + Increment) > RShiftU64(ByteCount, 1)) {
675 Increment = (UINTN)(RShiftU64(ByteCount, 1) - WordCount);
681 Increment,
687 Increment,
698 WordCount += Increment;
699 Buffer16 += Increment;
  /external/dng_sdk/source/
dng_abort_sniffer.cpp 41 void Increment (dng_priority priority);
94 void dng_priority_manager::Increment (dng_priority priority)
164 gPriorityManager.Increment (fPriority);
dng_gain_map.cpp 66 void Increment ()
587 interp.Increment ();
  /external/libbrillo/brillo/message_loops/
message_loop_unittest.cc 40 void Increment(int* i) {
179 Bind(&Increment, &called));
196 Bind(&Increment, &called));
  /external/pdfium/core/fpdfapi/parser/
cpdf_object_walker.cpp 95 const CPDF_Object* CPDF_ObjectWalker::SubobjectIterator::Increment() {
148 next_object_ = it->Increment();
  /external/webrtc/webrtc/voice_engine/
channel_manager.cc 152 void ChannelManager::Iterator::Increment() {

Completed in 1162 milliseconds

1 2 3