Home
last modified time | relevance | path

Searched refs:nbits (Results 1 – 25 of 127) sorted by path

123456

/linux/Documentation/arch/sparc/oradax/
H A Doracle-dax.rst324 | (nbits - 1); /* number of bits in primary input stream, minus 1 */
/linux/Documentation/devicetree/bindings/gpio/
H A Dgpio-grgpio.txt18 - nbits : The number of gpio lines. If not present driver assumes 32 lines.
/linux/Documentation/devicetree/bindings/pci/
H A Dcdns-pcie-host.yaml25 cdns,no-bar-match-nbits:
/linux/arch/arm64/boot/dts/ti/
H A Dk3-am64-main.dtsi1044 cdns,no-bar-match-nbits = <64>;
H A Dk3-j7200-main.dtsi757 cdns,no-bar-match-nbits = <64>;
/linux/arch/arm64/include/asm/
H A Dkvm_host.h225 int nbits, bit, bit_idx = 0; kvm_mpidr_index() local
/linux/arch/parisc/include/asm/
H A Dirq.h41 extern int txn_alloc_irq(unsigned int nbits);
/linux/arch/parisc/kernel/
H A Dtraps.c59 static int printbinary(char *buf, unsigned long x, int nbits) in printbinary() argument
61 unsigned long mask = 1UL << (nbits - 1); in printbinary()
68 return nbits; in printbinary()
/linux/arch/parisc/math-emu/
H A Ddriver.c70 extern void printbinary(unsigned long x, int nbits); in handle_fpe()
/linux/arch/sparc/include/asm/
H A Dadi_64.h16 __u64 nbits; member
41 return adi_state.caps.nbits; in adi_nbits()
H A Delf_64.h223 NEW_AUX_ENT(AT_ADI_NBITS, adi_state.caps.nbits); \
/linux/arch/sparc/kernel/
H A Dadi_64.c93 adi_state.caps.nbits = *val; in mdesc_adi_init()
108 if (adi_state.caps.nbits > 4) { in mdesc_adi_init()
119 adi_state.caps.nbits = 0; in mdesc_adi_init()
/linux/arch/x86/kernel/
H A Daperture_64.c170 int nbits; in read_agp() local
190 nbits = hweight16(apsize); in read_agp()
191 *order = 7 - nbits; in read_agp()
/linux/arch/x86/kvm/svm/
H A Dsev.c2536 unsigned int nbits; in sev_es_validate_vmgexit()
2544 nbits = sizeof(ghcb->save.valid_bitmap) * 8; in sev_es_validate_vmgexit()
2555 pr_err("%-20s%*pb\n", "valid_bitmap", nbits, ghcb->save.valid_bitmap); in sev_es_validate_vmgexit()
2396 unsigned int nbits; dump_ghcb() local
/linux/crypto/
H A Decc.c1325 if (curve->nbits == 521) /* NIST P521 */ in ecc_point_mult()
1326 num_bits = curve->nbits + 2; in ecc_point_mult()
1505 unsigned int nbits = vli_num_bits(curve->n, ndigits); in ecc_gen_privkey() local
1512 if (nbits < 224) in ecc_gen_privkey()
H A Decc_curve_defs.h20 .nbits = 192,
47 .nbits = 256,
80 .nbits = 384,
125 .nbits = 521,
146 .nbits = 255,
H A Decdsa.c269 return DIV_ROUND_UP(ctx->curve->nbits, 8); in ecdsa_max_size()
H A Decrdsa_defs.h50 .nbits = 256,
84 .nbits = 256,
122 .nbits = 256,
172 .nbits = 512,
218 .nbits = 512,
H A Dsm2.c28 unsigned int nbits; /* Number of bits. */ member
53 .nbits = 256,
/linux/drivers/crypto/aspeed/
H A Daspeed-acry.c253 int nbits, ndw; in aspeed_acry_rsa_ctx_copy() local
268 nbits = nbytes * 8; in aspeed_acry_rsa_ctx_copy()
270 nbits -= count_leading_zeros(src[0]) - (BITS_PER_LONG - 8); in aspeed_acry_rsa_ctx_copy()
296 return nbits; in aspeed_acry_rsa_ctx_copy()
/linux/drivers/crypto/
H A Dimg-hash.c466 unsigned long long nbits; in img_hash_hw_init() local
473 nbits = (u64)hdev->req->nbytes << 3; in img_hash_hw_init()
474 u = nbits >> 32; in img_hash_hw_init()
475 l = nbits; in img_hash_hw_init()
483 dev_dbg(hdev->dev, "hw initialized, nbits: %llx\n", nbits); in img_hash_hw_init()
/linux/drivers/crypto/intel/keembay/
H A Dkeembay-ocs-ecc.c495 size_t nbits; in kmb_ecc_gen_privkey() local
498 nbits = vli_num_bits(curve->n, curve->g.ndigits); in kmb_ecc_gen_privkey()
501 if (nbits < 160 || curve->g.ndigits > ARRAY_SIZE(priv)) in kmb_ecc_gen_privkey()
/linux/drivers/edac/
H A Dsb_edac.c1958 static int sb_bits(u64 addr, int nbits, u8 *bits) in sb_bits() argument
1962 for (i = 0; i < nbits; i++) in sb_bits()
H A Dskx_base.c532 static int skx_bits(u64 addr, int nbits, u8 *bits) in skx_bits() argument
536 for (i = 0; i < nbits; i++) in skx_bits()
/linux/drivers/firmware/cirrus/
H A Dcs_dsp.c3300 * @nbits: Number of bits to write in cs_dsp_chunk_flush()
3310 int cs_dsp_chunk_write(struct cs_dsp_chunk *ch, int nbits, u32 val)
3314 nwrite = min(CS_DSP_DATA_WORD_BITS - ch->cachebits, nbits);
3317 ch->cache |= val >> (nbits - nwrite); in cs_dsp_chunk_read()
3319 nbits -= nwrite; in cs_dsp_chunk_read()
3333 if (nbits) in cs_dsp_chunk_read()
3334 return cs_dsp_chunk_write(ch, nbits, val); in cs_dsp_chunk_read()
3362 * @nbits: Number of bits to read
3369 int cs_dsp_chunk_read(struct cs_dsp_chunk *ch, int nbits)
3387 nread = min(ch->cachebits, nbits);
3256 cs_dsp_chunk_write(struct cs_dsp_chunk * ch,int nbits,u32 val) cs_dsp_chunk_write() argument
3315 cs_dsp_chunk_read(struct cs_dsp_chunk * ch,int nbits) cs_dsp_chunk_read() argument
[all...]

123456