Searched +defs:val +defs:out (Results 1 - 4 of 4) sorted by relevance

/bind-9.11.3/lib/dns/
H A Dopenssldh_link.c350 uint16_toregion(isc_uint16_t val, isc_region_t *region) { argument
351 *region->base = (val & 0xff00) >> 8;
353 *region->base = (val & 0x00ff);
359 isc_uint16_t val; local
362 val = ((unsigned int)(cp[0])) << 8;
363 val |= ((unsigned int)(cp[1]));
367 return (val);
698 BIGNUM *out; local
715 out = BN_bin2bn(data, strlen(str)/2, b);
716 RUNTIME_CHECK(out !
[all...]
H A Drdataset.c323 struct towire_sort *out = NULL, out_fixed[MAX_SHUFFLE]; local
373 out = isc_mem_get(cctx->mctx, count * sizeof(*out));
374 if (in == NULL || out == NULL)
378 out = out_fixed;
406 out[i].key = (*order)(&in[i], order_arg);
407 out[i].rdata = &in[i];
414 isc_uint32_t val; local
416 isc_random_get(&val);
417 choice = i + (val
432 isc_uint32_t val; local
[all...]
H A Drbtdb.c1152 * Work out how many nodes can be deleted in the time between two
3337 * Copy out re-signing information.
3674 * First we try to figure out if this node is active in
3765 * An error has occurred. Bail out.
5595 isc_uint32_t val; local
5597 isc_random_get(&val);
5601 force_expire = ISC_TF(rbtnode->down == NULL && val % 4 == 0);
5669 printnode(dns_db_t *db, dns_dbnode_t *node, FILE *out) { argument
5679 fprintf(out, "node %p, %u references, locknum = %u\n",
5689 fprintf(out, "\ttyp
[all...]
/bind-9.11.3/lib/isc/
H A Dentropy.c268 entropypool_add_word(isc_entropypool_t *rp, isc_uint32_t val) { argument
270 * Steal some values out of the pool, and xor them into the
277 val ^= rp->pool[(rp->cursor + TAP1) & (RND_POOLWORDS - 1)];
278 val ^= rp->pool[(rp->cursor + TAP2) & (RND_POOLWORDS - 1)];
279 val ^= rp->pool[(rp->cursor + TAP3) & (RND_POOLWORDS - 1)];
280 val ^= rp->pool[(rp->cursor + TAP4) & (RND_POOLWORDS - 1)];
281 val ^= rp->pool[(rp->cursor + TAP5) & (RND_POOLWORDS - 1)];
283 rp->pool[rp->cursor++] ^= val;
286 ((val << rp->rotate) | (val >> (3
311 isc_uint32_t val; local
1086 dumpstats(isc_entropy_t *ent, FILE *out) argument
1104 isc_entropy_stats(isc_entropy_t *ent, FILE *out) argument
[all...]

Completed in 50 milliseconds