php_hash_uint64   192 ext/hash/hash_fnv.c static php_hash_uint64
php_hash_uint64   208 ext/hash/hash_fnv.c 			hval ^= (php_hash_uint64)*bp++;
php_hash_uint64   211 ext/hash/hash_fnv.c 			hval ^= (php_hash_uint64)*bp++;
php_hash_uint64   706 ext/hash/hash_sha.c static const php_hash_uint64 SHA512_K[128] = {
php_hash_uint64   760 ext/hash/hash_sha.c 			((php_hash_uint64) input[j + 7]) | (((php_hash_uint64) input[j + 6]) << 8) |
php_hash_uint64   761 ext/hash/hash_sha.c 			(((php_hash_uint64) input[j + 5]) << 16) | (((php_hash_uint64) input[j + 4]) << 24) |
php_hash_uint64   762 ext/hash/hash_sha.c 			(((php_hash_uint64) input[j + 3]) << 32) | (((php_hash_uint64) input[j + 2]) << 40) |
php_hash_uint64   763 ext/hash/hash_sha.c 			(((php_hash_uint64) input[j + 1]) << 48) | (((php_hash_uint64) input[j]) << 56);
php_hash_uint64   792 ext/hash/hash_sha.c 	php_hash_uint64 a = state[0], b = state[1], c = state[2], d = state[3];
php_hash_uint64   793 ext/hash/hash_sha.c 	php_hash_uint64 e = state[4], f = state[5], g = state[6], h = state[7];
php_hash_uint64   794 ext/hash/hash_sha.c 	php_hash_uint64 x[16], T1, T2, W[80];
php_hash_uint64   841 ext/hash/hash_sha.c 	if ((context->count[0] += ((php_hash_uint64) inputLen << 3)) < ((php_hash_uint64) inputLen << 3)) {
php_hash_uint64   844 ext/hash/hash_sha.c 	context->count[1] += ((php_hash_uint64) inputLen >> 61);
php_hash_uint64   955 ext/hash/hash_sha.c 	if ((context->count[0] += ((php_hash_uint64) inputLen << 3)) < ((php_hash_uint64) inputLen << 3)) {
php_hash_uint64   958 ext/hash/hash_sha.c 	context->count[1] += ((php_hash_uint64) inputLen >> 61);
php_hash_uint64   108 ext/hash/hash_tiger.c 		php_hash_uint64 tmp[8]; \
php_hash_uint64   121 ext/hash/hash_tiger.c 	register php_hash_uint64 a, b, c, tmpa, x0, x1, x2, x3, x4, x5, x6, x7; \
php_hash_uint64   122 ext/hash/hash_tiger.c 	php_hash_uint64 aa, bb, cc; \
php_hash_uint64   141 ext/hash/hash_tiger.c 	context->passed += (php_hash_uint64) context->length << 3;
php_hash_uint64   151 ext/hash/hash_tiger.c 		tiger_compress(context->passes, ((php_hash_uint64 *) context->buffer), context->state);
php_hash_uint64   158 ext/hash/hash_tiger.c 	memcpy(&context->buffer[56], &context->passed, sizeof(php_hash_uint64));
php_hash_uint64   169 ext/hash/hash_tiger.c 	tiger_compress(context->passes, ((php_hash_uint64 *) context->buffer), context->state);
php_hash_uint64   209 ext/hash/hash_tiger.c 			tiger_compress(context->passes, ((const php_hash_uint64 *) context->buffer), context->state);
php_hash_uint64   216 ext/hash/hash_tiger.c 			tiger_compress(context->passes, ((const php_hash_uint64 *) context->buffer), context->state);
php_hash_uint64    44 ext/hash/hash_whirlpool.c     php_hash_uint64 K[8];        /* the round key */
php_hash_uint64    45 ext/hash/hash_whirlpool.c     php_hash_uint64 block[8];    /* mu(buffer) */
php_hash_uint64    46 ext/hash/hash_whirlpool.c     php_hash_uint64 state[8];    /* the cipher state */
php_hash_uint64    47 ext/hash/hash_whirlpool.c     php_hash_uint64 L[8];
php_hash_uint64    55 ext/hash/hash_whirlpool.c             (((php_hash_uint64)buffer[0]        ) << 56) ^
php_hash_uint64    56 ext/hash/hash_whirlpool.c             (((php_hash_uint64)buffer[1] & 0xffL) << 48) ^
php_hash_uint64    57 ext/hash/hash_whirlpool.c             (((php_hash_uint64)buffer[2] & 0xffL) << 40) ^
php_hash_uint64    58 ext/hash/hash_whirlpool.c             (((php_hash_uint64)buffer[3] & 0xffL) << 32) ^
php_hash_uint64    59 ext/hash/hash_whirlpool.c             (((php_hash_uint64)buffer[4] & 0xffL) << 24) ^
php_hash_uint64    60 ext/hash/hash_whirlpool.c             (((php_hash_uint64)buffer[5] & 0xffL) << 16) ^
php_hash_uint64    61 ext/hash/hash_whirlpool.c             (((php_hash_uint64)buffer[6] & 0xffL) <<  8) ^
php_hash_uint64    62 ext/hash/hash_whirlpool.c             (((php_hash_uint64)buffer[7] & 0xffL)      );
php_hash_uint64   277 ext/hash/hash_whirlpool.c     php_hash_uint64 sourceBits = len * 8;
php_hash_uint64   292 ext/hash/hash_whirlpool.c     php_hash_uint64 value = sourceBits;
php_hash_uint64    29 ext/hash/php_hash_fnv.h #define PHP_FNV1_64_INIT ((php_hash_uint64)0xcbf29ce484222325ULL)
php_hash_uint64    32 ext/hash/php_hash_fnv.h #define PHP_FNV_64_PRIME ((php_hash_uint64)0x100000001b3ULL)
php_hash_uint64    53 ext/hash/php_hash_fnv.h 	php_hash_uint64 state;
php_hash_uint64    68 ext/hash/php_hash_fnv.h static php_hash_uint64 fnv_64_buf(void *buf, size_t len, php_hash_uint64 hval, int alternate);
php_hash_uint64    77 ext/hash/php_hash_sha.h 	php_hash_uint64 state[8];	/* state */
php_hash_uint64    78 ext/hash/php_hash_sha.h 	php_hash_uint64 count[2];	/* number of bits, modulo 2^128 */
php_hash_uint64    88 ext/hash/php_hash_sha.h 	php_hash_uint64 state[8];	/* state */
php_hash_uint64    89 ext/hash/php_hash_sha.h 	php_hash_uint64 count[2];	/* number of bits, modulo 2^128 */
php_hash_uint64    26 ext/hash/php_hash_tiger.h 	php_hash_uint64 state[3];
php_hash_uint64    27 ext/hash/php_hash_tiger.h 	php_hash_uint64 passed;
php_hash_uint64    27 ext/hash/php_hash_tiger_tables.h static const php_hash_uint64 table[4*256] = {
php_hash_uint64    26 ext/hash/php_hash_whirlpool.h 	php_hash_uint64 state[8];
php_hash_uint64    26 ext/hash/php_hash_whirlpool_tables.h static const php_hash_uint64 rc[R + 1] = {
php_hash_uint64    40 ext/hash/php_hash_whirlpool_tables.h static const php_hash_uint64 C0[256] = {
php_hash_uint64   107 ext/hash/php_hash_whirlpool_tables.h static const php_hash_uint64 C1[256] = {
php_hash_uint64   174 ext/hash/php_hash_whirlpool_tables.h static const php_hash_uint64 C2[256] = {
php_hash_uint64   241 ext/hash/php_hash_whirlpool_tables.h static const php_hash_uint64 C3[256] = {
php_hash_uint64   308 ext/hash/php_hash_whirlpool_tables.h static const php_hash_uint64 C4[256] = {
php_hash_uint64   375 ext/hash/php_hash_whirlpool_tables.h static const php_hash_uint64 C5[256] = {
php_hash_uint64   442 ext/hash/php_hash_whirlpool_tables.h static const php_hash_uint64 C6[256] = {
php_hash_uint64   509 ext/hash/php_hash_whirlpool_tables.h static const php_hash_uint64 C7[256] = {