Lines Matching refs:int64_t

58 dt_aggregate_count(int64_t *existing, int64_t *new, size_t size)  in dt_aggregate_count()
62 for (i = 0; i < size / sizeof (int64_t); i++) in dt_aggregate_count()
67 dt_aggregate_countcmp(int64_t *lhs, int64_t *rhs) in dt_aggregate_countcmp()
69 int64_t lvar = *lhs; in dt_aggregate_countcmp()
70 int64_t rvar = *rhs; in dt_aggregate_countcmp()
83 dt_aggregate_min(int64_t *existing, int64_t *new, size_t size) in dt_aggregate_min()
91 dt_aggregate_max(int64_t *existing, int64_t *new, size_t size) in dt_aggregate_max()
98 dt_aggregate_averagecmp(int64_t *lhs, int64_t *rhs) in dt_aggregate_averagecmp()
100 int64_t lavg = lhs[0] ? (lhs[1] / lhs[0]) : 0; in dt_aggregate_averagecmp()
101 int64_t ravg = rhs[0] ? (rhs[1] / rhs[0]) : 0; in dt_aggregate_averagecmp()
113 dt_aggregate_stddevcmp(int64_t *lhs, int64_t *rhs) in dt_aggregate_stddevcmp()
129 dt_aggregate_lquantize(int64_t *existing, int64_t *new, size_t size) in dt_aggregate_lquantize()
131 int64_t arg = *existing++; in dt_aggregate_lquantize()
140 dt_aggregate_lquantizedsum(int64_t *lquanta) in dt_aggregate_lquantizedsum()
142 int64_t arg = *lquanta++; in dt_aggregate_lquantizedsum()
155 static int64_t
156 dt_aggregate_lquantizedzero(int64_t *lquanta) in dt_aggregate_lquantizedzero()
158 int64_t arg = *lquanta++; in dt_aggregate_lquantizedzero()
180 dt_aggregate_lquantizedcmp(int64_t *lhs, int64_t *rhs) in dt_aggregate_lquantizedcmp()
184 int64_t lzero, rzero; in dt_aggregate_lquantizedcmp()
211 dt_aggregate_llquantize(int64_t *existing, int64_t *new, size_t size) in dt_aggregate_llquantize()
215 for (i = 1; i < size / sizeof (int64_t); i++) in dt_aggregate_llquantize()
220 dt_aggregate_llquantizedsum(int64_t *llquanta) in dt_aggregate_llquantizedsum()
222 int64_t arg = *llquanta++; in dt_aggregate_llquantizedsum()
228 int64_t value = 1, next, step; in dt_aggregate_llquantizedsum()
258 dt_aggregate_llquantizedcmp(int64_t *lhs, int64_t *rhs) in dt_aggregate_llquantizedcmp()
262 int64_t lzero, rzero; in dt_aggregate_llquantizedcmp()
288 dt_aggregate_quantizedcmp(int64_t *lhs, int64_t *rhs) in dt_aggregate_quantizedcmp()
292 int64_t lzero, rzero; in dt_aggregate_quantizedcmp()
295 int64_t bucketval = DTRACE_QUANTIZE_BUCKETVAL(i); in dt_aggregate_quantizedcmp()
570 h->dtahe_aggregate((int64_t *)&data[roffs], in dt_aggregate_snap_cpu()
572 (int64_t *)&addr[roffs], rec->dtrd_size); in dt_aggregate_snap_cpu()
582 h->dtahe_aggregate((int64_t *)data, in dt_aggregate_snap_cpu()
584 (int64_t *)&addr[roffs], rec->dtrd_size); in dt_aggregate_snap_cpu()
887 int64_t *laddr, *raddr; in dt_aggregate_valcmp()
897 laddr = (int64_t *)(uintptr_t)(ldata + lrec->dtrd_offset); in dt_aggregate_valcmp()
898 raddr = (int64_t *)(uintptr_t)(rdata + rrec->dtrd_offset); in dt_aggregate_valcmp()
1341 int64_t val, *addr; in dt_aggregate_total()
1345 addr = (int64_t *)(uintptr_t)(data + rec->dtrd_offset); in dt_aggregate_total()
1381 val = (int64_t)((long double)val * in dt_aggregate_total()
1443 int64_t *addr; in dt_aggregate_minmaxbin()
1448 size = rec->dtrd_size / sizeof (int64_t); in dt_aggregate_minmaxbin()
1450 addr = (int64_t *)(uintptr_t)(data + rec->dtrd_offset); in dt_aggregate_minmaxbin()