Home
last modified time | relevance | path

Searched refs:bits_per_word (Results 1 – 4 of 4) sorted by relevance

/external/srtp/crypto/math/
Ddatatypes.c420 length = (length + bits_per_word - 1) & ~(unsigned long)((bits_per_word - 1)); in bitvector_alloc()
422 l = length / bits_per_word * bytes_per_word; in bitvector_alloc()
/external/srtp/googlepatches/
Dvidyo-3-srtp-ws.patch15 - * significant bit of word[m], where length = bits_per_word * m + n.
19 -#define bits_per_word 32
59 + * significant bit of word[m], where length = bits_per_word * m + n.
63 +#define bits_per_word 32
222 + /* Round length up to a multiple of bits_per_word */
223 + length = (length + bits_per_word - 1) & ~(unsigned long)((bits_per_word - 1));
225 + l = length / bits_per_word * bytes_per_word;
/external/kernel-headers/original/uapi/linux/spi/
Dspidev.h97 __u8 bits_per_word; member
/external/srtp/crypto/include/
Ddatatypes.h438 #define bits_per_word 32 macro