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

1 2

  /src/external/cddl/dtracetoolkit/dist/Bin/
j_profile.d 59 #define TOP 25 /* number of stacks to output */
63 printf("Sampling %d-level stacks at %d Hertz... Hit Ctrl-C to end.\n",
70 @stacks[jstack(DEPTH)] = count();
75 trunc(@stacks, TOP);
76 printf("Top %d most frequently sampled stacks,\n", TOP);
77 printa(@stacks);
py_profile.d 60 #define TOP 25 /* number of stacks to output */
64 printf("Sampling %d-level stacks at %d Hertz... Hit Ctrl-C to end.\n",
71 @stacks[jstack(DEPTH)] = count();
76 trunc(@stacks, TOP);
77 printf("Top %d most frequently sampled stacks,\n", TOP);
78 printa(@stacks);
  /src/external/cddl/dtracetoolkit/dist/Java/
j_profile.d 59 #define TOP 25 /* number of stacks to output */
63 printf("Sampling %d-level stacks at %d Hertz... Hit Ctrl-C to end.\n",
70 @stacks[jstack(DEPTH)] = count();
75 trunc(@stacks, TOP);
76 printf("Top %d most frequently sampled stacks,\n", TOP);
77 printa(@stacks);
  /src/external/cddl/dtracetoolkit/dist/Python/
py_profile.d 60 #define TOP 25 /* number of stacks to output */
64 printf("Sampling %d-level stacks at %d Hertz... Hit Ctrl-C to end.\n",
71 @stacks[jstack(DEPTH)] = count();
76 trunc(@stacks, TOP);
77 printf("Top %d most frequently sampled stacks,\n", TOP);
78 printa(@stacks);
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_report.cpp 34 , stacks()
267 if (rep->stacks.Size())
268 return rep->stacks[0];
318 rep->stacks.Size());
328 PrintStack(rep->stacks[2*i]);
332 PrintStack(rep->stacks[2*i+1]);
334 PrintStack(rep->stacks[i]);
341 for (uptr i = 0; i < rep->stacks.Size(); i++) {
344 PrintStack(rep->stacks[i]);
461 PrintStack(rep->stacks[2*i])
    [all...]
tsan_report.h 105 Vector<ReportStack*> stacks; member in class:__tsan::ReportDesc
tsan_platform_mac.cpp 171 StackDepotStats stacks = StackDepotGetStats(); local
185 "stacks: %zd unique IDs, %zd kB allocated\n"
197 stacks.n_uniq_ids, stacks.allocated / 1024, nthread, nlive);
tsan_debugging.cpp 82 *stack_count = rep->stacks.Size();
103 CHECK_LT(idx, rep->stacks.Size());
104 ReportStack *stack = rep->stacks[idx];
tsan_platform_linux.cpp 124 StackDepotStats stacks = StackDepotGetStats(); local
136 stacks.allocated + internal_stats[AllocatorStatMapped];
143 " trace:%zu stacks=%zd threads=%zu/%zu\n",
149 stacks.allocated >> 20, nlive, nthread);
tsan_rtl_report.cpp 172 ReportStack **rs = rep_->stacks.PushBack();
522 // We don't log pathologically large stacks in each part,
644 for (uptr i = 0; pc_or_addr == 0 && i < rep->stacks.Size(); i++)
645 pc_or_addr = IsSuppressed(rep->typ, rep->stacks[i], &supp);
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_report.cpp 34 , stacks()
276 if (rep->stacks.Size())
277 return rep->stacks[0];
323 rep->stacks.Size());
333 PrintStack(rep->stacks[2*i]);
337 PrintStack(rep->stacks[2*i+1]);
339 PrintStack(rep->stacks[i]);
346 for (uptr i = 0; i < rep->stacks.Size(); i++) {
349 PrintStack(rep->stacks[i]);
466 PrintStack(rep->stacks[2*i])
    [all...]
tsan_report.h 104 Vector<ReportStack*> stacks; member in class:__tsan::ReportDesc
tsan_platform_mac.cpp 162 StackDepotStats stacks = StackDepotGetStats(); local
177 "stacks: %zd unique IDs, %zd kB allocated\n"
190 stacks.n_uniq_ids, stacks.allocated / 1024, nthread, nlive);
tsan_debugging.cpp 80 *stack_count = rep->stacks.Size();
101 CHECK_LT(idx, rep->stacks.Size());
102 ReportStack *stack = rep->stacks[idx];
tsan_platform_linux.cpp 126 StackDepotStats stacks = StackDepotGetStats(); local
132 mem[MemMmap] -= meta.mem_block + meta.sync_obj + stacks.allocated +
140 " stacks=%zd[%zd] nthr=%zd/%zd\n",
145 meta.mem_block >> 20, meta.sync_obj >> 20, stacks.allocated >> 20,
146 stacks.n_uniq_ids, nlive, nthread);
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_report.cc 51 , stacks()
284 if (rep->stacks.Size())
285 return rep->stacks[0];
331 rep->stacks.Size());
341 PrintStack(rep->stacks[2*i]);
345 PrintStack(rep->stacks[2*i+1]);
347 PrintStack(rep->stacks[i]);
354 for (uptr i = 0; i < rep->stacks.Size(); i++) {
357 PrintStack(rep->stacks[i]);
471 PrintStack(rep->stacks[2*i])
    [all...]
tsan_report.h 112 Vector<ReportStack*> stacks; member in class:__tsan::ReportDesc
tsan_platform_mac.cc 158 StackDepotStats *stacks = StackDepotGetStats(); local
170 "stacks: %zd unique IDs, %zd kB allocated\n"
183 stacks->n_uniq_ids, stacks->allocated / 1024,
tsan_debugging.cc 75 *stack_count = rep->stacks.Size();
96 CHECK_LT(idx, rep->stacks.Size());
97 ReportStack *stack = rep->stacks[idx];
tsan_platform_linux.cc 122 StackDepotStats *stacks = StackDepotGetStats(); local
125 " trace:%zd heap:%zd other:%zd stacks=%zd[%zd] nthr=%zd/%zd\n",
129 stacks->allocated >> 20, stacks->n_uniq_ids,
tsan_rtl_report.cc 161 ReportStack **rs = rep_->stacks.PushBack();
514 for (uptr i = 0; pc_or_addr == 0 && i < rep->stacks.Size(); i++)
515 pc_or_addr = IsSuppressed(rep->typ, rep->stacks[i], &supp);
  /src/external/apache2/llvm/bin/llvm-xray/
Makefile 20 xray-stacks.cpp
  /src/sys/external/bsd/drm2/dist/drm/i915/
intel_runtime_pm.c 98 depot_stack_handle_t stack, *stacks; local
113 stacks = krealloc(rpm->debug.owners,
114 (rpm->debug.count + 1) * sizeof(*stacks),
116 if (stacks) {
117 stacks[rpm->debug.count++] = stack;
118 rpm->debug.owners = stacks;
  /src/external/gpl3/gcc/dist/libsanitizer/lsan/
lsan_common_fuchsia.cpp 87 // Callback from libc for thread stacks.
88 auto stacks = +[](void *chunk, size_t size, void *data) { local
140 flags()->use_stacks ? stacks : nullptr,
147 // and their stacks, registers, and TLS regions. So use it separately
  /src/external/gpl3/gcc.old/dist/libsanitizer/lsan/
lsan_common_fuchsia.cpp 78 // Callback from libc for thread stacks.
79 auto stacks = +[](void *chunk, size_t size, void *data) { local
130 flags()->use_stacks ? stacks : nullptr,
137 // and their stacks, registers, and TLS regions. So use it separately

Completed in 49 milliseconds

1 2