Home
last modified time | relevance | path

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

/external/openssh/openbsd-compat/
Dblowfish.c403 Blowfish_stream2word(const u_int8_t *data, u_int16_t databytes, in Blowfish_stream2word() argument
414 if (j >= databytes) in Blowfish_stream2word()
462 Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes, in Blowfish_expandstate() argument
483 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
484 datar ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
493 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
494 datar ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
/external/u-boot/drivers/spi/
Dich.c133 ctlr->databytes = sizeof(ich7_spi->spid); in ich_init_controller()
147 ctlr->databytes = sizeof(ich9_spi->fdata); in ich_init_controller()
523 if (trans->bytesout > ctlr->databytes) { in ich_spi_xfer()
539 data_length = min(trans->bytesout, ctlr->databytes); in ich_spi_xfer()
541 data_length = min(trans->bytesin, ctlr->databytes); in ich_spi_xfer()
552 control &= ~((ctlr->databytes - 1) << 8); in ich_spi_xfer()
656 slave->max_write_size = priv->databytes; in ich_spi_child_pre_probe()
Dich.h187 unsigned databytes; member