Searched defs:amount (Results 1 - 4 of 4) sorted by relevance
| /PHP_5_5/ext/date/lib/ |
| H A D | timelib_structs.h | 127 timelib_sll amount; member in struct:timelib_special
|
| H A D | parse_date.c | 637 static void timelib_set_relative(char **ptr, timelib_sll amount, int behavior, Scanner *s) argument 646 case TIMELIB_SECOND: s->time->relative.s += amount * relunit->multiplier; break; 647 case TIMELIB_MINUTE: s->time->relative.i += amount * relunit->multiplier; break; 648 case TIMELIB_HOUR: s->time->relative.h += amount * relunit->multiplier; break; 649 case TIMELIB_DAY: s->time->relative.d += amount * relunit->multiplier; break; 650 case TIMELIB_MONTH: s->time->relative.m += amount * relunit->multiplier; break; 651 case TIMELIB_YEAR: s->time->relative.y += amount * relunit->multiplier; break; 656 s->time->relative.d += (amount > 0 ? amount - 1 : amount) * [all...] |
| /PHP_5_5/ext/pdo_odbc/ |
| H A D | odbc_stmt.c | 398 int len, amount; local 404 amount = end - ptr; 405 if (amount == 0) { 408 if (amount > 8192) 409 amount = 8192; 410 len = php_stream_read(stm, ptr, amount);
|
| /PHP_5_5/ext/intl/calendar/ |
| H A D | calendar_methods.cpp | 300 amount; local 304 "Oll", &object, Calendar_ce_ptr, &field, &amount) == FAILURE) { 315 if (amount < INT32_MIN || amount > INT32_MAX) { 317 "intlcal_add: amount out of bounds", 0 TSRMLS_CC); 323 co->ucal->add((UCalendarDateFields)field, (int32_t)amount, CALENDAR_ERROR_CODE(co));
|
Completed in 8 milliseconds