Lines Matching refs:start_time

57     (((ign_e) < (bins.start_time))              \
81 sktime_t start_time) in initBins() argument
93 if ((bins.start_time != RWCO_UNINIT_START) in initBins()
96 assert(bins.end_time >= bins.start_time + bins.size); in initBins()
97 bin_count = ((bins.end_time - bins.start_time) / bins.size); in initBins()
101 assert((bins.start_time + (sktime_t)(bins.size * bin_count)) in initBins()
113 bins.window_min = bins.start_time; in initBins()
126 if (bins.start_time != RWCO_UNINIT_START) { in initBins()
128 start_time = bins.start_time; in initBins()
131 start_time = start_time - (start_time % DAY_MILLISEC); in initBins()
134 start_time = (start_time - (start_time % DAY_MILLISEC) in initBins()
138 start_time = (start_time - (start_time % DAY_MILLISEC) in initBins()
146 bin_count = 1 + ((end_time - start_time) / bins.size); in initBins()
147 start_time = end_time - bins.size * bin_count; in initBins()
167 bins.window_min = start_time; in initBins()
168 bins.window_max = (sktime_t)start_time + bin_count * bins.size; in initBins()
420 if (sTime < bins.start_time) { in meanAdd()
501 if (sTime < bins.start_time) { in durationAdd()
524 && (sTime >= bins.start_time) in durationAdd()
541 if (sTime >= bins.start_time) { in durationAdd()
608 if (sTime < bins.start_time) { in maximumAdd()
664 if (sTime < bins.start_time) { in minimumAdd()
691 && (sTime >= bins.start_time) in minimumAdd()
866 if (bins.start_time == RWCO_UNINIT_START) { in printBins()
883 } else if (bins.start_time < bins.window_min) { in printBins()
892 negative_bins = 1 + (bins.window_min - bins.start_time)/bins.size; in printBins()
911 } else if (bins.start_time in printBins()
919 start_bin = (bins.start_time - bins.window_min) / bins.size; in printBins()
980 if (bins.start_time == RWCO_UNINIT_START) { in printBins()
984 (int64_t)bins.start_time,sktimestamp(bins.start_time,0)); in printBins()