Lines Matching refs:relunit
653 const timelib_relunit* relunit; in timelib_set_relative() local
655 if (!(relunit = timelib_lookup_relunit(ptr))) { in timelib_set_relative()
659 switch (relunit->unit) { in timelib_set_relative()
660 case TIMELIB_SECOND: s->time->relative.s += amount * relunit->multiplier; break; in timelib_set_relative()
661 case TIMELIB_MINUTE: s->time->relative.i += amount * relunit->multiplier; break; in timelib_set_relative()
662 case TIMELIB_HOUR: s->time->relative.h += amount * relunit->multiplier; break; in timelib_set_relative()
663 case TIMELIB_DAY: s->time->relative.d += amount * relunit->multiplier; break; in timelib_set_relative()
664 case TIMELIB_MONTH: s->time->relative.m += amount * relunit->multiplier; break; in timelib_set_relative()
665 case TIMELIB_YEAR: s->time->relative.y += amount * relunit->multiplier; break; in timelib_set_relative()
671 s->time->relative.weekday = relunit->multiplier; in timelib_set_relative()
678 s->time->relative.special.type = relunit->multiplier; in timelib_set_relative()
3527 const timelib_relunit* relunit; in scan() local
3533 relunit = timelib_lookup_relunit((char**) &ptr); in scan()
3534 s->time->relative.weekday = relunit->multiplier; in scan()