Searched defs:cursor (Results 1 - 2 of 2) sorted by relevance

/bind-9.6-ESV-R11/contrib/dlz/bin/dlzbdb/
H A Ddlzbdb.c62 * 5 unable to perform BDB cursor operation
159 DBC *cursor; /* database cursor */ member in struct:bdb_instance
160 DBC *cursor2; /* second cursor used during list operation. */
161 DBC *cursor3; /* third cursor used during list operation */
162 DBC *cursor4; /* fourth cursor used during list operation */
424 if (db.cursor != NULL) {
425 db.cursor->c_close(db.cursor);
426 db.cursor
[all...]
/bind-9.6-ESV-R11/lib/isc/
H A Dentropy.c93 isc_uint32_t cursor; /*%< current add point in the pool */ member in struct:__anon150
281 val ^= rp->pool[(rp->cursor + TAP1) & (RND_POOLWORDS - 1)];
282 val ^= rp->pool[(rp->cursor + TAP2) & (RND_POOLWORDS - 1)];
283 val ^= rp->pool[(rp->cursor + TAP3) & (RND_POOLWORDS - 1)];
284 val ^= rp->pool[(rp->cursor + TAP4) & (RND_POOLWORDS - 1)];
285 val ^= rp->pool[(rp->cursor + TAP5) & (RND_POOLWORDS - 1)];
287 rp->pool[rp->cursor++] ^= val;
289 rp->pool[rp->cursor++] ^=
300 if (rp->cursor == RND_POOLWORDS) {
301 rp->cursor
[all...]

Completed in 12 milliseconds