Searched refs:new_idx (Results 1 - 5 of 5) sorted by relevance

/freebsd-9.3-release/sys/dev/virtio/
H A Dvirtio_ring.h156 * just incremented index from old to new_idx, should we trigger an
160 vring_need_event(uint16_t event_idx, uint16_t new_idx, uint16_t old) argument
163 return (uint16_t)(new_idx - event_idx - 1) < (uint16_t)(new_idx - old);
H A Dvirtqueue.c765 uint16_t new_idx, prev_idx, event_idx; local
768 new_idx = vq->vq_ring.avail->idx;
769 prev_idx = new_idx - vq->vq_queued_cnt;
772 return (vring_need_event(event_idx, new_idx, prev_idx) != 0);
/freebsd-9.3-release/crypto/openssl/crypto/engine/
H A Deng_dyn.c268 int new_idx = ENGINE_get_ex_new_index(0, NULL, NULL, NULL, local
270 if (new_idx == -1) {
278 dynamic_ex_data_idx = new_idx;
279 new_idx = -1;
283 * In theory we could "give back" the index here if (new_idx>-1), but
/freebsd-9.3-release/contrib/llvm/include/llvm/Support/
H A DCFG.h183 unsigned new_idx = idx + Right; local
184 assert(index_is_valid(new_idx) && "Iterator index out of bound");
185 idx = new_idx;
/freebsd-9.3-release/gnu/lib/libregex/
H A Dregcomp.c54 static reg_errcode_t duplicate_node (int *new_idx, re_dfa_t *dfa, int org_idx,
1605 duplicate_node (new_idx, dfa, org_idx, constraint)
1607 int *new_idx, org_idx;
1620 *new_idx = dup_idx;

Completed in 157 milliseconds