Home
last modified time | relevance | path

Searched refs:bitnum (Results 1 – 9 of 9) sorted by relevance

/freebsd-13-stable/crypto/openssl/crypto/asn1/
HDt_bitst.c22 if (ASN1_BIT_STRING_get_bit(bs, bnam->bitnum)) { in ASN1_BIT_STRING_name_print()
36 int bitnum; in ASN1_BIT_STRING_set_asc() local
37 bitnum = ASN1_BIT_STRING_num_asc(name, tbl); in ASN1_BIT_STRING_set_asc()
38 if (bitnum < 0) in ASN1_BIT_STRING_set_asc()
41 if (!ASN1_BIT_STRING_set_bit(bs, bitnum, value)) in ASN1_BIT_STRING_set_asc()
53 return bnam->bitnum; in ASN1_BIT_STRING_num_asc()
HDasn1_gen.c747 long bitnum; in bitstr_cb() local
751 bitnum = strtoul(elem, &eptr, 10); in bitstr_cb()
754 if (bitnum < 0) { in bitstr_cb()
758 if (!ASN1_BIT_STRING_set_bit(bitstr, bitnum, 1)) { in bitstr_cb()
/freebsd-13-stable/crypto/openssl/crypto/x509v3/
HDv3_bitst.c52 if (ASN1_BIT_STRING_get_bit(bits, bnam->bitnum)) in STACK_OF()
75 if (!ASN1_BIT_STRING_set_bit(bs, bnam->bitnum, 1)) { in v2i_ASN1_BIT_STRING()
HDv3_enum.c49 if (strval == enam->bitnum) in i2s_ASN1_ENUMERATED_TABLE()
HDv3_crld.c166 if (!ASN1_BIT_STRING_set_bit(*preas, pbn->bitnum, 1)) in set_reasons()
188 if (ASN1_BIT_STRING_get_bit(rflags, pbn->bitnum)) { in print_reasons()
/freebsd-13-stable/sys/dev/ath/ath_hal/
HDah_regdomain.c253 int byteOffset, bitnum; in IS_BIT_SET() local
257 bitnum = bit - byteOffset*64; in IS_BIT_SET()
258 val = ((uint64_t) 1) << bitnum; in IS_BIT_SET()
/freebsd-13-stable/sys/dev/usb/net/
HDif_muge.c1861 uint32_t bitnum; in muge_hash_maddr() local
1867 bitnum = muge_hash(LLADDR(sdl)); in muge_hash_maddr()
1868 sc->sc_mchash_table[bitnum / 32] |= (1 << (bitnum % 32)); in muge_hash_maddr()
/freebsd-13-stable/crypto/openssl/include/openssl/
HDasn1.h484 int bitnum; member
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
HDSIInstrInfo.td801 class bitextract_imm<int bitnum> : SDNodeXForm<imm, [{
803 unsigned Bit = (Imm >> }] # bitnum # [{ ) & 1;