Home
last modified time | relevance | path

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

/PHP-7.4/ext/standard/
H A Dfile.c2101 line_end = limit = tptr; in php_fgetcsv()
2116 tptr = temp; in php_fgetcsv()
2154 tptr += (bptr - hunk_begin); in php_fgetcsv()
2165 tptr += (bptr - hunk_begin); in php_fgetcsv()
2171 tptr += line_end_len; in php_fgetcsv()
2189 tptr = new_temp + (size_t)(tptr - temp); in php_fgetcsv()
2226 tptr += (bptr - hunk_begin); in php_fgetcsv()
2253 tptr += (bptr - hunk_begin); in php_fgetcsv()
2292 tptr += (bptr - hunk_begin); in php_fgetcsv()
2294 comp_end = tptr; in php_fgetcsv()
[all …]
/PHP-7.4/ext/date/lib/
H A Dparse_date.re2211 char *tptr;
2214 tptr = ptr;
2215 if ((f = timelib_get_nr((char **) &ptr, 6)) == TIMELIB_UNSET || (ptr - tptr < 1)) {
2218 s->time->us = (f * pow(10, 6 - (ptr - tptr)));
2225 char *tptr;
2228 tptr = ptr;
2229 if ((f = timelib_get_nr((char **) &ptr, 3)) == TIMELIB_UNSET || (ptr - tptr < 1)) {
2232 s->time->us = (f * pow(10, 3 - (ptr - tptr)) * 1000);
H A Dparse_date.c25319 char *tptr; in timelib_parse_from_format_with_map() local
25322 tptr = ptr; in timelib_parse_from_format_with_map()
25323 if ((f = timelib_get_nr((char **) &ptr, 6)) == TIMELIB_UNSET || (ptr - tptr < 1)) { in timelib_parse_from_format_with_map()
25326 s->time->us = (f * pow(10, 6 - (ptr - tptr))); in timelib_parse_from_format_with_map()
25333 char *tptr; in timelib_parse_from_format_with_map() local
25336 tptr = ptr; in timelib_parse_from_format_with_map()
25337 if ((f = timelib_get_nr((char **) &ptr, 3)) == TIMELIB_UNSET || (ptr - tptr < 1)) { in timelib_parse_from_format_with_map()
25340 s->time->us = (f * pow(10, 3 - (ptr - tptr)) * 1000); in timelib_parse_from_format_with_map()

Completed in 40 milliseconds