Searched refs:B_size (Results 1 - 3 of 3) sorted by relevance

/freebsd-10-stable/contrib/apr/random/unix/
H A Dapr_random.c68 #define B_size(g) ((g)->prng_hash->size) macro
72 #define H_size(g) (B_size(g)+K_size(g))
138 g->randomness = apr_palloc(p,B_size(g));
209 hash_finish(g->key_hash,H+B_size(g));
261 /* This will give g->B_size bytes of randomness */
266 hash(g->prng_hash,random,g->H,B_size(g));
279 g->random_bytes = B_size(g);
282 memcpy(&random[n],g->randomness+B_size(g)-g->random_bytes,l);
/freebsd-10-stable/contrib/llvm/lib/Support/
H A DFileUtilities.cpp201 uint64_t B_size = F2->getBufferSize(); local
204 if (A_size == B_size &&
/freebsd-10-stable/usr.bin/fetch/
H A Dfetch.c58 static off_t B_size; /* -B: buffer size */ variable
717 setvbuf(f, NULL, _IOFBF, B_size);
720 if (us.size != -1 && us.size - count < B_size &&
724 size = B_size;
894 B_size = (off_t)strtol(optarg, &end, 10);
1060 if (B_size < MINBUFSIZE)
1061 B_size = MINBUFSIZE;
1062 if ((buf = malloc(B_size)) == NULL)

Completed in 161 milliseconds