Lines Matching defs:tick
97 UINT64 tick;
108 tick = (nseconds + nsPerTick - 1) / nsPerTick; // Round up for ticks
110 if (tick >= UINT32_MAX) {
115 /* PS: skip the first tick because it is NOT a full tick. */
116 ret = LOS_TaskDelay(tick ? (UINT32)(tick + 1) : 0);
241 UINT32 tick = 0;
254 ret = LOS_SwtmrTimeGet(swtmr->usTimerID, &tick);
260 tick = 0;
262 OsTick2TimeSpec(&value->it_value, tick);