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