Searched refs:tp (Results 1 - 11 of 11) sorted by relevance
| /PHP_5_5/ext/standard/ |
| H A D | dns_win32.c | 257 char *tp = buf; local 270 if (tp > (u_char *)buf) { 272 tp[0] = ':'; 273 tp++; 275 tp += sprintf((char*)tp,"%x", out[i]); 280 tp[0] = ':'; 281 tp++; 283 tp[0] = ':'; 284 tp [all...] |
| H A D | microtime.c | 56 struct timeval tp = {0}; local 62 if (gettimeofday(&tp, NULL)) { 67 RETURN_DOUBLE((double)(tp.tv_sec + tp.tv_usec / MICRO_IN_SEC)); 73 offset = timelib_get_time_zone_info(tp.tv_sec, get_timezone_info(TSRMLS_C)); 76 add_assoc_long(return_value, "sec", tp.tv_sec); 77 add_assoc_long(return_value, "usec", tp.tv_usec); 86 snprintf(ret, 100, "%.8F %ld", tp.tv_usec / MICRO_IN_SEC, tp.tv_sec);
|
| H A D | string.c | 4563 char *tbuf, *buf, *p, *tp, *rp, c, lc; local 4585 tp = tbuf; 4587 tbuf = tp = NULL; 4605 if (tp - tbuf >= PHP_TAG_BUF_SIZE) { 4606 pos = tp - tbuf; 4607 tbuf = erealloc(tbuf, (tp - tbuf) + PHP_TAG_BUF_SIZE + 1); 4608 tp = tbuf + pos; 4610 *(tp++) = '<'; 4624 if (tp - tbuf >= PHP_TAG_BUF_SIZE) { 4625 pos = tp [all...] |
| H A D | dns.c | 422 u_char *tp, *p; local 513 tp = emalloc(dlen + 1); 520 memcpy(tp + ll , cp + ll + 1, n); 524 tp[dlen] = '\0'; 527 add_assoc_stringl(*subarray, "txt", tp, (dlen>0)?dlen - 1:0, 0); 557 tp = (u_char*)name; 561 if (tp > (u_char *)name) { 563 tp[0] = ':'; 564 tp++; 566 tp [all...] |
| /PHP_5_5/ext/imap/ |
| H A D | php_imap.c | 3788 PARAMETER *tp = custom_headers_param; local 3803 mail_free_body_parameter(&tp);
|
| /PHP_5_5/main/ |
| H A D | SAPI.c | 1071 struct timeval tp = {0}; local 1072 if (!gettimeofday(&tp, NULL)) { 1073 SG(global_request_time) = (double)(tp.tv_sec + tp.tv_usec / 1000000.00);
|
| /PHP_5_5/ext/mysqlnd/ |
| H A D | mysqlnd_debug.h | 90 #define DBG_PROFILE_TIMEVAL_TO_DOUBLE(tp) ((tp.tv_sec * 1000000LL)+ tp.tv_usec) 94 #define DBG_PROFILE_TIMEVAL_TO_DOUBLE(tp)
|
| /PHP_5_5/ext/fileinfo/libmagic/ |
| H A D | cdf.c | 764 cdf_timestamp_t tp; local 921 (void)memcpy(&tp, &q[o4], sizeof(tp)); 922 inp[i].pi_tp = CDF_TOLE8((uint64_t)tp); 1200 cdf_timestamp_t tp; local 1244 tp = info[i].pi_tp; 1246 if (tp < 1000000000000000i64) { 1248 if (tp < 1000000000000000LL) { 1250 cdf_print_elapsed_time(buf, sizeof(buf), tp); 1253 cdf_timestamp_to_timespec(&ts, tp); [all...] |
| H A D | readcdf.c | 52 cdf_timestamp_t tp; local 130 tp = info[i].pi_tp; 131 if (tp != 0) { 134 if (tp < 1000000000000000i64) { 136 if (tp < 1000000000000000LL) { 139 sizeof(tbuf), tp); 145 if (cdf_timestamp_to_timespec(&ts, tp) == -1) {
|
| /PHP_5_5/ext/date/lib/ |
| H A D | parse_date.c | 538 const timelib_lookup_table *tp; local 547 for (tp = timelib_reltext_lookup; tp->name; tp++) { 548 if (strcasecmp(word, tp->name) == 0) { 549 value = tp->value; 550 *behavior = tp->type; 571 const timelib_lookup_table *tp; local 580 for (tp = timelib_month_lookup; tp 617 const timelib_relunit *tp, *value = NULL; local 672 const timelib_tz_lookup_table *tp, *first_found_elem = NULL; local 731 const timelib_tz_lookup_table *tp; local 25218 const timelib_tz_lookup_table *tp; local [all...] |
| H A D | parse_date.re | 536 const timelib_lookup_table *tp; 545 for (tp = timelib_reltext_lookup; tp->name; tp++) { 546 if (strcasecmp(word, tp->name) == 0) { 547 value = tp->value; 548 *behavior = tp->type; 569 const timelib_lookup_table *tp; 578 for (tp = timelib_month_lookup; tp [all...] |
Completed in 56 milliseconds