HomeSort by: relevance | last modified time | path
    Searched refs:ncalls (Results 1 - 25 of 38) sorted by relevancy

1 2

  /src/tests/lib/libexecinfo/
t_backtrace.c 45 void myfunc3(size_t ncalls);
46 void myfunc2(size_t ncalls);
47 void myfunc1(size_t origcalls, volatile size_t ncalls);
48 void myfunc(size_t ncalls);
53 myfunc3(size_t ncalls)
70 void *buffer[ncalls + 10];
86 printf("got nptrs=%zu ncalls=%zu (min_frames: %zu, max_frames: %zu)\n",
87 nptrs, ncalls, min_frames, max_frames);
93 ATF_REQUIRE(nptrs >= ncalls + 2 + min_frames);
94 ATF_REQUIRE(nptrs <= ncalls + 2 + max_frames)
    [all...]
  /src/external/gpl3/binutils/dist/gprofng/src/
source.h 29 unsigned long ncalls; /* # of "calls" to this file. */ member in struct:source_file
gmon_basic_blocks.cc 58 bfd_vma addr, ncalls; local
83 if ((fread (&ncalls, sizeof (ncalls), 1, ifp) != 1)
94 || gmon_io_read_vma (ifp, &ncalls, whoami))
113 sym->name, sym->line_num, (unsigned long) ncalls));
120 sym->bb_calls[i] += ncalls;
gmon_call_graph.cc 62 child->ncalls += count;
symtab.h 58 unsigned long ncalls; /* How many times executed */ member in struct:sym
  /src/external/mit/libuv/dist/test/
test-signal.c 87 unsigned int ncalls; member in struct:timer_ctx
94 unsigned int ncalls; member in struct:signal_ctx
104 if (++ctx->ncalls == NSIGNALS) {
117 ASSERT_EQ(1, ++ctx->ncalls);
128 if (++ctx->ncalls == NSIGNALS)
137 ctx->ncalls = 0;
149 ctx->ncalls = 0;
166 ASSERT_EQ(tc.ncalls, NSIGNALS);
167 ASSERT_EQ(sc.ncalls, NSIGNALS);
171 ASSERT_EQ(tc.ncalls, NSIGNALS)
    [all...]
  /src/external/gpl3/binutils/dist/gprof/
basic_blocks.c 95 if (left->ncalls < right->ncalls)
97 else if (left->ncalls > right->ncalls)
123 bfd_vma addr, ncalls; local
148 if ((fread (&ncalls, sizeof (ncalls), 1, ifp) != 1)
159 || gmon_io_read_vma (ifp, &ncalls))
178 sym->name, sym->line_num, (unsigned long) ncalls));
185 sym->bb_calls[i] += ncalls;
348 unsigned long ncalls; local
    [all...]
source.h 29 unsigned long ncalls; /* # of "calls" to this file. */ member in struct:source_file
cg_arcs.c 195 if (child->ncalls == 0)
202 / ((double) child->ncalls));
204 * (((double) arc->count) / ((double) child->ncalls));
226 child->cg.child_time, arc->count, child->ncalls);
337 cyc->ncalls += arc->count;
376 if (child->ncalls != 0)
379 * (((double) arc->count) / ((double) child->ncalls));
406 if (head->ncalls != 0)
409 * (((double) arc->count) / ((double) head->ncalls));
571 if (left->ncalls > right->ncalls
    [all...]
hist.c 505 if (ignore_zeros && sym->ncalls == 0 && sym->hist.time == 0)
519 if (sym->ncalls != 0)
521 sym->ncalls, scale * sym->hist.time / hz / sym->ncalls,
522 scale * (sym->hist.time + sym->cg.child_time) / hz / sym->ncalls);
554 if (right->ncalls > left->ncalls)
557 if (right->ncalls < left->ncalls)
621 if (sym->ncalls != 0
    [all...]
symtab.h 56 unsigned long ncalls; /* How many times executed */ member in struct:sym
cg_print.c 125 cyc->cg.prop.self / hz, cyc->cg.prop.child / hz, cyc->ncalls);
136 CG.PROP.SELF+CG.PROP.CHILD, secondary key is NCALLS+CG.SELF_CALLS. */
143 unsigned long left_calls = left->ncalls + left->cg.self_calls;
144 unsigned long right_calls = right->ncalls + right->cg.self_calls;
203 member->ncalls);
239 left->count, left_child->ncalls);
245 right->count, right_child->ncalls);
389 arc->count, cycle_head->ncalls);
461 arc->count, child->cg.cyc.head->ncalls);
481 if ((np->ncalls + np->cg.self_calls) != 0
    [all...]
call_graph.c 67 child->ncalls += count;
  /src/external/gpl3/binutils.old/dist/gprof/
basic_blocks.c 95 if (left->ncalls < right->ncalls)
97 else if (left->ncalls > right->ncalls)
123 bfd_vma addr, ncalls; local
148 if ((fread (&ncalls, sizeof (ncalls), 1, ifp) != 1)
159 || gmon_io_read_vma (ifp, &ncalls))
178 sym->name, sym->line_num, (unsigned long) ncalls));
185 sym->bb_calls[i] += ncalls;
348 unsigned long ncalls; local
    [all...]
