Home
last modified time | relevance | path

Searched refs:uint64_t (Results 1 – 25 of 70) sorted by relevance

123

/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_statistics.h77 uint64_t v = (uint64_t) (value); \
86 uint64_t v1 = (uint64_t) (value1); \
87 uint64_t v2 = (uint64_t) (value2); \
99 uint64_t v1 = (uint64_t) (value1); \
100 uint64_t v2 = (uint64_t) (value2); \
101 uint64_t v3 = (uint64_t) (value3); \
H A Dmysqlnd_debug.c276 uint64_t some_time = 0; in MYSQLND_METHOD()
294 uint64_t calls;
295 uint64_t min_own;
296 uint64_t max_own;
297 uint64_t avg_own;
299 uint64_t min_in_calls;
300 uint64_t max_in_calls;
301 uint64_t avg_in_calls;
303 uint64_t min_total;
304 uint64_t max_total;
[all …]
H A Dconfig-win.h78 #define uint5korr(A) ((uint64_t)(((uint32_t) ((zend_uchar) (A)[0])) +\
82 (((uint64_t) ((zend_uchar) (A)[4])) << 32))
83 #define uint8korr(A) (*((uint64_t *) (A)))
95 #define int8store(T,A) *((uint64_t *) (T))= (uint64_t) (A)
H A Dmysqlnd_portability.h85 #define bit_uint5korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[4])) +\
90 #define bit_uint6korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[5])) +\
94 (((uint64_t) (((uint32_t) (((unsigned char*) (A))[1])) +\
97 #define bit_uint7korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[6])) +\
101 (((uint64_t) (((uint32_t) (((unsigned char*) (A))[2])) +\
105 #define bit_uint8korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[7])) +\
109 (((uint64_t) (((uint32_t) (((unsigned char*) (A))[3])) +\
142 #define uint8korr(A) (*((uint64_t *) (A)))
166 #define int8store(T,A) *((uint64_t *) (T))= (uint64_t) (A)
210 #define uint8korr(A) ((uint64_t)(((uint32_t) ((zend_uchar) (A)[0])) +\
[all …]
H A Dmysqlnd_wireprotocol.h106 uint64_t affected_rows;
107 uint64_t last_insert_id;
136 uint64_t affected_rows;
137 uint64_t last_insert_id;
187 uint64_t affected_rows;
188 uint64_t last_insert_id;
305 zend_uchar * php_mysqlnd_net_store_length(zend_uchar *packet, const uint64_t length);
306 size_t php_mysqlnd_net_store_length_size(uint64_t length);
/PHP-7.4/ext/standard/
H A Dcrypt_sha512.c49 uint64_t H[8];
51 uint64_t total[2];
52 uint64_t buflen;
146 uint64_t W[80]; in sha512_process_block()
147 uint64_t a_save = a; in sha512_process_block()
148 uint64_t b_save = b; in sha512_process_block()
149 uint64_t c_save = c; in sha512_process_block()
150 uint64_t d_save = d; in sha512_process_block()
151 uint64_t e_save = e; in sha512_process_block()
152 uint64_t f_save = f; in sha512_process_block()
[all …]
H A Dcrc32.c50 while (nr >= sizeof(uint64_t)) { in crc32_aarch64()
51 crc = __crc32d(crc, *(uint64_t *)p); in crc32_aarch64()
52 p += sizeof(uint64_t); in crc32_aarch64()
53 nr -= sizeof(uint64_t); in crc32_aarch64()
/PHP-7.4/ext/hash/
H A Dhash_sha3.c36 static inline uint64_t rol64(uint64_t v, unsigned char b) { in rol64()
44 static inline uint64_t load64(const unsigned char* x) { in load64()
46 uint64_t ret = 0; in load64()
53 static inline void store64(unsigned char* x, uint64_t val) { in store64()
60 static inline void xor64(unsigned char* x, uint64_t val) { in xor64()
96 uint64_t C[5], D; in permute()
112 uint64_t current = readLane(x, y); in permute()
116 uint64_t temp; in permute()
128 uint64_t temp[5]; in permute()
142 uint64_t bitPos = (1<<j) - 1; in permute()
[all …]
H A Dphp_hash_fnv.h27 #define PHP_FNV1_64_INIT ((uint64_t)0xcbf29ce484222325ULL)
30 #define PHP_FNV_64_PRIME ((uint64_t)0x100000001b3ULL)
51 uint64_t state;
66 static uint64_t fnv_64_buf(void *buf, size_t len, uint64_t hval, int alternate);
H A Dphp_hash_sha.h75 uint64_t state[8]; /* state */
76 uint64_t count[2]; /* number of bits, modulo 2^128 */
86 uint64_t state[8]; /* state */
87 uint64_t count[2]; /* number of bits, modulo 2^128 */
H A Dhash_whirlpool.c42 uint64_t K[8]; /* the round key */ in WhirlpoolTransform()
43 uint64_t block[8]; /* mu(buffer) */ in WhirlpoolTransform()
44 uint64_t state[8]; /* the cipher state */ in WhirlpoolTransform()
45 uint64_t L[8]; in WhirlpoolTransform()
53 (((uint64_t)buffer[0] ) << 56) ^ in WhirlpoolTransform()
54 (((uint64_t)buffer[1] & 0xffL) << 48) ^ in WhirlpoolTransform()
55 (((uint64_t)buffer[2] & 0xffL) << 40) ^ in WhirlpoolTransform()
56 (((uint64_t)buffer[3] & 0xffL) << 32) ^ in WhirlpoolTransform()
60 (((uint64_t)buffer[7] & 0xffL) ); in WhirlpoolTransform()
275 uint64_t sourceBits = len * 8; in PHP_WHIRLPOOLUpdate()
[all …]
H A Dphp_hash_tiger.h24 uint64_t state[3];
25 uint64_t passed;
H A Dhash_tiger.c106 uint64_t tmp[8]; \
119 register uint64_t a, b, c, tmpa, x0, x1, x2, x3, x4, x5, x6, x7; \
120 uint64_t aa, bb, cc; \
139 context->passed += (uint64_t) context->length << 3; in TigerFinalize()
149 tiger_compress(context->passes, ((uint64_t *) context->buffer), context->state); in TigerFinalize()
156 memcpy(&context->buffer[56], &context->passed, sizeof(uint64_t)); in TigerFinalize()
167 tiger_compress(context->passes, ((uint64_t *) context->buffer), context->state); in TigerFinalize()
207 tiger_compress(context->passes, ((const uint64_t *) context->buffer), context->state); in PHP_TIGERUpdate()
214 tiger_compress(context->passes, ((const uint64_t *) context->buffer), context->state); in PHP_TIGERUpdate()
H A Dhash_fnv.c195 static uint64_t
196 fnv_64_buf(void *buf, size_t len, uint64_t hval, int alternate) in fnv_64_buf()
211 hval ^= (uint64_t)*bp++; in fnv_64_buf()
216 hval ^= (uint64_t)*bp++; in fnv_64_buf()
H A Dhash_sha.c704 static const uint64_t SHA512_K[128] = {
758 ((uint64_t) input[j + 7]) | (((uint64_t) input[j + 6]) << 8) | in SHADecode64()
759 (((uint64_t) input[j + 5]) << 16) | (((uint64_t) input[j + 4]) << 24) | in SHADecode64()
760 (((uint64_t) input[j + 3]) << 32) | (((uint64_t) input[j + 2]) << 40) | in SHADecode64()
761 (((uint64_t) input[j + 1]) << 48) | (((uint64_t) input[j]) << 56); in SHADecode64()
790 uint64_t a = state[0], b = state[1], c = state[2], d = state[3]; in SHA512Transform()
792 uint64_t x[16], T1, T2, W[80]; in SHA512Transform()
839 if ((context->count[0] += ((uint64_t) inputLen << 3)) < ((uint64_t) inputLen << 3)) { in PHP_SHA384Update()
842 context->count[1] += ((uint64_t) inputLen >> 61); in PHP_SHA384Update()
988 if ((context->count[0] += ((uint64_t) inputLen << 3)) < ((uint64_t) inputLen << 3)) { in PHP_SHA512Update()
[all …]
H A Dphp_hash_whirlpool.h24 uint64_t state[8];
/PHP-7.4/ext/mysqli/
H A Dmysqli_libmysql.h89 #define bit_uint5korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[4])) +\
93 (((uint64_t) (((unsigned char*) (A))[0])) << 32))
97 #define bit_uint6korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[5])) +\
101 (((uint64_t) (((uint32_t) (((unsigned char*) (A))[1])) +\
107 #define bit_uint7korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[6])) +\
111 (((uint64_t) (((uint32_t) (((unsigned char*) (A))[2])) +\
118 #define bit_uint8korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[7])) +\
122 (((uint64_t) (((uint32_t) (((unsigned char*) (A))[3])) +\
/PHP-7.4/main/
H A Dphp_stdint.h195 typedef uint64 uint64_t
197 typedef u_int64_t uint64_t;
199 typedef unsigned int uint64_t;
201 typedef unsigned long uint64_t;
203 typedef unsigned long long uint64_t;
/PHP-7.4/ext/zend_test/
H A Dphp_test.h36 uint64_t a;
37 uint64_t b;
/PHP-7.4/ext/date/lib/
H A Dtimelib.h73 # ifndef uint64_t
74 typedef unsigned __int64 uint64_t; typedef
110 typedef uint64_t timelib_ulong;
127 typedef uint64_t timelib_ull;
159 uint64_t ttisgmtcnt;
160 uint64_t ttisstdcnt;
161 uint64_t leapcnt;
162 uint64_t timecnt;
163 uint64_t typecnt;
164 uint64_t charcnt;
/PHP-7.4/win32/
H A Dphp_stdint.h96 typedef unsigned __int64 uint64_t; typedef
106 typedef uint64_t uint_least64_t;
117 typedef uint64_t uint_fast64_t;
125 typedef uint64_t uintmax_t;
/PHP-7.4/ext/fileinfo/libmagic/
H A Dcdf.h60 uint64_t h_magic;
62 uint64_t h_uuid[2];
108 uint64_t d_storage_uuid[2];
172 uint64_t _pi_u64;
276 uint64_t ce_timestamp;
336 uint64_t cdf_tole8(uint64_t);
/PHP-7.4/ext/ffi/tests/
H A Dbug79096.phpt13 uint64_t a;
14 uint64_t b;
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_sigio_win32.h28 uint64_t *flags;
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_atomic.h55 typedef uint64_t atomic_uint_t;
84 typedef uint64_t atomic_uint_t;
99 typedef uint64_t atomic_uint_t;

Completed in 65 milliseconds

123