Home
last modified time | relevance | path

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

12

/PHP-5.3/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.3/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.3/ext/mysqlnd/
H A Dmysqlnd_statistics.h91 uint64_t v = (uint64_t) (value); \
100 uint64_t v1 = (uint64_t) (value1); \
101 uint64_t v2 = (uint64_t) (value2); \
113 uint64_t v1 = (uint64_t) (value1); \
114 uint64_t v2 = (uint64_t) (value2); \
115 uint64_t v3 = (uint64_t) (value3); \
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.h111 uint64_t affected_rows;
112 uint64_t last_insert_id;
163 uint64_t affected_rows;
164 uint64_t last_insert_id;
255 zend_uchar * php_mysqlnd_net_store_length(zend_uchar *packet, uint64_t length);
H A Dmysqlnd_debug.c327 uint64_t some_time = 0; in MYSQLND_METHOD()
345 uint64_t calls;
346 uint64_t min_own;
347 uint64_t max_own;
348 uint64_t avg_own;
350 uint64_t min_in_calls;
351 uint64_t max_in_calls;
352 uint64_t avg_in_calls;
354 uint64_t min_total;
355 uint64_t max_total;
[all …]
H A Dmysqlnd_structs.h95 uint64_t affected_rows;
96 uint64_t last_insert_id;
194 uint64_t flags;
231 uint64_t *values;
365 typedef uint64_t (*func_mysqlnd_conn__get_thread_id)(const MYSQLND * const conn TSRMLS_DC);
379 typedef uint64_t (*func_mysqlnd_conn__get_affected_rows)(const MYSQLND * const conn TSRMLS_DC);
505 typedef uint64_t (*func_mysqlnd_res__num_rows)(const MYSQLND_RES * const result TSRMLS_DC);
745 uint64_t thread_id;
833 uint64_t row_count;
834 uint64_t initialized_rows;
[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.h38 …*func_leave)(MYSQLND_DEBUG * self, unsigned int line, const char * const file, uint64_t call_time);
104 uint64_t __dbg_prof_start = 0; /* initialization is needed */ \
118 uint64_t this_call_duration = 0; \
H A Dmysqlnd_wireprotocol.c159 uint64_t
166 return (uint64_t) *p; in php_mysqlnd_net_field_length_ll()
172 return (uint64_t) MYSQLND_NULL_LENGTH; in php_mysqlnd_net_field_length_ll()
175 return (uint64_t) uint2korr(p + 1); in php_mysqlnd_net_field_length_ll()
178 return (uint64_t) uint3korr(p + 1); in php_mysqlnd_net_field_length_ll()
181 return (uint64_t) uint8korr(p + 1); in php_mysqlnd_net_field_length_ll()
191 if (length < (uint64_t) L64(251)) { in php_mysqlnd_net_store_length()
196 if (length < (uint64_t) L64(65536)) { in php_mysqlnd_net_store_length()
1403 uint64_t v = in php_mysqlnd_rowp_read_text_protocol()
1405 (uint64_t) atoll((char *) p); in php_mysqlnd_rowp_read_text_protocol()
[all …]
H A Dconfig9.m442 …nt16 int32 uint32 uchar ulong int8_t uint8_t int16_t uint16_t int32_t uint32_t int64_t uint64_t], [
H A Dmysqlnd_priv.h105 #define SET_ERROR_AFF_ROWS(s) (s)->upsert_status.affected_rows = (uint64_t) ~0
H A Dmysqlnd_statistics.c253 (*stats)->values = calloc(statistic_count, sizeof(uint64_t)); in mysqlnd_stats_init()
/PHP-5.3/ext/fileinfo/libmagic/
H A Dsoftmagic.c344 uint64_t v; in mprint()
815 ((uint64_t)p->hq[6]<<8)|((uint64_t)p->hq[7])); in mconvert()
836 ((uint64_t)p->hq[1]<<8)|((uint64_t)p->hq[0])); in mconvert()
864 ((uint64_t)p->hq[2]<<40)|((uint64_t)p->hq[3]<<32)| in mconvert()
865 ((uint64_t)p->hq[4]<<24)|((uint64_t)p->hq[5]<<16)| in mconvert()
866 ((uint64_t)p->hq[6]<<8) |((uint64_t)p->hq[7]); in mconvert()
871 ((uint64_t)p->hq[5]<<40)|((uint64_t)p->hq[4]<<32)| in mconvert()
872 ((uint64_t)p->hq[3]<<24)|((uint64_t)p->hq[2]<<16)| in mconvert()
873 ((uint64_t)p->hq[1]<<8) |((uint64_t)p->hq[0]); in mconvert()
1589 uint64_t v; in file_strncmp()
[all …]
H A Dcdf.h59 uint64_t h_magic;
65 uint64_t h_uuid[2];
111 uint64_t d_storage_uuid[2];
174 uint64_t _pi_u64;
314 uint64_t cdf_tole8(uint64_t);
H A Dreadelf.h54 typedef uint64_t Elf64_Addr;
55 typedef uint64_t Elf64_Off;
56 typedef uint64_t Elf64_Xword;
H A Dreadelf.c61 private uint64_t getu64(int, uint64_t);
103 private uint64_t
104 getu64(int swap, uint64_t value) in getu64()
107 uint64_t ui; in getu64()
132 ((swap ? ((uint64_t)elf_getu32(swap, array[0])) << 32 : elf_getu32(swap, array[0])) + \
133 (swap ? elf_getu32(swap, array[1]) : ((uint64_t)elf_getu32(swap, array[1]) << 32)))
794 uint64_t cd_mask;
851 uint64_t cap_hw1 = 0; /* SunOS 5.x hardware capabilites */ in doshn()
852 uint64_t cap_sf1 = 0; /* SunOS 5.x software capabilites */ in doshn()
H A Dfile.h141 uint64_t q;
277 uint64_t _mask; /* for use with numeric and date types */
419 protected uint64_t file_signextend(struct magic_set *, struct magic *,
420 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 Dapprentice.c117 private uint64_t swap8(uint64_t);
912 protected uint64_t
913 file_signextend(struct magic_set *ms, struct magic *m, uint64_t v)
1363 uint64_t val;
1366 val = (uint64_t)strtoull(l, &t, 0);
1908 (uint64_t)strtoull(*p, &ep, 0));
2471 private uint64_t
2472 swap8(uint64_t sv)
2474 uint64_t rv;
/PHP-5.3/win32/
H A Dphp_stdint.h87 typedef unsigned __int64 uint64_t; typedef
97 typedef uint64_t uint_least64_t;
108 typedef uint64_t uint_fast64_t;
121 typedef uint64_t uintmax_t;
/PHP-5.3/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.3/ext/zip/lib/
H A Dzipconf.h47 typedef uint64_t zip_uint64_t;
/PHP-5.3/ext/date/lib/
H A Dtimelib_structs.h71 typedef uint64_t timelib_ull;

Completed in 94 milliseconds

12