Home
last modified time | relevance | path

Searched refs:pbits (Results 1 – 3 of 3) sorted by relevance

/external/openssh/
Ddh.c262 int pbits; in dh_gen_key() local
265 (pbits = BN_num_bits(dh->p)) <= 0 || in dh_gen_key()
266 need > INT_MAX / 2 || 2 * need > pbits) in dh_gen_key()
278 dh->length = MINIMUM(need * 2, pbits - 1); in dh_gen_key()
/external/python/rsa/rsa/
Dkey.py609 pbits = nbits + shift
614 p = getprime_func(pbits)
640 p = getprime_func(pbits)
/external/pcre/dist2/src/
Dpcre2_compile.c5265 uint8_t pbits[32]; in compile_branch() local
5330 memcpy(pbits, cbits + posix_class_maps[posix_class], in compile_branch()
5341 for (i = 0; i < 32; i++) pbits[i] |= cbits[(int)i + taboffset]; in compile_branch()
5343 for (i = 0; i < 32; i++) pbits[i] &= ~cbits[(int)i + taboffset]; in compile_branch()
5350 if (tabopt == 1) pbits[1] &= ~0x3c; in compile_branch()
5351 else if (tabopt == 2) pbits[11] &= 0x7f; in compile_branch()
5357 for (i = 0; i < 32; i++) classbits[i] |= ~pbits[i]; in compile_branch()
5359 for (i = 0; i < 32; i++) classbits[i] |= pbits[i]; in compile_branch()