Home
last modified time | relevance | path

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

/PHP-8.1/ext/standard/
H A Dfile.c2084 char *tptr = temp; in php_fgetcsv() local
2116 tptr += (bptr - hunk_begin - 1); in php_fgetcsv()
2122 tptr += (bptr - hunk_begin); in php_fgetcsv()
2129 tptr += (bptr - hunk_begin); in php_fgetcsv()
2135 tptr += line_end_len; in php_fgetcsv()
2153 tptr = new_temp + (size_t)(tptr - temp); in php_fgetcsv()
2190 tptr += (bptr - hunk_begin); in php_fgetcsv()
2217 tptr += (bptr - hunk_begin); in php_fgetcsv()
2256 tptr += (bptr - hunk_begin); in php_fgetcsv()
2258 comp_end = tptr; in php_fgetcsv()
[all …]
/PHP-8.1/ext/date/lib/
H A Dparse_date.re2349 const char *tptr;
2352 tptr = ptr;
2353 if ((f = timelib_get_nr(&ptr, 6)) == TIMELIB_UNSET || (ptr - tptr < 1)) {
2358 s->time->us = (f * pow(10, 6 - (ptr - tptr)));
2364 const char *tptr;
2367 tptr = ptr;
2368 if ((f = timelib_get_nr(&ptr, 3)) == TIMELIB_UNSET || (ptr - tptr < 1)) {
2373 s->time->us = (f * pow(10, 3 - (ptr - tptr)) * 1000);
H A Dparse_date.c26347 const char *tptr; in timelib_parse_from_format_with_map() local
26350 tptr = ptr; in timelib_parse_from_format_with_map()
26351 if ((f = timelib_get_nr(&ptr, 6)) == TIMELIB_UNSET || (ptr - tptr < 1)) { in timelib_parse_from_format_with_map()
26356 s->time->us = (f * pow(10, 6 - (ptr - tptr))); in timelib_parse_from_format_with_map()
26362 const char *tptr; in timelib_parse_from_format_with_map() local
26365 tptr = ptr; in timelib_parse_from_format_with_map()
26366 if ((f = timelib_get_nr(&ptr, 3)) == TIMELIB_UNSET || (ptr - tptr < 1)) { in timelib_parse_from_format_with_map()
26371 s->time->us = (f * pow(10, 3 - (ptr - tptr)) * 1000); in timelib_parse_from_format_with_map()

Completed in 45 milliseconds