Home
last modified time | relevance | path

Searched refs:tptr (Results 1 – 3 of 3) sorted by relevance

/PHP-8.2/ext/standard/
H A Dfile.c1966 char *tptr = temp; in php_fgetcsv() local
1999 tptr += (bptr - hunk_begin - 1); in php_fgetcsv()
2005 tptr += (bptr - hunk_begin); in php_fgetcsv()
2012 tptr += (bptr - hunk_begin); in php_fgetcsv()
2018 tptr += line_end_len; in php_fgetcsv()
2036 tptr = new_temp + (size_t)(tptr - temp); in php_fgetcsv()
2073 tptr += (bptr - hunk_begin); in php_fgetcsv()
2100 tptr += (bptr - hunk_begin); in php_fgetcsv()
2139 tptr += (bptr - hunk_begin); in php_fgetcsv()
2141 comp_end = tptr; in php_fgetcsv()
[all …]
/PHP-8.2/ext/date/lib/
H A Dparse_date.re2432 const char *tptr;
2435 tptr = ptr;
2436 if ((f = timelib_get_nr(&ptr, 6)) == TIMELIB_UNSET || (ptr - tptr < 1)) {
2441 s->time->us = (f * pow(10, 6 - (ptr - tptr)));
2447 const char *tptr;
2450 tptr = ptr;
2451 if ((f = timelib_get_nr(&ptr, 3)) == TIMELIB_UNSET || (ptr - tptr < 1)) {
2456 s->time->us = (f * pow(10, 3 - (ptr - tptr)) * 1000);
H A Dparse_date.c25282 const char *tptr; in timelib_parse_from_format_with_map() local
25285 tptr = ptr; in timelib_parse_from_format_with_map()
25286 if ((f = timelib_get_nr(&ptr, 6)) == TIMELIB_UNSET || (ptr - tptr < 1)) { in timelib_parse_from_format_with_map()
25291 s->time->us = (f * pow(10, 6 - (ptr - tptr))); in timelib_parse_from_format_with_map()
25297 const char *tptr; in timelib_parse_from_format_with_map() local
25300 tptr = ptr; in timelib_parse_from_format_with_map()
25301 if ((f = timelib_get_nr(&ptr, 3)) == TIMELIB_UNSET || (ptr - tptr < 1)) { in timelib_parse_from_format_with_map()
25306 s->time->us = (f * pow(10, 3 - (ptr - tptr)) * 1000); in timelib_parse_from_format_with_map()

Completed in 51 milliseconds