Home
last modified time | relevance | path

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

/PHP-8.0/ext/standard/
H A Dfile.c2022 line_end = limit = tptr; in php_fgetcsv()
2037 tptr = temp; in php_fgetcsv()
2075 tptr += (bptr - hunk_begin); in php_fgetcsv()
2086 tptr += (bptr - hunk_begin); in php_fgetcsv()
2092 tptr += line_end_len; in php_fgetcsv()
2110 tptr = new_temp + (size_t)(tptr - temp); in php_fgetcsv()
2147 tptr += (bptr - hunk_begin); in php_fgetcsv()
2174 tptr += (bptr - hunk_begin); in php_fgetcsv()
2213 tptr += (bptr - hunk_begin); in php_fgetcsv()
2215 comp_end = tptr; in php_fgetcsv()
[all …]
/PHP-8.0/ext/date/lib/
H A Dparse_date.re2288 const char *tptr;
2291 tptr = ptr;
2292 if ((f = timelib_get_nr(&ptr, 6)) == TIMELIB_UNSET || (ptr - tptr < 1)) {
2297 s->time->us = (f * pow(10, 6 - (ptr - tptr)));
2303 const char *tptr;
2306 tptr = ptr;
2307 if ((f = timelib_get_nr(&ptr, 3)) == TIMELIB_UNSET || (ptr - tptr < 1)) {
2312 s->time->us = (f * pow(10, 3 - (ptr - tptr)) * 1000);
H A Dparse_date.c25518 const char *tptr; in timelib_parse_from_format_with_map() local
25521 tptr = ptr; in timelib_parse_from_format_with_map()
25522 if ((f = timelib_get_nr(&ptr, 6)) == TIMELIB_UNSET || (ptr - tptr < 1)) { in timelib_parse_from_format_with_map()
25527 s->time->us = (f * pow(10, 6 - (ptr - tptr))); in timelib_parse_from_format_with_map()
25533 const char *tptr; in timelib_parse_from_format_with_map() local
25536 tptr = ptr; in timelib_parse_from_format_with_map()
25537 if ((f = timelib_get_nr(&ptr, 3)) == TIMELIB_UNSET || (ptr - tptr < 1)) { in timelib_parse_from_format_with_map()
25542 s->time->us = (f * pow(10, 3 - (ptr - tptr)) * 1000); in timelib_parse_from_format_with_map()

Completed in 46 milliseconds