/third_party/json/test/src/ |
D | unit-items.cpp | 49 int counter = 1; variable 82 int counter = 1; variable 126 int counter = 1; variable 159 int counter = 1; variable 195 int counter = 1; variable 228 int counter = 1; variable 261 int counter = 1; variable 294 int counter = 1; variable 330 int counter = 1; variable 363 int counter = 1; variable [all …]
|
/third_party/boost/libs/contract/test/detail/ |
D | counter.hpp | 14 struct counter { struct 15 T value; 17 counter() : value() { ++ctors_; } in counter() function 18 static unsigned ctors() { return ctors_; } in ctors() 20 ~counter() { ++dtors_; } in ~counter() 21 static unsigned dtors() { return dtors_; } in dtors() 23 /* implicit */ counter(counter const& other) : value(other.value) { in counter() argument 28 counter& operator=(counter const& other) { in operator =() 34 static unsigned copies() { return ctor_copies_ + op_copies_; } in copies() 36 static counter const& eval(counter const& me) { ++me.evals_; return me; } in eval() [all …]
|
/third_party/boost/boost/thread/detail/ |
D | counter.hpp | 24 struct counter struct 26 condition_variable cond_; 27 std::size_t value_; 29 counter(std::size_t value) in counter() function 34 counter& operator=(counter const& rhs) in operator =() 39 counter& operator=(std::size_t value) in operator =() 45 operator std::size_t() const in operator std::size_t() 49 operator std::size_t&() in operator std::size_t&() 54 void inc_and_notify_all() in inc_and_notify_all() 60 void dec_and_notify_all() in dec_and_notify_all() [all …]
|
/third_party/boost/libs/bimap/example/ |
D | repetitions_counter.cpp | 32 struct counter { struct 33 counter() : c(0) {} in counter() function 34 counter& operator++() { ++c; return *this; } in operator ++() argument 48 list_of< counter > /*< `counter` is an integer that is initialized in main() argument
|
/third_party/boost/libs/spirit/example/karma/ |
D | customize_counter.cpp | 20 struct counter struct 23 typedef int iterator; 28 counter(int max_count) in counter() function 47 // library to treat the type 'client::counter' as a container providing
|
/third_party/boost/libs/iterator/test/ |
D | function_input_iterator_test.cpp | 39 struct counter { struct 40 typedef int result_type; 41 int n; 42 explicit counter(int n_) : n(n_) { } in counter() function 43 result_type operator() () { in operator ()()
|
/third_party/boost/boost/geometry/strategies/cartesian/ |
D | turn_in_ring_winding.hpp | 60 struct counter struct in boost::geometry::strategy::buffer::turn_in_ring_winding 62 inline counter() in counter() function 69 inline int code() const in code() 76 int m_count; 82 CalculationType m_min_distance; 83 bool m_close_to_offset;
|
/third_party/skia/third_party/externals/microhttpd/src/testcurl/ |
D | gauger.h | 20 #define GAUGER(category, counter, value, unit)\ argument 48 #define GAUGER_ID(category, counter, value, unit, id)\ argument 81 #define GAUGER_ID(category, counter, value, unit, id) {} argument 82 #define GAUGER(category, counter, value, unit) {} argument
|
/third_party/curl/tests/libtest/ |
D | lib547.c | 46 int *counter = (int *)clientp; in readcallback() local 67 int *counter = (int *)clientp; in ioctlcallback() local 85 int counter = 0; in test() local
|
D | lib555.c | 53 int *counter = (int *)clientp; in readcallback() local 74 int *counter = (int *)clientp; in ioctlcallback() local 88 int counter = 0; in test() local
|
/third_party/boost/boost/log/attributes/ |
D | counter.hpp | 48 class counter : class 96 explicit counter(value_type initial = (value_type)0, value_type step = (value_type)1) : in counter() function in boost::attributes::counter 104 explicit counter(cast_source const& source) : in counter() function in boost::attributes::counter
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_perf.h | 79 #define LP_COUNT(counter) lp_count.counter++ argument 80 #define LP_COUNT_ADD(counter, incr) lp_count.counter += (incr) argument 81 #define LP_COUNT_GET(counter) (lp_count.counter) argument 83 #define LP_COUNT(counter) do {} while (0) argument 84 #define LP_COUNT_ADD(counter, incr) (void)(incr) argument 85 #define LP_COUNT_GET(counter) 0 argument
|
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/ |
D | blocking_counter_test.cc | 28 void PauseAndDecreaseCounter(BlockingCounter* counter, int* done) { in PauseAndDecreaseCounter() 40 BlockingCounter counter(num_workers); in TEST() local 67 BlockingCounter counter(0); in TEST() local
|
/third_party/node/test/node-api/test_worker_terminate/ |
D | test.js | 12 const counter = new Int32Array(new SharedArrayBuffer(4)); constant 13 const worker = new Worker(__filename, { workerData: { counter } }); field
|
/third_party/boost/libs/spirit/example/lex/ |
D | word_count_functor.cpp | 113 struct counter struct 120 // c, l, w are references to the counters used to keep track of the numbers argument 122 bool operator()(Token const& t, std::size_t& c, std::size_t& w, std::size_t& l) const in operator ()()
|
/third_party/boost/libs/numeric/odeint/test/ |
D | diagnostic_state_type.hpp | 28 struct counter struct 30 static size_t& adjust_size_count( void ) in adjust_size_count() 55 static void init_counter( void ) in init_counter() argument 57 counter< N >::adjust_size_count() = 0; in init_counter() argument
|
/third_party/node/deps/npm/docs/src/components/home/ |
D | Windows.js | 24 counter: 0 property 30 this.setState({ [terminal]: false, counter: this.state.counter + 1 }, () => { property 36 counter: 0 property
|
/third_party/grpc/test/cpp/microbenchmarks/ |
D | bm_threadpool.cc | 67 AddAnotherFunctor(grpc_core::ThreadPool* pool, BlockingCounter* counter, in AddAnotherFunctor() 103 BlockingCounter counter(kConcurrentFunctor); in ThreadPoolAddAnother() local 133 SuicideFunctorForAdd(BlockingCounter* counter) : counter_(counter) { in SuicideFunctorForAdd() 161 BlockingCounter counter(num_iterations); in BM_ThreadPoolExternalAdd() local 184 AddSelfFunctor(grpc_core::ThreadPool* pool, BlockingCounter* counter, in AddSelfFunctor() 219 BlockingCounter counter(kConcurrentFunctor); in ThreadPoolAddSelf() local 302 BlockingCounter counter(batch_size); in BM_SpikyLoad() local
|
/third_party/skia/third_party/externals/swiftshader/src/Common/ |
D | Timer.cpp | 74 int64_t Timer::counter() in counter() function in sw::Timer 77 int64_t counter; in counter() local
|
/third_party/skia/third_party/externals/swiftshader/src/System/ |
D | Timer.cpp | 77 int64_t Timer::counter() in counter() function in sw::Timer 80 int64_t counter; in counter() local
|
/third_party/abseil-cpp/absl/synchronization/ |
D | blocking_counter_test.cc | 28 void PauseAndDecreaseCounter(BlockingCounter* counter, int* done) { in PauseAndDecreaseCounter() 40 BlockingCounter counter(num_workers); in TEST() local
|
/third_party/mesa3d/src/freedreno/ds/ |
D | fd_pps_driver.cc | 199 for (auto &counter : counters) { in enable_all_counters() local 292 const struct fd_perfcntr_counter *counter = d->state[id].counter; in configure() local 322 const struct fd_perfcntr_counter *counter = d->state[id].counter; in collect() local 384 FreedrenoDriver::counter(std::string name, Counter::Units units, in counter() function in pps::FreedrenoDriver 387 auto counter = DerivedCounter(this, name, units, derive); in counter() local
|
/third_party/node/test/parallel/ |
D | test-worker-http2-generic-streams-terminate.js | 16 const counter = new Int32Array(new SharedArrayBuffer(4)); constant 17 const worker = new Worker(__filename, { workerData: { counter } }); field
|
/third_party/boost/libs/thread/example/ |
D | mutex.cpp | 13 class counter class 16 counter() : count(0) { } in counter() function in counter
|
D | recursive_mutex.cpp | 11 class counter class 14 counter() : count(0) { } in counter() function in counter
|