Home
last modified time | relevance | path

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

12

/PHP-7.0/ext/standard/
H A Dcrypt_sha512.c58 uint64_t H[8];
60 uint64_t total[2];
61 uint64_t buflen;
155 uint64_t W[80]; in sha512_process_block()
156 uint64_t a_save = a; in sha512_process_block()
157 uint64_t b_save = b; in sha512_process_block()
158 uint64_t c_save = c; in sha512_process_block()
159 uint64_t d_save = d; in sha512_process_block()
160 uint64_t e_save = e; in sha512_process_block()
161 uint64_t f_save = f; in sha512_process_block()
[all …]
H A Dexec.c283 uint64_t estimate = (2 * (uint64_t)l) + 1; in php_escape_shell_cmd()
391 uint64_t estimate = (4 * (uint64_t)l) + 3; in php_escape_shell_arg()
/PHP-7.0/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.0/ext/mysqlnd/
H A Dmysqlnd_debug.c277 uint64_t some_time = 0; in MYSQLND_METHOD()
295 uint64_t calls;
296 uint64_t min_own;
297 uint64_t max_own;
298 uint64_t avg_own;
300 uint64_t min_in_calls;
301 uint64_t max_in_calls;
302 uint64_t avg_in_calls;
304 uint64_t min_total;
305 uint64_t max_total;
[all …]
H A Dmysqlnd_statistics.h83 uint64_t v = (uint64_t) (value); \
92 uint64_t v1 = (uint64_t) (value1); \
93 uint64_t v2 = (uint64_t) (value2); \
105 uint64_t v1 = (uint64_t) (value1); \
106 uint64_t v2 = (uint64_t) (value2); \
107 uint64_t v3 = (uint64_t) (value3); \
H A Dconfig-win.h79 #define uint5korr(A) ((uint64_t)(((uint32_t) ((zend_uchar) (A)[0])) +\
83 (((uint64_t) ((zend_uchar) (A)[4])) << 32))
84 #define uint8korr(A) (*((uint64_t *) (A)))
96 #define int8store(T,A) *((uint64_t *) (T))= (uint64_t) (A)
H A Dmysqlnd_portability.h150 #define bit_uint5korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[4])) +\
155 #define bit_uint6korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[5])) +\
159 (((uint64_t) (((uint32_t) (((unsigned char*) (A))[1])) +\
162 #define bit_uint7korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[6])) +\
166 (((uint64_t) (((uint32_t) (((unsigned char*) (A))[2])) +\
170 #define bit_uint8korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[7])) +\
174 (((uint64_t) (((uint32_t) (((unsigned char*) (A))[3])) +\
207 #define uint8korr(A) (*((uint64_t *) (A)))
231 #define int8store(T,A) *((uint64_t *) (T))= (uint64_t) (A)
275 #define uint8korr(A) ((uint64_t)(((uint32_t) ((zend_uchar) (A)[0])) +\
[all …]
H A Dmysqlnd_wireprotocol.h111 uint64_t affected_rows;
112 uint64_t last_insert_id;
141 uint64_t affected_rows;
142 uint64_t last_insert_id;
193 uint64_t affected_rows;
194 uint64_t last_insert_id;
302 zend_uchar * php_mysqlnd_net_store_length(zend_uchar *packet, uint64_t length);
303 size_t php_mysqlnd_net_store_length_size(uint64_t length);
H A Dmysqlnd_structs.h103 uint64_t affected_rows;
104 uint64_t last_insert_id;
214 uint64_t flags;
264 uint64_t *values;
636 typedef uint64_t (*func_mysqlnd_res__num_rows)(const MYSQLND_RES * const result);
777 typedef uint64_t (*func_mysqlnd_stmt__get_num_rows)(const MYSQLND_STMT * const stmt);
922 uint64_t thread_id;
1025 uint64_t row_count; \
1026 uint64_t initialized_rows; \
1067 uint64_t current_row;
[all …]
H A Dmysqlnd_ps_codec.c66 uint64_t uval = 0; in ps_fetch_from_1_to_8_bytes()
69 case 8:uval = is_bit? (uint64_t) bit_uint8korr(*row):(uint64_t) uint8korr(*row);break; in ps_fetch_from_1_to_8_bytes()
73 case 4:uval = is_bit? (uint64_t) bit_uint4korr(*row):(uint64_t) uint4korr(*row);break; in ps_fetch_from_1_to_8_bytes()
74 case 3:uval = is_bit? (uint64_t) bit_uint3korr(*row):(uint64_t) uint3korr(*row);break; in ps_fetch_from_1_to_8_bytes()
75 case 2:uval = is_bit? (uint64_t) bit_uint2korr(*row):(uint64_t) uint2korr(*row);break; in ps_fetch_from_1_to_8_bytes()
76 case 1:uval = (uint64_t) uint1korr(*row);break; in ps_fetch_from_1_to_8_bytes()
H A Dmysqlnd_debug.h37 …*func_leave)(MYSQLND_DEBUG * self, unsigned int line, const char * const file, uint64_t call_time);
114 uint64_t __dbg_prof_start = 0; /* initialization is needed */ \
135 uint64_t this_call_duration = 0; \
H A Dmysqlnd_wireprotocol.c158 uint64_t
165 return (uint64_t) *p; in php_mysqlnd_net_field_length_ll()
174 return (uint64_t) uint2korr(p + 1); in php_mysqlnd_net_field_length_ll()
177 return (uint64_t) uint3korr(p + 1); in php_mysqlnd_net_field_length_ll()
180 return (uint64_t) uint8korr(p + 1); in php_mysqlnd_net_field_length_ll()
190 if (length < (uint64_t) L64(251)) { in php_mysqlnd_net_store_length()
195 if (length < (uint64_t) L64(65536)) { in php_mysqlnd_net_store_length()
217 if (length < (uint64_t) L64(251)) { in php_mysqlnd_net_store_length_size()
220 if (length < (uint64_t) L64(65536)) { in php_mysqlnd_net_store_length_size()
1694 uint64_t v = in php_mysqlnd_rowp_read_text_protocol_aux()
[all …]
/PHP-7.0/ext/date/lib/
H A Dtimelib_structs.h79 # ifndef uint64_t
80 typedef unsigned __int64 uint64_t; typedef
130 typedef uint64_t timelib_ulong;
147 typedef uint64_t timelib_ull;
192 uint64_t ttisgmtcnt;
193 uint64_t ttisstdcnt;
194 uint64_t leapcnt;
195 uint64_t timecnt;
196 uint64_t typecnt;
197 uint64_t charcnt;
/PHP-7.0/main/
H A Dphp_stdint.h192 typedef uint64 uint64_t
194 typedef u_int64_t uint64_t;
196 typedef unsigned int uint64_t;
198 typedef unsigned long uint64_t;
200 typedef unsigned long long uint64_t;
/PHP-7.0/ext/fileinfo/libmagic/
H A Dsoftmagic.c405 uint64_t v; in mprint()
985 ((uint64_t)p->hq[6]<<8)|((uint64_t)p->hq[7])); in mconvert()
1007 ((uint64_t)p->hq[1]<<8)|((uint64_t)p->hq[0])); in mconvert()
1035 ((uint64_t)p->hq[2]<<40)|((uint64_t)p->hq[3]<<32)| in mconvert()
1036 ((uint64_t)p->hq[4]<<24)|((uint64_t)p->hq[5]<<16)| in mconvert()
1037 ((uint64_t)p->hq[6]<<8) |((uint64_t)p->hq[7]); in mconvert()
1042 ((uint64_t)p->hq[5]<<40)|((uint64_t)p->hq[4]<<32)| in mconvert()
1043 ((uint64_t)p->hq[3]<<24)|((uint64_t)p->hq[2]<<16)| in mconvert()
1044 ((uint64_t)p->hq[1]<<8) |((uint64_t)p->hq[0]); in mconvert()
1743 uint64_t v; in file_strncmp()
[all …]
H A Dcdf.h61 uint64_t h_magic;
63 uint64_t h_uuid[2];
109 uint64_t d_storage_uuid[2];
172 uint64_t _pi_u64;
276 uint64_t ce_timestamp;
332 uint64_t cdf_tole8(uint64_t);
H A Dreadcdf.c85 uint64_t clsid[2];
106 cdf_clsid_to_mime(const uint64_t clsid[2], const struct cv *cv) in cdf_clsid_to_mime()
344 format_clsid(char *buf, size_t len, const uint64_t uuid[2]) { in format_clsid()
347 (uuid[0] >> 32) & (uint64_t)0x000000000ffffffffULL, in format_clsid()
348 (uuid[0] >> 16) & (uint64_t)0x0000000000000ffffULL, in format_clsid()
349 (uuid[0] >> 0) & (uint64_t)0x0000000000000ffffULL, in format_clsid()
350 (uuid[1] >> 48) & (uint64_t)0x0000000000000ffffULL, in format_clsid()
351 (uuid[1] >> 0) & (uint64_t)0x0000fffffffffffffULL); in format_clsid()
H A Dfile.h150 uint64_t q;
294 uint64_t _mask; /* for use with numeric and date types */
426 protected const char *file_fmttime(uint64_t, int, char *);
457 protected uint64_t file_signextend(struct magic_set *, struct magic *,
458 uint64_t);
H A Dcdf.c83 #define CDF_TOLE8(x) ((uint64_t)(NEED_SWAP ? _cdf_tole8(x) : (uint64_t)(x)))
90 CDF_TOLE8(CAST(uint64_t, x))))
127 static uint64_t
128 _cdf_tole8(uint64_t sv) in _cdf_tole8()
130 uint64_t rv; in _cdf_tole8()
173 uint64_t
174 cdf_tole8(uint64_t sv) in cdf_tole8()
803 uint64_t u64; in cdf_read_property_info()
914 inp[i].pi_s64 = CDF_TOLE8((uint64_t)s64); in cdf_read_property_info()
933 u64 = CDF_TOLE8((uint64_t)u64); in cdf_read_property_info()
[all …]
H A Dprint.c77 file_fmttime(uint64_t v, int flags, char *buf) in file_fmttime()
/PHP-7.0/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.0/sapi/fpm/fpm/
H A Dfpm_atomic.h57 typedef uint64_t atomic_uint_t;
86 typedef uint64_t atomic_uint_t;
101 typedef uint64_t atomic_uint_t;
/PHP-7.0/sapi/phpdbg/
H A Dphpdbg_sigio_win32.h28 uint64_t *flags;
/PHP-7.0/Zend/
H A Dzend_multiply.h242 uint64_t res = (uint64_t) nmemb * (uint64_t) size + (uint64_t) offset; in zend_safe_address()
/PHP-7.0/ext/zip/lib/
H A Dzipconf.h108 typedef uint64_t zip_uint64_t;

Completed in 87 milliseconds

12