Lines Matching refs:us
95 …else { s->time->have_time = 1; s->time->h = 0; s->time->i = 0; s->time->s = 0; s->time->us = 0; } }
96 …TIME() { s->time->have_time = 0; s->time->h = 0; s->time->i = 0; s->time->s = 0; s->time->us = 0; }
684 case TIMELIB_MICROSEC: s->time->relative.us += amount * relunit->multiplier; break;
1163 s->time->us = 0;
1177 timelib_ull us;
1192 us = timelib_get_signed_nr(s, &ptr, 6);
1193 us = us * pow(10, 7 - (ptr - ptr_before));
1195 us *= -1;
1202 s->time->us = 0;
1204 s->time->relative.us = us;
1304 s->time->us = timelib_get_frac_nr(&ptr);
1326 s->time->us = timelib_get_frac_nr(&ptr);
1610 s->time->us = timelib_get_frac_nr(&ptr);
1851 s->time->us = timelib_get_frac_nr(&ptr);
1876 s->time->us = timelib_get_frac_nr(&ptr);
1956 …in.time->y = in.time->d = in.time->m = in.time->h = in.time->i = in.time->s = in.time->us = in.tim…
1974 in.time->us = TIMELIB_UNSET;
2026 time->us = 0;
2040 if (time->us == TIMELIB_UNSET ) time->us = 0;
2143 in.time->us = TIMELIB_UNSET;
2358 s->time->us = (f * pow(10, 6 - (ptr - tptr)));
2373 s->time->us = (f * pow(10, 3 - (ptr - tptr)) * 1000);
2538 …ET || s->time->i != TIMELIB_UNSET || s->time->s != TIMELIB_UNSET || s->time->us != TIMELIB_UNSET) {
2548 if (s->time->us == TIMELIB_UNSET ) {
2549 s->time->us = 0;
2602 parsed->us = 0;
2608 if (parsed->us == TIMELIB_UNSET) parsed->us = 0;
2610 if (parsed->us == TIMELIB_UNSET) parsed->us = now->us != TIMELIB_UNSET ? now->us : 0;