Lines Matching defs:st
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
74 fill_struct(const char **namep, struct opt_c_struct *st, void *u)
77 struct entry_st entry = { *namep, st->count, st->tv };
81 data->tot_count += st->count;
82 data->tot_usecs += 1000000 * st->tv.tv_sec;
83 data->tot_usecs += st->tv.tv_usec;
174 struct opt_c_struct *st = DICT_FIND_REF(dict_opt_c, &libsym->name,
176 if (st == NULL) {
187 st = DICT_FIND_REF(dict_opt_c, &libsym->name,
189 assert(st != NULL);
192 if (st->tv.tv_usec + spent.tm.tv_usec > 1000000) {
193 st->tv.tv_usec += spent.tm.tv_usec - 1000000;
194 st->tv.tv_sec++;
196 st->tv.tv_usec += spent.tm.tv_usec;
198 st->count++;
199 st->tv.tv_sec += spent.tm.tv_sec;