Lines Matching refs:existing
58 dt_aggregate_count(int64_t *existing, int64_t *new, size_t size) in dt_aggregate_count() argument
63 existing[i] = existing[i] + new[i]; in dt_aggregate_count()
83 dt_aggregate_min(int64_t *existing, int64_t *new, size_t size) in dt_aggregate_min() argument
85 if (*new < *existing) in dt_aggregate_min()
86 *existing = *new; in dt_aggregate_min()
91 dt_aggregate_max(int64_t *existing, int64_t *new, size_t size) in dt_aggregate_max() argument
93 if (*new > *existing) in dt_aggregate_max()
94 *existing = *new; in dt_aggregate_max()
129 dt_aggregate_lquantize(int64_t *existing, int64_t *new, size_t size) in dt_aggregate_lquantize() argument
131 int64_t arg = *existing++; in dt_aggregate_lquantize()
136 existing[i] = existing[i] + new[i + 1]; in dt_aggregate_lquantize()
211 dt_aggregate_llquantize(int64_t *existing, int64_t *new, size_t size) in dt_aggregate_llquantize() argument
216 existing[i] = existing[i] + new[i]; in dt_aggregate_llquantize()