Home
last modified time | relevance | path

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

12

/PHP-5.4/ext/standard/
H A Dcrypt_sha512.c64 uint64_t H[8];
66 uint64_t total[2];
67 uint64_t buflen;
161 uint64_t W[80]; in sha512_process_block()
162 uint64_t a_save = a; in sha512_process_block()
163 uint64_t b_save = b; in sha512_process_block()
164 uint64_t c_save = c; in sha512_process_block()
165 uint64_t d_save = d; in sha512_process_block()
166 uint64_t e_save = e; in sha512_process_block()
167 uint64_t f_save = f; in sha512_process_block()
[all …]
/PHP-5.4/ext/mysqli/
H A Dmysqli_libmysql.h77 #define bit_uint5korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[4])) +\
81 (((uint64_t) (((unsigned char*) (A))[0])) << 32))
85 #define bit_uint6korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[5])) +\
89 (((uint64_t) (((uint32_t) (((unsigned char*) (A))[1])) +\
95 #define bit_uint7korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[6])) +\
99 (((uint64_t) (((uint32_t) (((unsigned char*) (A))[2])) +\
106 #define bit_uint8korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[7])) +\
110 (((uint64_t) (((uint32_t) (((unsigned char*) (A))[3])) +\
/PHP-5.4/ext/mysqlnd/
H A Dmysqlnd_statistics.h85 uint64_t v = (uint64_t) (value); \
94 uint64_t v1 = (uint64_t) (value1); \
95 uint64_t v2 = (uint64_t) (value2); \
107 uint64_t v1 = (uint64_t) (value1); \
108 uint64_t v2 = (uint64_t) (value2); \
109 uint64_t v3 = (uint64_t) (value3); \
H A Dmysqlnd_debug.c288 uint64_t some_time = 0; in MYSQLND_METHOD()
306 uint64_t calls;
307 uint64_t min_own;
308 uint64_t max_own;
309 uint64_t avg_own;
311 uint64_t min_in_calls;
312 uint64_t max_in_calls;
313 uint64_t avg_in_calls;
315 uint64_t min_total;
316 uint64_t max_total;
[all …]
H A Dmysqlnd_portability.h152 typedef uint64 uint64_t; typedef
154 typedef unsigned int uint64_t; typedef
156 typedef unsigned long uint64_t; typedef
159 typedef unsigned __int64 uint64_t; typedef
161 typedef unsigned long long uint64_t; typedef
255 #define bit_uint5korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[4])) +\
260 #define bit_uint6korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[5])) +\
312 #define uint8korr(A) (*((uint64_t *) (A)))
336 #define int8store(T,A) *((uint64_t *) (T))= (uint64_t) (A)
380 #define uint8korr(A) ((uint64_t)(((uint32_t) ((zend_uchar) (A)[0])) +\
[all …]
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_wireprotocol.h113 uint64_t affected_rows;
114 uint64_t last_insert_id;
143 uint64_t affected_rows;
144 uint64_t last_insert_id;
195 uint64_t affected_rows;
196 uint64_t last_insert_id;
292 zend_uchar * php_mysqlnd_net_store_length(zend_uchar *packet, uint64_t length);
H A Dmysqlnd_structs.h101 uint64_t affected_rows;
102 uint64_t last_insert_id;
209 uint64_t flags;
247 uint64_t *values;
577 typedef uint64_t (*func_mysqlnd_res__num_rows)(const MYSQLND_RES * const result TSRMLS_DC);
580 typedef enum_func_status (*func_mysqlnd_res__seek_data)(MYSQLND_RES * result, uint64_t row TSRMLS_D…
695 typedef uint64_t (*func_mysqlnd_stmt__get_num_rows)(const MYSQLND_STMT * const stmt TSRMLS_DC);
823 uint64_t thread_id;
923 uint64_t row_count;
924 uint64_t initialized_rows;
[all …]
H A Dmysqlnd_debug.h39 …*func_leave)(MYSQLND_DEBUG * self, unsigned int line, const char * const file, uint64_t call_time);
115 uint64_t __dbg_prof_start = 0; /* initialization is needed */ \
129 uint64_t this_call_duration = 0; \
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_wireprotocol.c161 uint64_t
168 return (uint64_t) *p; in php_mysqlnd_net_field_length_ll()
174 return (uint64_t) MYSQLND_NULL_LENGTH; in php_mysqlnd_net_field_length_ll()
177 return (uint64_t) uint2korr(p + 1); in php_mysqlnd_net_field_length_ll()
180 return (uint64_t) uint3korr(p + 1); in php_mysqlnd_net_field_length_ll()
183 return (uint64_t) uint8korr(p + 1); in php_mysqlnd_net_field_length_ll()
193 if (length < (uint64_t) L64(251)) { in php_mysqlnd_net_store_length()
198 if (length < (uint64_t) L64(65536)) { in php_mysqlnd_net_store_length()
1623 uint64_t v = in php_mysqlnd_rowp_read_text_protocol()
1625 (uint64_t) atoll((char *) p); in php_mysqlnd_rowp_read_text_protocol()
[all …]
H A Dconfig9.m443 …nt16 int32 uint32 uchar ulong int8_t uint8_t int16_t uint16_t int32_t uint32_t int64_t uint64_t], [
H A Dmysqlnd_statistics.c251 (*stats)->values = calloc(statistic_count, sizeof(uint64_t)); in mysqlnd_stats_init()
H A Dmysqlnd_priv.h102 #define SET_ERROR_AFF_ROWS(s) (s)->upsert_status->affected_rows = (uint64_t) ~0
H A Dmysqlnd_result.c44 uint64_t row_count = result->stored_data? result->stored_data->row_count:0; in MYSQLND_METHOD()
952 uint64_t row_num = (set->data_cursor - set->data) / result->meta->field_count; in mysqlnd_fetch_row_buffered_c()
1025 uint64_t row_num = (set->data_cursor - set->data) / result->meta->field_count; in mysqlnd_fetch_row_buffered()
1154uint64_t total_allocated_rows = free_rows = next_extend = next_extend * 11 / 10; /* extend with 10… in MYSQLND_METHOD()
1347 MYSQLND_METHOD(mysqlnd_res, data_seek)(MYSQLND_RES * result, uint64_t row TSRMLS_DC) in MYSQLND_METHOD()
1369 static uint64_t
/PHP-5.4/ext/fileinfo/libmagic/
H A Dsoftmagic.c364 uint64_t v; in mprint()
923 ((uint64_t)p->hq[6]<<8)|((uint64_t)p->hq[7])); in mconvert()
945 ((uint64_t)p->hq[1]<<8)|((uint64_t)p->hq[0])); in mconvert()
973 ((uint64_t)p->hq[2]<<40)|((uint64_t)p->hq[3]<<32)| in mconvert()
974 ((uint64_t)p->hq[4]<<24)|((uint64_t)p->hq[5]<<16)| in mconvert()
975 ((uint64_t)p->hq[6]<<8) |((uint64_t)p->hq[7]); in mconvert()
980 ((uint64_t)p->hq[5]<<40)|((uint64_t)p->hq[4]<<32)| in mconvert()
981 ((uint64_t)p->hq[3]<<24)|((uint64_t)p->hq[2]<<16)| in mconvert()
982 ((uint64_t)p->hq[1]<<8) |((uint64_t)p->hq[0]); in mconvert()
1788 uint64_t v; in file_strncmp()
[all …]
H A Dcdf.h61 uint64_t h_magic;
67 uint64_t h_uuid[2];
113 uint64_t d_storage_uuid[2];
176 uint64_t _pi_u64;
316 uint64_t cdf_tole8(uint64_t);
H A Dfile.h150 uint64_t q;
293 uint64_t _mask; /* for use with numeric and date types */
413 protected const char *file_fmttime(uint64_t, int, char *);
441 protected uint64_t file_signextend(struct magic_set *, struct magic *,
442 uint64_t);
H A Dcdf.c83 #define CDF_TOLE8(x) ((uint64_t)(NEED_SWAP ? _cdf_tole8(x) : (uint64_t)(x)))
122 static uint64_t
123 _cdf_tole8(uint64_t sv) in _cdf_tole8()
125 uint64_t rv; in _cdf_tole8()
168 uint64_t
169 cdf_tole8(uint64_t sv) in cdf_tole8()
766 uint64_t u64; in cdf_read_property_info()
872 inp[i].pi_s64 = CDF_TOLE8((uint64_t)s64); in cdf_read_property_info()
878 inp[i].pi_u64 = CDF_TOLE8((uint64_t)u64); in cdf_read_property_info()
891 u64 = CDF_TOLE8((uint64_t)u64); in cdf_read_property_info()
[all …]
H A Dprint.c76 file_fmttime(uint64_t v, int flags, char *buf) in file_fmttime()
H A Dapprentice.c128 private uint64_t swap8(uint64_t);
1261 protected uint64_t
1262 file_signextend(struct magic_set *ms, struct magic *m, uint64_t v) in file_signextend()
1762 uint64_t val; in parse()
1765 val = (uint64_t)strtoull(l, &t, 0); in parse()
2313 (uint64_t)strtoull(*p, &ep, 0)); in getvalue()
2907 private uint64_t
2908 swap8(uint64_t sv)
2910 uint64_t rv;
/PHP-5.4/win32/
H A Dphp_stdint.h91 typedef unsigned __int64 uint64_t; typedef
101 typedef uint64_t uint_least64_t;
112 typedef uint64_t uint_fast64_t;
125 typedef uint64_t uintmax_t;
/PHP-5.4/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-5.4/ext/zip/lib/
H A Dzipconf.h47 typedef uint64_t zip_uint64_t;
/PHP-5.4/ext/date/lib/
H A Dtimelib_structs.h71 typedef uint64_t timelib_ull;

Completed in 81 milliseconds

12