is_set 240 source4/heimdal/lib/hcrypto/bn.c static const unsigned char is_set[8] = { 1, 2, 4, 8, 16, 32, 64, 128 }; is_set 251 source4/heimdal/lib/hcrypto/bn.c return p[hi->length - 1 - (bit / 8)] & is_set[bit % 8]; is_set 272 source4/heimdal/lib/hcrypto/bn.c p[hi->length - 1 - (bit / 8)] |= is_set[bit % 8]; is_set 285 source4/heimdal/lib/hcrypto/bn.c p[hi->length - 1 - (bit / 8)] &= (unsigned char)(~(is_set[bit % 8]));