Home
last modified time | relevance | path

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

/external/ImageMagick/MagickCore/
Dcipher.c293 static inline unsigned char ByteMultiply(const unsigned char alpha, in ByteMultiply() function
969 beta[i]|=(ByteMultiply(0xe,(alpha[i] >> (8*j)) & 0xff) ^ in InverseAddRoundKey()
970 ByteMultiply(0xb,(alpha[i] >> (8*((j+1) % 4))) & 0xff) ^ in InverseAddRoundKey()
971 ByteMultiply(0xd,(alpha[i] >> (8*((j+2) % 4))) & 0xff) ^ in InverseAddRoundKey()
972 ByteMultiply(0x9,(alpha[i] >> (8*((j+3) % 4))) & 0xff)) << (8*j); in InverseAddRoundKey()