Home
last modified time | relevance | path

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

/PHP-7.3/ext/standard/
H A Dfile.c2109 line_end = limit = tptr; in php_fgetcsv()
2124 tptr = temp; in php_fgetcsv()
2162 tptr += (bptr - hunk_begin); in php_fgetcsv()
2173 tptr += (bptr - hunk_begin); in php_fgetcsv()
2179 tptr += line_end_len; in php_fgetcsv()
2197 tptr = new_temp + (size_t)(tptr - temp); in php_fgetcsv()
2234 tptr += (bptr - hunk_begin); in php_fgetcsv()
2261 tptr += (bptr - hunk_begin); in php_fgetcsv()
2300 tptr += (bptr - hunk_begin); in php_fgetcsv()
2302 comp_end = tptr; in php_fgetcsv()
[all …]
/PHP-7.3/ext/date/lib/
H A Dparse_date.re2208 char *tptr;
2211 tptr = ptr;
2212 if ((f = timelib_get_nr((char **) &ptr, 6)) == TIMELIB_UNSET || (ptr - tptr < 1)) {
2215 s->time->us = (f * pow(10, 6 - (ptr - tptr)));
2222 char *tptr;
2225 tptr = ptr;
2226 if ((f = timelib_get_nr((char **) &ptr, 3)) == TIMELIB_UNSET || (ptr - tptr < 1)) {
2229 s->time->us = (f * pow(10, 3 - (ptr - tptr)) * 1000);
H A Dparse_date.c22524 char *tptr; in timelib_parse_from_format_with_map() local
22527 tptr = ptr; in timelib_parse_from_format_with_map()
22528 if ((f = timelib_get_nr((char **) &ptr, 6)) == TIMELIB_UNSET || (ptr - tptr < 1)) { in timelib_parse_from_format_with_map()
22531 s->time->us = (f * pow(10, 6 - (ptr - tptr))); in timelib_parse_from_format_with_map()
22538 char *tptr; in timelib_parse_from_format_with_map() local
22541 tptr = ptr; in timelib_parse_from_format_with_map()
22542 if ((f = timelib_get_nr((char **) &ptr, 3)) == TIMELIB_UNSET || (ptr - tptr < 1)) { in timelib_parse_from_format_with_map()
22545 s->time->us = (f * pow(10, 3 - (ptr - tptr)) * 1000); in timelib_parse_from_format_with_map()

Completed in 56 milliseconds