Searched defs:round (Results 1 - 9 of 9) sorted by relevance

/drivers/staging/vt6655/
H A Daes_ccmp.c134 static void AddRoundKey(unsigned char *key, int round) argument
144 key[0] = key[0] ^ rcon_table[round];
191 int round; local
199 for (round = 0; round < 11; round++) {
200 if (round == 0) {
202 AddRoundKey(abyRoundKey, round);
203 } else if (round == 10) {
207 } else /* round
[all...]
/drivers/i2c/busses/
H A Di2c-rcar.c164 u32 round, ick; local
213 round = (ick + 500000) / 1000000 * 285;
214 round = (round + 500) / 1000;
224 * scgd = (div - 20 - round + 7) / 8;
225 * scl = ick / (20 + (scgd * 8) + round);
229 scl = ick / (20 + (scgd * 8) + round);
237 dev_dbg(dev, "clk %d/%d(%lu), round %u, CDF:0x%x, SCGD: 0x%x\n",
238 scl, bus_speed, clk_get_rate(priv->clk), round, cdf, scgd);
/drivers/scsi/be2iscsi/
H A Dbe_cmds.c784 const u32 round = 10; local
794 multiplier = (MAX_INTR_RATE - interrupt_rate) * round;
796 multiplier = (multiplier + round / 2) / round;
/drivers/media/dvb-frontends/
H A Dstv0900_core.c566 u32 freq, round; local
578 round = (stv0900_get_bits(intp, TUN_RFRESTE1) >> 2) +
581 round = (round * 1000) / 2048;
583 return freq + round;
/drivers/staging/rtl8188eu/core/
H A Drtw_security.c529 PPK[0] += _S_(PPK[5] ^ TK16(0)); /* Mix key in each "round" */
771 static void next_key(u8 *key, int round);
801 static void next_key(u8 *key, int round) argument
814 rcon = rcon_table[round];
909 int round; local
916 for (round = 0; round < 11; round++) {
917 if (round == 0) {
919 next_key(round_key, round);
[all...]
/drivers/staging/rtl8712/
H A Drtl871x_security.c543 PPK[0] += _S_(PPK[5] ^ TK16(0)); /* Mix key in each "round" */
778 static void next_key(u8 *key, sint round) argument
791 rcon = rcon_table[round];
878 sint round; local
886 for (round = 0; round < 11; round++) {
887 if (round == 0) {
889 next_key(round_key, round);
890 } else if (round
[all...]
/drivers/staging/rtl8723au/core/
H A Drtw_security.c579 PPK[0] += _S_(PPK[5] ^ TK16(0)); /* Mix key in each "round" */
860 static void next_key(u8 *key, int round) argument
875 rcon = rcon_table[round];
983 int round; local
991 for (round = 0; round < 11; round++)
993 if (round == 0)
996 next_key(round_key, round);
998 else if (round
[all...]
/drivers/usb/dwc2/
H A Dgadget.c575 int round = maxreq % hs_ep->ep.maxpacket; local
578 __func__, length, maxreq, round);
580 /* round down to multiple of packets */
581 if (round)
582 maxreq -= round;
/drivers/usb/serial/
H A Dmos7720.c1430 __u16 round; local
1448 /* Check for round off */
1450 round = (__u16)(round1 - (custom * 10));
1451 if (round > 4)

Completed in 166 milliseconds