source.h 29 unsigned long ncalls; /* # of "calls" to this file. */ member in struct:source_file
cg_arcs.c 195 if (child->ncalls == 0)
202 / ((double) child->ncalls));
204 * (((double) arc->count) / ((double) child->ncalls));
226 child->cg.child_time, arc->count, child->ncalls);
337 cyc->ncalls += arc->count;
376 if (child->ncalls != 0)
379 * (((double) arc->count) / ((double) child->ncalls));
406 if (head->ncalls != 0)
409 * (((double) arc->count) / ((double) head->ncalls));
571 if (left->ncalls > right->ncalls
    [all...]
hist.c 505 if (ignore_zeros && sym->ncalls == 0 && sym->hist.time == 0)
519 if (sym->ncalls != 0)
521 sym->ncalls, scale * sym->hist.time / hz / sym->ncalls,
522 scale * (sym->hist.time + sym->cg.child_time) / hz / sym->ncalls);
554 if (right->ncalls > left->ncalls)
557 if (right->ncalls < left->ncalls)
621 if (sym->ncalls != 0
    [all...]
symtab.h 56 unsigned long ncalls; /* How many times executed */ member in struct:sym
cg_print.c 125 cyc->cg.prop.self / hz, cyc->cg.prop.child / hz, cyc->ncalls);
136 CG.PROP.SELF+CG.PROP.CHILD, secondary key is NCALLS+CG.SELF_CALLS. */
143 unsigned long left_calls = left->ncalls + left->cg.self_calls;
144 unsigned long right_calls = right->ncalls + right->cg.self_calls;
203 member->ncalls);
239 left->count, left_child->ncalls);
245 right->count, right_child->ncalls);
389 arc->count, cycle_head->ncalls);
461 arc->count, child->cg.cyc.head->ncalls);
481 if ((np->ncalls + np->cg.self_calls) != 0
    [all...]
  /src/external/bsd/libevent/dist/
evmap-internal.h 87 void evmap_signal_active_(struct event_base *base, evutil_socket_t signum, int ncalls);
  /src/external/bsd/ntp/dist/sntp/libevent/
evmap-internal.h 88 void evmap_signal_active_(struct event_base *base, evutil_socket_t signum, int ncalls);
  /src/external/bsd/jemalloc.old/dist/test/unit/
rb.c 586 int ncalls; member in struct:iter_ctx_s
596 ctx->ncalls++;
609 if (ctx->ncalls == ctx->ncalls_max) {
822 ctx.ncalls = 0;
832 expect_d_eq(nspecial, ctx.ncalls, "");
835 ctx.ncalls = 0;
841 expect_d_eq(nspecial - nodes[i].filtered_rank, ctx.ncalls, "");
845 ctx.ncalls = 0;
852 expect_d_eq(ctx.ncalls, i + 1, "");
857 ctx.ncalls = 0
    [all...]
  /src/external/bsd/jemalloc/dist/test/unit/
rb.c 590 int ncalls; member in struct:iter_ctx_s
600 ctx->ncalls++;
613 if (ctx->ncalls == ctx->ncalls_max) {
836 ctx.ncalls = 0;
846 expect_d_eq(nspecial, ctx.ncalls, "");
849 ctx.ncalls = 0;
855 expect_d_eq(nspecial - nodes[i].filtered_rank, ctx.ncalls, "");
859 ctx.ncalls = 0;
866 expect_d_eq(ctx.ncalls, i + 1, "");
871 ctx.ncalls = 0
    [all...]
  /src/sys/arch/x86/x86/
genfb_machdep.c 181 static int ncalls = 0; local
188 ++ncalls;
189 if (ncalls < 3)
  /src/sys/coda/
coda_subr.c 203 coda_clstat.ncalls++;
346 coda_clstat.ncalls++;
362 coda_clstat.ncalls++;
386 coda_clstat.ncalls++;
411 coda_clstat.ncalls++;
442 coda_clstat.ncalls++;

Completed in 33 milliseconds

1 2