Home
last modified time | relevance | path

Searched refs:bits_len (Results 1 – 2 of 2) sorted by relevance

/Linux-v5.4/crypto/
Dwp512.c1008 unsigned int bits_len = len * 8; // convert to number of bits in wp512_update() local
1009 int sourceGap = (8 - ((int)bits_len & 7)) & 7; in wp512_update()
1018 u64 value = bits_len; in wp512_update()
1025 while (bits_len > 8) { in wp512_update()
1036 bits_len -= 8; in wp512_update()
1039 if (bits_len > 0) { in wp512_update()
1045 if (bufferRem + bits_len < 8) { in wp512_update()
1046 bufferBits += bits_len; in wp512_update()
1050 bits_len -= 8 - bufferRem; in wp512_update()
1056 bufferBits += (int)bits_len; in wp512_update()
/Linux-v5.4/drivers/media/pci/cx25821/
Dcx25821-medusa-video.c538 static unsigned long convert_to_twos(long numeric, unsigned long bits_len) in convert_to_twos() argument