Home
last modified time | relevance | path

Searched refs:uint64_t (Results 101 – 115 of 115) sorted by last modified time

12345

/php-src/ext/hash/
H A Dhash_whirlpool.c40 uint64_t K[8]; /* the round key */ in WhirlpoolTransform()
41 uint64_t block[8]; /* mu(buffer) */ in WhirlpoolTransform()
42 uint64_t state[8]; /* the cipher state */ in WhirlpoolTransform()
43 uint64_t L[8]; in WhirlpoolTransform()
51 (((uint64_t)buffer[0] ) << 56) ^ in WhirlpoolTransform()
52 (((uint64_t)buffer[1] & 0xffL) << 48) ^ in WhirlpoolTransform()
53 (((uint64_t)buffer[2] & 0xffL) << 40) ^ in WhirlpoolTransform()
54 (((uint64_t)buffer[3] & 0xffL) << 32) ^ in WhirlpoolTransform()
58 (((uint64_t)buffer[7] & 0xffL) ); in WhirlpoolTransform()
273 uint64_t sourceBits = len * 8; in PHP_WHIRLPOOLUpdate()
[all …]
H A Dphp_hash_murmur.h45 uint64_t h[2];
46 uint64_t carry[2];
H A Dphp_hash_sha.h52 uint64_t state[8]; /* state */
53 uint64_t count[2]; /* number of bits, modulo 2^128 */
65 uint64_t state[8]; /* state */
66 uint64_t count[2]; /* number of bits, modulo 2^128 */
H A Dphp_hash_tiger.h22 uint64_t state[3];
23 uint64_t passed;
H A Dphp_hash_tiger_tables.h23 static const uint64_t table[4*256] = {
H A Dphp_hash_whirlpool_tables.h22 static const uint64_t rc[R + 1] = {
36 static const uint64_t C0[256] = {
103 static const uint64_t C1[256] = {
170 static const uint64_t C2[256] = {
237 static const uint64_t C3[256] = {
304 static const uint64_t C4[256] = {
371 static const uint64_t C5[256] = {
438 static const uint64_t C6[256] = {
505 static const uint64_t C7[256] = {
H A Dphp_hash_whirlpool.h22 uint64_t state[8];
H A Dhash_murmur.c177 uint64_t _seed = (uint64_t)Z_LVAL_P(seed); in PHP_MURMUR3FInit()
198 uint64_t h[2] = {0, 0}; in PHP_MURMUR3FFinal()
/php-src/ext/hash/murmur/
H A DPMurHash128.c73 #define ROTL64(x,r) (((uint64_t)x << r) | ((uint64_t)x >> (64 - r)))
98 FORCE_INLINE uint64_t fmix64 ( uint64_t k ) in fmix64()
483 void PMurHash128x64_Result(const uint64_t ph[2], const uint64_t pcarry[2], in PMurHash128x64_Result()
486 uint64_t h1 = ph[0]; in PMurHash128x64_Result()
487 uint64_t h2 = ph[1]; in PMurHash128x64_Result()
489 uint64_t k1; in PMurHash128x64_Result()
490 uint64_t k2 = pcarry[1]; in PMurHash128x64_Result()
528 uint64_t h1 = ph[0]; in PMurHash128x64_Process()
529 uint64_t h2 = ph[1]; in PMurHash128x64_Process()
531 uint64_t k1 = pcarry[0]; in PMurHash128x64_Process()
[all …]
H A DPMurHash128.h17 typedef unsigned __int64 uint64_t; typedef
31 void PMurHash128x64_Process(uint64_t ph[2], uint64_t pcarry[2], const void *key, int len);
32 void PMurHash128x64_Result(const uint64_t ph[2], const uint64_t pcarry[2], uint32_t total_length, u…
/php-src/ext/gd/libgd/
H A Dgd_avif.c171 static avifResult readFromCtx(avifIO *io, uint32_t readFlags, uint64_t offset, size_t size, avifROD… in readFromCtx()
/php-src/ext/ffi/tests/
H A Dbug79096.phpt11 uint64_t a;
12 uint64_t b;
H A Dbug80847.phpt15 uint64_t b;
H A D002.phpt44 typedef unsigned long type25; /* uint32_t or uint64_t */
45 typedef unsigned long int type25_2; /* uint32_t or uint64_t */
50 typedef unsigned long long type30; /* uint64_t */
51 typedef unsigned long long int type31; /* uint64_t */
/php-src/ext/ffi/
H A Dphp_ffi.h198 uint64_t u64;

Completed in 42 milliseconds

12345