Lines Matching defs:existing
73 dt_aggregate_count(int64_t *existing, int64_t *new, size_t size)
78 existing[i] = existing[i] + new[i];
98 dt_aggregate_min(int64_t *existing, int64_t *new, size_t size)
100 if (*new < *existing)
101 *existing = *new;
106 dt_aggregate_max(int64_t *existing, int64_t *new, size_t size)
108 if (*new > *existing)
109 *existing = *new;
144 dt_aggregate_lquantize(int64_t *existing, int64_t *new, size_t size)
146 int64_t arg = *existing++;
151 existing[i] = existing[i] + new[i + 1];
600 * just add the entry to the existing hash.)