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

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/rc_binomial_heap_/
trace_fn_imps.hpp 48 trace() const function in class:PB_DS_CLASS_C_DEC
50 base_type::trace();
51 m_rc.trace();
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/rc_binomial_heap_/
trace_fn_imps.hpp 48 trace() const function in class:PB_DS_CLASS_C_DEC
50 base_type::trace();
51 m_rc.trace();
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/unit/
tsan_stack_test.cc 21 static void TestStackTrace(StackTraceTy *trace) {
28 ObtainCurrentStack(&thr, 0, trace);
29 EXPECT_EQ(0U, trace->size);
31 ObtainCurrentStack(&thr, 42, trace);
32 EXPECT_EQ(1U, trace->size);
33 EXPECT_EQ(42U, trace->trace[0]);
37 ObtainCurrentStack(&thr, 0, trace);
38 EXPECT_EQ(2U, trace->size);
39 EXPECT_EQ(100U, trace->trace[0])
76 VarSizeStackTrace trace; local
81 BufferedStackTrace trace; local
86 VarSizeStackTrace trace; local
91 BufferedStackTrace trace; local
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_stacktrace_test.cc 27 trace.Unwind(max_depth, start_pc, (uptr)&fake_stack[0], 0, fake_top,
38 BufferedStackTrace trace; member in class:__sanitizer::FastUnwindTest
59 // Mark the last fp point back up to terminate the stack trace.
78 EXPECT_EQ(6U, trace.size);
79 EXPECT_EQ(start_pc, trace.trace[0]);
81 EXPECT_EQ(PC(i*2 - 1), trace.trace[i]);
92 EXPECT_EQ(4U, trace.size);
93 EXPECT_EQ(start_pc, trace.trace[0])
    [all...]
  /src/external/cddl/dtracetoolkit/dist/Bin/
newproc.d 10 proc:::exec-success { trace(curpsinfo->pr_psargs); }
woof.d 43 SCREEN_OUTPUT ? trace("Beware of the dog!\n") : 1;
56 SCREEN_OUTPUT ? trace("Woof! ") : 1;
  /src/external/cddl/dtracetoolkit/dist/Proc/
newproc.d 10 proc:::exec-success { trace(curpsinfo->pr_psargs); }
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/thin_heap_/
trace_fn_imps.hpp 48 trace() const function in class:PB_DS_CLASS_C_DEC
52 base_type::trace();
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/thin_heap_/
trace_fn_imps.hpp 48 trace() const function in class:PB_DS_CLASS_C_DEC
52 base_type::trace();
  /src/external/gpl3/gcc.old/dist/libgcc/config/gcn/
unwind-gcn.c 28 _Unwind_Backtrace(_Unwind_Trace_Fn trace, void * trace_argument)
  /src/external/gpl3/gcc/dist/libgcc/config/gcn/
unwind-gcn.c 28 _Unwind_Backtrace(_Unwind_Trace_Fn trace, void * trace_argument)
  /src/external/bsd/zstd/dist/programs/
zstdcli_trace.c 21 /* We depend on the trace header to avoid duplicating the ZSTD_trace struct.
80 static void TRACE_log(char const* method, PTime duration, ZSTD_Trace const* trace)
84 double const ratio = (double)trace->uncompressedSize / (double)trace->compressedSize;
85 double const speed = ((double)trace->uncompressedSize * 1000) / (double)duration;
86 if (trace->params) {
87 ZSTD_CCtxParams_getParameter(trace->params, ZSTD_c_compressionLevel, &level);
88 ZSTD_CCtxParams_getParameter(trace->params, ZSTD_c_nbWorkers, &workers);
109 trace->version,
111 trace->streaming ? "streaming" : "single-pass"
    [all...]
  /src/external/gpl3/gdb/dist/sim/bfin/
dv-bfin_trace.c 1 /* Blackfin Trace (TBUF) model.
80 struct bfin_trace *trace = hw_data (me); local
89 mmr_off = addr - trace->base;
96 trace->tbufctl = value;
114 struct bfin_trace *trace = hw_data (me); local
122 mmr_off = addr - trace->base;
129 value = trace->tbufctl;
135 value = min (TBUF_LEN (trace), 16);
141 if (TBUF_LEN (trace) == 0)
147 e = TBUF_LAST (trace);
200 struct bfin_trace *trace; local
223 struct bfin_trace *trace = TRACE_STATE (cpu); local
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/bfin/
dv-bfin_trace.c 1 /* Blackfin Trace (TBUF) model.
80 struct bfin_trace *trace = hw_data (me); local
89 mmr_off = addr - trace->base;
96 trace->tbufctl = value;
114 struct bfin_trace *trace = hw_data (me); local
122 mmr_off = addr - trace->base;
129 value = trace->tbufctl;
135 value = min (TBUF_LEN (trace), 16);
141 if (TBUF_LEN (trace) == 0)
147 e = TBUF_LAST (trace);
200 struct bfin_trace *trace; local
223 struct bfin_trace *trace = TRACE_STATE (cpu); local
    [all...]
  /src/bin/sh/
show.h 39 void trace(const char *, ...);
  /src/external/bsd/zstd/dist/tests/cli-tests/file-stat/
compress-file-to-stdout.sh 7 zstd file -cq --trace-file-stat > file.zst
compress-stdin-to-file.sh 7 zstd < file -q --trace-file-stat -o file.zst
compress-stdin-to-stdout.sh 7 zstd < file -cq --trace-file-stat > file.zst
decompress-file-to-file.sh 8 zstd -dq --trace-file-stat file.zst
decompress-file-to-stdout.sh 7 zstd -dcq --trace-file-stat file.zst > file
decompress-stdin-to-file.sh 7 zstd -dcq --trace-file-stat < file.zst -o file
decompress-stdin-to-stdout.sh 7 zstd -dcq --trace-file-stat < file.zst > file
compress-file-to-file.sh 8 zstd file -q --trace-file-stat -o file.zst
  /src/external/bsd/openldap/dist/contrib/slapd-modules/trace/
trace.c 1 /* $NetBSD: trace.c,v 1.4 2025/09/05 21:16:18 christos Exp $ */
3 /* trace.c - traces overlay invocation */
24 __RCSID("$NetBSD: trace.c,v 1.4 2025/09/05 21:16:18 christos Exp $");
99 "%s trace op=EXTENDED dn=\"%s\" reqoid=%s\n",
107 "%s trace op=%s dn=\"%s\"\n",
126 "%s trace op=EXTENDED RESPONSE dn=\"%s\" reqoid=%s rspoid=%s err=%d\n",
138 "%s trace op=SEARCH ENTRY dn=\"%s\"\n",
145 "%s trace op=SEARCH REFERENCE ref=\"%s\"\n",
160 "%s trace op=%s RESPONSE dn=\"%s\" err=%d\n",
176 "trace DB_INIT\n" )
223 static slap_overinst trace; variable
    [all...]
  /src/external/cddl/dtracetoolkit/dist/Misc/
woof.d 43 SCREEN_OUTPUT ? trace("Beware of the dog!\n") : 1;
56 SCREEN_OUTPUT ? trace("Woof! ") : 1;

Completed in 36 milliseconds

1 2 3 4 5 6 7 8 91011>>