Home
last modified time | relevance | path

Searched refs:i64 (Results 1 – 8 of 8) sorted by relevance

/PHP-7.1/ext/pdo/
H A Dpdo.c293 PDO_API char *php_pdo_int64_to_str(pdo_int64_t i64) /* {{{ */ in php_pdo_int64_to_str() argument
301 if (i64 < 0) { in php_pdo_int64_to_str()
302 i64 = -i64; in php_pdo_int64_to_str()
306 if (i64 == 0) { in php_pdo_int64_to_str()
315 while ((pdo_uint64_t)i64 > (pdo_uint64_t)ZEND_LONG_MAX) { in php_pdo_int64_to_str()
316 pdo_uint64_t quo = (pdo_uint64_t)i64 / (unsigned int)10; in php_pdo_int64_to_str()
317 unsigned int rem = (unsigned int)(i64 - quo*10U); in php_pdo_int64_to_str()
319 i64 = (pdo_int64_t)quo; in php_pdo_int64_to_str()
321 long_val = (zend_long)i64; in php_pdo_int64_to_str()
H A Dphp_pdo_driver.h40 PDO_API char *php_pdo_int64_to_str(pdo_int64_t i64);
/PHP-7.1/win32/
H A Dtime.c76 ff /= 10Ui64; /* convert to microseconds */ in getfilesystemtime()
77 ff -= 11644473600000000Ui64; /* convert to unix epoch */ in getfilesystemtime()
79 tv->tv_sec = (long)(ff / 1000000Ui64); in getfilesystemtime()
80 tv->tv_usec = (long)(ff % 1000000Ui64); in getfilesystemtime()
H A Dphp_stdint.h236 #define INT64_C(val) val##i64
/PHP-7.1/ext/sqlite3/libsqlite/
H A Dsqlite3.c19176 SQLITE_PRIVATE int sqlite3AddInt64(i64*,i64);
19177 SQLITE_PRIVATE int sqlite3SubInt64(i64*,i64);
19178 SQLITE_PRIVATE int sqlite3MulInt64(i64*,i64);
36497 i64 newLimit = *(i64*)pArg;
44188 i64 newLimit = *(i64*)pArg;
53011 i64 ofst = (pgno-1)*(i64)pPager->pageSize;
60178 i64 nReq = ((i64)mxPage * szPage);
73855 const i64 iEnd = (i64)iSrcPg*(i64)nSrcPgsz;
74119 const i64 iSize = (i64)pgszSrc * (i64)nSrcPage;
80524 return (i64)*(i64*)&x;
[all …]
/PHP-7.1/ext/date/lib/
H A Dtimelib_structs.h149 # define TIMELIB_LL_CONST(n) n ## i64
/PHP-7.1/ext/mysqli/
H A Dphp_mysqli_structs.h180 #define L64(x) x##i64
/PHP-7.1/ext/mysqlnd/
H A Dmysqlnd_portability.h69 #define L64(x) x##i64

Completed in 632 milliseconds