Searched refs:strtoll (Results 1 – 10 of 10) sorted by relevance
/PHP-7.4/ext/date/ |
H A D | config0.m4 | 4 dnl Check for strtoll, atoll 5 AC_CHECK_FUNCS(strtoll atoll)
|
H A D | php_date.c | 59 # define DATE_A64I(i, s) i = strtoll(s, NULL, 10)
|
/PHP-7.4/Zend/ |
H A D | zend_long.h | 77 # define ZEND_STRTOL(s0, s1, base) strtoll((s0), (s1), (base)) 79 # define ZEND_STRTOL_PTR strtoll
|
/PHP-7.4/ext/date/lib/ |
H A D | parse_iso_intervals.re | 31 # define strtoll(s, f, b) _atoi64(s) 34 # define strtoll(s, f, b) atoll(s) 36 # define strtoll(s, f, b) strtol(s, f, b) 126 tmp_nr = strtoll(str, NULL, 10);
|
H A D | parse_iso_intervals.c | 33 # define strtoll(s, f, b) _atoi64(s) macro 36 # define strtoll(s, f, b) atoll(s) macro 38 # define strtoll(s, f, b) strtol(s, f, b) macro 128 tmp_nr = strtoll(str, NULL, 10); in timelib_get_nr()
|
H A D | parse_date.re | 34 # define strtoll(s, f, b) _atoi64(s) 37 # define strtoll(s, f, b) atoll(s) 39 # define strtoll(s, f, b) strtol(s, f, b) 468 tmp_nr = strtoll(str, NULL, 10);
|
H A D | parse_date.c | 36 # define strtoll(s, f, b) _atoi64(s) macro 39 # define strtoll(s, f, b) atoll(s) macro 41 # define strtoll(s, f, b) strtol(s, f, b) macro 470 tmp_nr = strtoll(str, NULL, 10); in timelib_get_nr_ex()
|
/PHP-7.4/main/ |
H A D | rfc1867.c | 911 max_file_size = strtoll(value, NULL, 10);
|
/PHP-7.4/sapi/litespeed/ |
H A D | lsapilib.c | 1196 pReq->m_reqBodyLen = strtoll( pContentLen, NULL, 10 ); in parseContentLenFromHeader()
|
/PHP-7.4/ext/ffi/ |
H A D | ffi.c | 7373 val->i64 = strtoll(str, NULL, base);
|
Completed in 130 milliseconds