Lines Matching refs:existing
64 dt_aggregate_count(int64_t *existing, int64_t *new, size_t size) in dt_aggregate_count() argument
69 existing[i] = existing[i] + new[i]; in dt_aggregate_count()
89 dt_aggregate_min(int64_t *existing, int64_t *new, size_t size) in dt_aggregate_min() argument
91 if (*new < *existing) in dt_aggregate_min()
92 *existing = *new; in dt_aggregate_min()
97 dt_aggregate_max(int64_t *existing, int64_t *new, size_t size) in dt_aggregate_max() argument
99 if (*new > *existing) in dt_aggregate_max()
100 *existing = *new; in dt_aggregate_max()
135 dt_aggregate_lquantize(int64_t *existing, int64_t *new, size_t size) in dt_aggregate_lquantize() argument
137 int64_t arg = *existing++; in dt_aggregate_lquantize()
142 existing[i] = existing[i] + new[i + 1]; in dt_aggregate_lquantize()
217 dt_aggregate_llquantize(int64_t *existing, int64_t *new, size_t size) in dt_aggregate_llquantize() argument
222 existing[i] = existing[i] + new[i]; in dt_aggregate_llquantize()