HomeSort by relevance Sort by last modified time
    Searched refs:fetch_and_add (Results 1 - 4 of 4) sorted by null

  /external/valgrind/drd/tests/
circular_buffer.c 55 int fetch_and_add(int* p, int i) function
108 out = fetch_and_add(&b->out, 1);
111 fetch_and_add(&b->out, -BUFFER_MAX);
131 in = fetch_and_add(&b->in, 1);
134 fetch_and_add(&b->in, -BUFFER_MAX);
  /external/libunwind/src/mi/
mempool.c 57 pos = fetch_and_add (&sos_memory_freepos, size);
  /external/libunwind/include/
libunwind_i.h 135 # define fetch_and_add(_ptr, value) AO_fetch_and_add(_ptr, value) macro
159 # define fetch_and_add(_ptr, value) __sync_fetch_and_add(_ptr, value) macro
  /external/opencv3/modules/imgproc/src/
histogram.cpp 248 globalHistogram_[idx].fetch_and_add(1);
261 globalHistogram_[idx].fetch_and_add(1);
324 ( (tbb::atomic<int>*)(globalHistogram_ + hstep_[0]*idx0) )[idx1].fetch_and_add(1);
336 ((tbb::atomic<int>*)(globalHistogram_ + hstep_[0]*idx0))[idx1].fetch_and_add(1);
404 ( (tbb::atomic<int>*)(globalHistogram_ + hstep_[0]*idx0 + hstep_[1]*idx1) )[idx2].fetch_and_add(1);
421 ( (tbb::atomic<int>*)(globalHistogram_ + hstep_[0]*idx0 + hstep_[1]*idx1) )[idx2].fetch_and_add(1);
691 ( *(tbb::atomic<int>*)(globalHistogram_ + idx) ).fetch_and_add(1);
702 (*(tbb::atomic<int>*)(globalHistogram_ + idx)).fetch_and_add(1);
    [all...]

Completed in 319 milliseconds