HomeSort by: relevance | last modified time | path
    Searched refs:cnts (Results 1 - 15 of 15) sorted by relevancy

  /src/usr.sbin/altq/altqstat/
qdisc_cdnr.c 97 (ull)get_stats.cnts[TCACODE_PASS].packets,
98 (ull)get_stats.cnts[TCACODE_DROP].packets,
99 (ull)get_stats.cnts[TCACODE_MARK].packets,
100 (ull)get_stats.cnts[TCACODE_NEXT].packets,
101 (ull)get_stats.cnts[TCACODE_RETURN].packets,
102 (ull)get_stats.cnts[TCACODE_NONE].packets);
  /src/external/bsd/jemalloc.old/dist/src/
prof.c 126 tctx->cnts.curobjs++;
127 tctx->cnts.curobjs_shifted_unbiased += shifted_unbiased_cnt;
128 tctx->cnts.curbytes += usize;
129 tctx->cnts.curbytes_unbiased += unbiased_bytes;
131 tctx->cnts.accumobjs++;
132 tctx->cnts.accumobjs_shifted_unbiased += shifted_unbiased_cnt;
133 tctx->cnts.accumbytes += usize;
134 tctx->cnts.accumbytes_unbiased += unbiased_bytes;
160 assert(tctx->cnts.curobjs > 0);
161 assert(tctx->cnts.curbytes >= usize)
    [all...]
prof_data.c 373 memset(&ret.p->cnts, 0, sizeof(prof_cnt_t));
648 const prof_cnt_t *cnts) {
654 prof_do_unbias(cnts->curobjs_shifted_unbiased,
655 cnts->curbytes_unbiased, &curobjs, &curbytes);
656 prof_do_unbias(cnts->accumobjs_shifted_unbiased,
657 cnts->accumbytes_unbiased, &accumobjs, &accumbytes);
659 curobjs = cnts->curobjs;
660 curbytes = cnts->curbytes;
661 accumobjs = cnts->accumobjs;
662 accumbytes = cnts->accumbytes
    [all...]
  /src/external/bsd/jemalloc/dist/src/
prof.c 143 tctx->cnts.curobjs++;
144 tctx->cnts.curobjs_shifted_unbiased += shifted_unbiased_cnt;
145 tctx->cnts.curbytes += usize;
146 tctx->cnts.curbytes_unbiased += unbiased_bytes;
148 tctx->cnts.accumobjs++;
149 tctx->cnts.accumobjs_shifted_unbiased += shifted_unbiased_cnt;
150 tctx->cnts.accumbytes += usize;
151 tctx->cnts.accumbytes_unbiased += unbiased_bytes;
197 assert(tctx->cnts.curobjs > 0);
198 assert(tctx->cnts.curbytes >= usize)
    [all...]
prof_data.c 375 memset(&ret.p->cnts, 0, sizeof(prof_cnt_t));
622 write_cb_t *prof_dump_write, void *cbopaque, const prof_cnt_t *cnts) {
628 prof_do_unbias(cnts->curobjs_shifted_unbiased,
629 cnts->curbytes_unbiased, &curobjs, &curbytes);
630 prof_do_unbias(cnts->accumobjs_shifted_unbiased,
631 cnts->accumbytes_unbiased, &accumobjs, &accumbytes);
633 curobjs = cnts->curobjs;
634 curbytes = cnts->curbytes;
635 accumobjs = cnts->accumobjs;
636 accumbytes = cnts->accumbytes
    [all...]
  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
prof_structs.h 62 prof_cnt_t cnts; member in struct:prof_tctx_s
76 * gets called once each time cnts.cur{objs,bytes} drop to 0, but this
95 * Copy of cnts snapshotted during early dump phase, protected by
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
prof_structs.h 62 prof_cnt_t cnts; member in struct:prof_tctx_s
76 * gets called once each time cnts.cur{objs,bytes} drop to 0, but this
95 * Copy of cnts snapshotted during early dump phase, protected by
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
prof_structs.h 63 prof_cnt_t cnts; member in struct:prof_tctx_s
77 * gets called once each time cnts.cur{objs,bytes} drop to 0, but this
96 * Copy of cnts snapshotted during early dump phase, protected by
  /src/external/bsd/jemalloc/include/jemalloc/internal/
prof_structs.h 63 prof_cnt_t cnts; member in struct:prof_tctx_s
77 * gets called once each time cnts.cur{objs,bytes} drop to 0, but this
96 * Copy of cnts snapshotted during early dump phase, protected by
  /src/external/gpl3/gdb.old/dist/gdb/
ser-go32.c 147 static size_t cnts[NCNT]; variable
159 #define COUNT(x) cnts[x]++
824 cnts[CNT_TX] += cnt;
916 if (cnts[i])
917 gdb_printf ("%s:\t%lu\n", cntnames[i], (unsigned long) cnts[i]);
  /src/external/gpl3/gdb/dist/gdb/
ser-go32.c 147 static size_t cnts[NCNT]; variable
159 #define COUNT(x) cnts[x]++
824 cnts[CNT_TX] += cnt;
916 if (cnts[i])
917 gdb_printf ("%s:\t%lu\n", cntnames[i], (unsigned long) cnts[i]);
  /src/sys/altq/
altq_cdnr.h 188 struct pktcntr cnts[TCACODE_MAX+1]; member in struct:cdnr_get_stats
altq_cdnr.c 1089 (void)memcpy(ap->cnts, top->tc_cnts, sizeof(ap->cnts));
  /src/external/gpl3/gcc/dist/gcc/
gimplify.cc 8975 tree cnts[6];
8983 cnts[i] = cnts[i - 1];
8986 cnts[i] = create_tmp_var (sizetype);
8988 g = gimple_build_assign (cnts[i], size_int (is_old ? 2 : 5));
8995 t = size_binop (PLUS_EXPR, cnts[i - 1], counts[i - 1]);
8999 g = gimple_build_assign (cnts[i], t);
9004 cnts[5] = NULL_TREE;
9008 cnts[5] = create_tmp_var (sizetype);
9009 g = gimple_build_assign (cnts[i], t)
8972 tree cnts[6]; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gimplify.cc 8486 tree cnts[4];
8494 cnts[i] = cnts[i - 1];
8497 cnts[i] = create_tmp_var (sizetype);
8499 g = gimple_build_assign (cnts[i], size_int (is_old ? 2 : 5));
8506 t = size_binop (PLUS_EXPR, cnts[i - 1], counts[i - 1]);
8510 g = gimple_build_assign (cnts[i], t);
8639 r = build4 (ARRAY_REF, ptr_type_node, array, cnts[i],
8645 void_type_node, cnts[i],
8646 size_binop (PLUS_EXPR, cnts[i], size_int (1)))
8483 tree cnts[4]; local
    [all...]

Completed in 180 milliseconds