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