Home
last modified time | relevance | path

Searched refs:curr_count (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/grpcio-sys/grpc/src/core/lib/iomgr/executor/
Dmpmcqueue.cc105 int curr_count = count_.Load(MemoryOrder::RELAXED); in Put() local
107 if (queue_tail_ == queue_head_ && curr_count != 0) { in Put()
109 Node* new_chunk = AllocateNodes(curr_count); in Put()
118 new_chunk[curr_count - 1].next = queue_head_; in Put()
120 queue_head_->prev = &new_chunk[curr_count - 1]; in Put()
131 if (curr_count == 0) { in Put()
137 count_.Store(curr_count + 1, MemoryOrder::RELAXED); in Put()
/external/speex/libspeexdsp/
Djitter.c83 …int curr_count; /**< Number of packet timings we got (including those we disca… member
91 tb->curr_count = 0; in tb_init()
101 tb->curr_count++; in tb_add()
126 tb->counts[pos] = tb->curr_count; in tb_add()
128 tb->curr_count++; in tb_add()
193 tot_count += tb[i].curr_count; in compute_opt_delay()
340 if (jitter->timeBuffers[0]->curr_count >= jitter->subwindow_size) in update_timings()