Lines Matching refs:passed
141 context->passed += (php_hash_uint64) context->length << 3; in TigerFinalize()
158 memcpy(&context->buffer[56], &context->passed, sizeof(php_hash_uint64)); in TigerFinalize()
160 context->buffer[56] = (unsigned char) (context->passed & 0xff); in TigerFinalize()
161 context->buffer[57] = (unsigned char) ((context->passed >> 8) & 0xff); in TigerFinalize()
162 context->buffer[58] = (unsigned char) ((context->passed >> 16) & 0xff); in TigerFinalize()
163 context->buffer[59] = (unsigned char) ((context->passed >> 24) & 0xff); in TigerFinalize()
164 context->buffer[60] = (unsigned char) ((context->passed >> 32) & 0xff); in TigerFinalize()
165 context->buffer[61] = (unsigned char) ((context->passed >> 40) & 0xff); in TigerFinalize()
166 context->buffer[62] = (unsigned char) ((context->passed >> 48) & 0xff); in TigerFinalize()
167 context->buffer[63] = (unsigned char) ((context->passed >> 56) & 0xff); in TigerFinalize()
211 context->passed += 512; in PHP_TIGERUpdate()
217 context->passed += 512; in PHP_TIGERUpdate()