Lines Matching refs:nodes
230 unsigned int nodes;
1460 dctx->nodes = 0;
1624 unsigned int nodes;
1659 nodes = dctx->nodes;
1661 while (result == ISC_R_SUCCESS && (dctx->nodes == 0 || nodes--)) {
1696 * Work out how many nodes can be written in the time between
1698 * use it as a estimate for the number of nodes to be written in the
1701 if (dctx->nodes != 0 && result == ISC_R_SUCCESS) {
1715 dctx->nodes = dctx->nodes * 2;
1716 if (dctx->nodes > 1000)
1717 dctx->nodes = 1000;
1719 nodes = dctx->nodes * interval;
1720 nodes /= (unsigned int)usecs;
1721 if (nodes == 0)
1722 nodes = 1;
1723 else if (nodes > 1000)
1724 nodes = 1000;
1727 dctx->nodes = (nodes + dctx->nodes * 7) / 8;
1732 "dumptostreaminc(%p) new nodes -> %d",
1733 dctx, dctx->nodes);
1766 dctx->nodes = 100;
1914 dctx->nodes = 100;