Lines Matching refs:output
97 static void Encode(unsigned char *output, uint32_t *input, unsigned int len) in Encode() argument
102 output[j] = (unsigned char) (input[i] & 0xff); in Encode()
103 output[j + 1] = (unsigned char) ((input[i] >> 8) & 0xff); in Encode()
104 output[j + 2] = (unsigned char) ((input[i] >> 16) & 0xff); in Encode()
105 output[j + 3] = (unsigned char) ((input[i] >> 24) & 0xff); in Encode()
114 static void Decode(uint32_t *output, const unsigned char *input, unsigned int len) in Decode() argument
119 output[i] = ((uint32_t) input[j]) | (((uint32_t) input[j + 1]) << 8) | in Decode()
259 context->passes = p; context->output = b; \
326 ((context->output & 0x03) << 6); in PHP_HAVAL128Final()
327 bits[1] = (context->output >> 2); in PHP_HAVAL128Final()
379 ((context->output & 0x03) << 6); in PHP_HAVAL160Final()
380 bits[1] = (context->output >> 2); in PHP_HAVAL160Final()
432 ((context->output & 0x03) << 6); in PHP_HAVAL192Final()
433 bits[1] = (context->output >> 2); in PHP_HAVAL192Final()
471 ((context->output & 0x03) << 6); in PHP_HAVAL224Final()
472 bits[1] = (context->output >> 2); in PHP_HAVAL224Final()
511 ((context->output & 0x03) << 6); in PHP_HAVAL256Final()
512 bits[1] = (context->output >> 2); in PHP_HAVAL256Final()