/third_party/skia/third_party/externals/swiftshader/third_party/marl/include/marl/ |
D | trace.h | 44 class Trace { 48 static Trace* get(); 62 Trace* const trace; 71 Trace* const trace; 77 Trace(); 78 ~Trace(); 79 Trace(const Trace&) = delete; 80 Trace& operator=(const Trace&) = delete; 174 Trace::ScopedEvent::ScopedEvent(const char* fmt, ...) : trace(Trace::get()) { in ScopedEvent() 176 char name[Trace::MaxEventNameLength]; in ScopedEvent() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/ |
D | trace.cpp | 46 Trace* Trace::get() { in get() 47 static Trace trace; in get() 51 Trace::Trace() { in Trace() function in marl::Trace 83 Trace::~Trace() { in ~Trace() 88 void Trace::nameThread(const char* fmt, ...) { in nameThread() 96 vsnprintf(event->name, Trace::MaxEventNameLength, fmt, vararg); in nameThread() 102 void Trace::beginEvent(const char* fmt, ...) { in beginEvent() 110 vsnprintf(event->name, Trace::MaxEventNameLength, fmt, vararg); in beginEvent() 117 void Trace::endEvent() { in endEvent() 126 void Trace::beginAsyncEvent(uint32_t id, const char* fmt, ...) { in beginAsyncEvent() [all …]
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
D | debug.h | 23 #define Trace(...) ((void)0) macro 35 void Trace(const char* format, ...); 37 inline void Trace(const char* format, ...) {} 39 inline void Trace() {} in Trace() function 46 sh::Trace("Assert failed: %s(%d): "#expression"\n", __FUNCTION__, __LINE__); \ 52 sh::Trace("Unimplemented invoked: %s(%d): ", __FUNCTION__, __LINE__); \ 53 sh::Trace(__VA_ARGS__); \ 54 sh::Trace("\n"); \ 60 sh::Trace("Unreachable reached: %s(%d). %s: %d\n", __FUNCTION__, __LINE__, #value, value); \
|
/third_party/skia/third_party/externals/oboe/samples/debug-utils/ |
D | trace.cpp | 37 bool Trace::is_enabled_ = false; 38 bool Trace::has_error_been_shown_ = false; 40 void Trace::beginSection(const char *fmt, ...) { in beginSection() 56 void Trace::endSection() { in endSection() 63 void Trace::initialize() { in initialize()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | Trace.cpp | 27 Function *Trace::getFunction() const { in getFunction() 31 Module *Trace::getModule() const { in getModule() 36 void Trace::print(raw_ostream &O) const { in print() 50 LLVM_DUMP_METHOD void Trace::dump() const { in dump()
|
/third_party/skia/third_party/externals/oboe/src/common/ |
D | Trace.cpp | 33 bool Trace::mIsTracingSupported = false; 35 void Trace::beginSection(const char *format, ...){ in beginSection() 49 void Trace::endSection() { in endSection() 56 void Trace::initialize() { in initialize()
|
D | StabilizedCallback.cpp | 27 Trace::initialize(); in StabilizedCallback() 67 Trace::beginSection("Actual load"); in onAudioReady() 69 Trace::endSection(); in onAudioReady() 74 Trace::beginSection("Stabilized load for %lldns", stabilizingLoadDurationNanos); in onAudioReady() 76 Trace::endSection(); in onAudioReady()
|
/third_party/skia/third_party/externals/oboe/samples/hello-oboe/src/main/cpp/ |
D | LatencyTuningCallback.cpp | 38 if (Trace::isEnabled()) Trace::beginSection("numFrames %d, Underruns %d, buffer size %d", in onAudioReady() 41 if (Trace::isEnabled()) Trace::endSection(); in onAudioReady()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/XRay/ |
D | Trace.h | 46 class Trace { 53 friend Expected<Trace> loadTrace(const DataExtractor &, bool); 71 Expected<Trace> loadTraceFile(StringRef Filename, bool Sort = false); 75 Expected<Trace> loadTrace(const DataExtractor &Extractor, bool Sort = false);
|
D | YAMLXRayRecord.h | 94 static void mapping(IO &IO, xray::YAMLXRayTrace &Trace) { 97 IO.mapRequired("header", Trace.Header); 98 IO.mapRequired("records", Trace.Records);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | RDFDeadCode.h | 36 : Trace(false), DFG(dfg), MRI(mri), LV(mri, dfg) {} in DeadCodeElimination() 40 void trace(bool On) { Trace = On; } in trace() 41 bool trace() const { return Trace; } in trace() 48 bool Trace;
|
D | RDFCopy.h | 34 void trace(bool On) { Trace = On; } in trace() 35 bool trace() const { return Trace; } in trace() 46 bool Trace = false; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | MachineTraceMetrics.h | 97 friend class Trace; variable 255 class Trace { 262 explicit Trace(Ensemble &te, TraceBlockInfo &tbi) : TE(te), TBI(tbi) {} in Trace() function 322 friend class Trace; variable 336 ArrayRef<const MachineBasicBlock*> Trace); 361 Trace getTrace(const MachineBasicBlock *MBB); 422 const MachineTraceMetrics::Trace &Tr) {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/ |
D | Trace.cpp | 352 YAMLXRayTrace Trace; in loadYAMLLog() local 354 In >> Trace; in loadYAMLLog() 358 FileHeader.Version = Trace.Header.Version; in loadYAMLLog() 359 FileHeader.Type = Trace.Header.Type; in loadYAMLLog() 360 FileHeader.ConstantTSC = Trace.Header.ConstantTSC; in loadYAMLLog() 361 FileHeader.NonstopTSC = Trace.Header.NonstopTSC; in loadYAMLLog() 362 FileHeader.CycleFrequency = Trace.Header.CycleFrequency; in loadYAMLLog() 370 std::transform(Trace.Records.begin(), Trace.Records.end(), in loadYAMLLog() 380 Expected<Trace> llvm::xray::loadTraceFile(StringRef Filename, bool Sort) { in loadTraceFile() 418 Expected<Trace> llvm::xray::loadTrace(const DataExtractor &DE, bool Sort) { in loadTrace() [all …]
|
/third_party/skia/src/gpu/ |
D | GrManagedResource.h | 50 class Trace { 52 ~Trace() { in ~Trace() 157 static Trace* GetTrace() { in GetTrace() 158 static Trace kTrace; in GetTrace()
|
/third_party/flutter/skia/src/gpu/vk/ |
D | GrVkResource.h | 49 class Trace { 51 ~Trace() { in ~Trace() 167 static Trace* GetTrace() { in GetTrace() 168 static Trace kTrace; in GetTrace()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | MachineCombiner.cpp | 96 MachineTraceMetrics::Trace BlockTrace); 98 MachineTraceMetrics::Trace BlockTrace); 101 MachineTraceMetrics::Trace BlockTrace, 107 MachineTraceMetrics::Trace BlockTrace, 116 MachineTraceMetrics::Trace BlockTrace); 167 MachineTraceMetrics::Trace BlockTrace) { in getDepth() 225 MachineTraceMetrics::Trace BlockTrace) { in getLatency() 285 MachineTraceMetrics::Trace BlockTrace) { in getLatenciesForInstrSequences() 308 MachineTraceMetrics::Trace BlockTrace, in improvesCriticalPathLen() 378 MachineBasicBlock *MBB, MachineTraceMetrics::Trace BlockTrace, in preservesResourceLen() [all …]
|
/third_party/skia/third_party/externals/libpng/contrib/gregbook/ |
D | rpng-x.c | 382 Trace((stderr, "calling readpng_get_image()\n")) in main() 385 Trace((stderr, "done with readpng_get_image()\n")) in main() 402 Trace((stderr, "calling rpng_x_display_image()\n")) in main() 407 Trace((stderr, "done with rpng_x_display_image()\n")) in main() 479 Trace((stderr, "default depth is %d: checking other visuals\n", in rpng_x_create_window() 493 Trace((stderr, "XGetVisualInfo() returned %d 24-bit visuals\n", in rpng_x_create_window() 704 Trace((stderr, "beginning display loop (image_channels == %d)\n", in rpng_x_display_image() 706 Trace((stderr, " (width = %ld, rowbytes = %ld, ximage_rowbytes = %d)\n", in rpng_x_display_image() 708 Trace((stderr, " (bpp = %d)\n", ximage->bits_per_pixel)) in rpng_x_display_image() 709 Trace((stderr, " (byte_order = %s)\n", ximage->byte_order == MSBFirst? in rpng_x_display_image() [all …]
|
D | rpng-win.c | 429 Trace((stderr, "calling readpng_get_image()\n")) in WinMain() 432 Trace((stderr, "done with readpng_get_image()\n")) in WinMain() 449 Trace((stderr, "calling rpng_win_display_image()\n")) in WinMain() 454 Trace((stderr, "done with rpng_win_display_image()\n")) in WinMain() 594 Trace((stderr, "beginning display loop (image_channels == %d)\n", in rpng_win_display_image() 596 Trace((stderr, "(width = %ld, rowbytes = %ld, wimage_rowbytes = %d)\n", in rpng_win_display_image() 655 Trace((stderr, "calling final image-flush routine\n")) in rpng_win_display_image()
|
D | readpng.h | 67 # define Trace(x) {fprintf x ; fflush(stderr); fflush(stdout);} macro 69 # define Trace(x) ; macro
|
/third_party/libpng/contrib/gregbook/ |
D | rpng-x.c | 382 Trace((stderr, "calling readpng_get_image()\n")) in main() 385 Trace((stderr, "done with readpng_get_image()\n")) in main() 402 Trace((stderr, "calling rpng_x_display_image()\n")) in main() 407 Trace((stderr, "done with rpng_x_display_image()\n")) in main() 479 Trace((stderr, "default depth is %d: checking other visuals\n", in rpng_x_create_window() 493 Trace((stderr, "XGetVisualInfo() returned %d 24-bit visuals\n", in rpng_x_create_window() 704 Trace((stderr, "beginning display loop (image_channels == %d)\n", in rpng_x_display_image() 706 Trace((stderr, " (width = %ld, rowbytes = %ld, ximage_rowbytes = %d)\n", in rpng_x_display_image() 708 Trace((stderr, " (bpp = %d)\n", ximage->bits_per_pixel)) in rpng_x_display_image() 709 Trace((stderr, " (byte_order = %s)\n", ximage->byte_order == MSBFirst? in rpng_x_display_image() [all …]
|
D | rpng-win.c | 429 Trace((stderr, "calling readpng_get_image()\n")) in WinMain() 432 Trace((stderr, "done with readpng_get_image()\n")) in WinMain() 449 Trace((stderr, "calling rpng_win_display_image()\n")) in WinMain() 454 Trace((stderr, "done with rpng_win_display_image()\n")) in WinMain() 594 Trace((stderr, "beginning display loop (image_channels == %d)\n", in rpng_win_display_image() 596 Trace((stderr, "(width = %ld, rowbytes = %ld, wimage_rowbytes = %d)\n", in rpng_win_display_image() 655 Trace((stderr, "calling final image-flush routine\n")) in rpng_win_display_image()
|
/third_party/optimized-routines/math/test/ |
D | mathbench.c | 30 static double *Trace; variable 401 A[i] = Trace[index + i]; in gen_trace() 408 Af[i] = (float)Trace[index + i]; in genf_trace() 647 Trace = realloc (Trace, trace_size * sizeof (Trace[0])); in readtrace() 648 if (Trace == NULL) in readtrace() 654 if (fscanf (f, "%lf", Trace + n) != 1) in readtrace() 667 Trace[n] = Trace[i]; in readtrace()
|
/third_party/python/Lib/test/ |
D | test_trace.py | 10 from trace import Trace 123 self.tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0) 216 tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0) 235 self.tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0) 260 self.tracer = Trace(count=0, trace=0, countfuncs=1) 327 self.tracer = Trace(count=0, trace=0, countcallers=1) 367 tracer = trace.Trace(trace=0, count=1) 381 tracer = trace.Trace(ignoredirs=[sys.base_prefix, sys.base_exec_prefix, 390 tracer = trace.Trace(trace=0, count=1)
|
/third_party/python/Doc/library/ |
D | trace.rst | 1 :mod:`trace` --- Trace or track Python statement execution 5 :synopsis: Trace or track Python statement execution. 142 .. class:: Trace(count=1, trace=1, countfuncs=0, countcallers=0, ignoremods=(),\ 171 Call *func* with the given arguments under control of the :class:`Trace` 178 for the given :class:`Trace` instance. Does not reset the accumulated 183 A container for coverage results, created by :meth:`Trace.results`. Should 203 # create a Trace object, telling it what to ignore, and whether to 205 tracer = trace.Trace(
|