Lines Matching refs:strt
170 us_to_time(int t, char *strt) in us_to_time() argument
173 strt[0]='\0'; in us_to_time()
175 sprintf(strt,"%d", t); in us_to_time()
177 sprintf(strt,"%dus", t); in us_to_time()
179 sprintf(strt,"%gms", (float) t / 1000); in us_to_time()
181 sprintf(strt,"%gfs", (float) t / 1000000); in us_to_time()
192 char strt[16]="", stru[16]=""; in time_to_us() local
206 strncpy(strt, s, i); in time_to_us()
213 return atol(strt); in time_to_us()
215 return (strtod(strt, NULL) * 1000); in time_to_us()
217 return (strtod(strt, NULL)*1000000); in time_to_us()