HomeSort by relevance Sort by last modified time
    Searched full:profiler (Results 151 - 175 of 1175) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/python/cpython2/Lib/
cProfile.py 3 """Python interface for the 'lsprof' profiler.
15 """Run statement under profiler optionally saving results in filename
40 """Run statement under profiler, supplying your own globals and locals,
62 print "in the Python Library Reference, section 'The Python Profiler'."
66 class Profile(_lsprof.Profiler):
69 Builds a profiler object using the specified timer function.
130 # a profiler to profile a statement, given as a string.
197 # When invoked as main program, invoke the profiler on a script
  /prebuilts/gdb/darwin-x86/lib/python2.7/
cProfile.py 3 """Python interface for the 'lsprof' profiler.
15 """Run statement under profiler optionally saving results in filename
40 """Run statement under profiler, supplying your own globals and locals,
62 print "in the Python Library Reference, section 'The Python Profiler'."
66 class Profile(_lsprof.Profiler):
69 Builds a profiler object using the specified timer function.
130 # a profiler to profile a statement, given as a string.
197 # When invoked as main program, invoke the profiler on a script
  /prebuilts/gdb/linux-x86/lib/python2.7/
cProfile.py 3 """Python interface for the 'lsprof' profiler.
15 """Run statement under profiler optionally saving results in filename
40 """Run statement under profiler, supplying your own globals and locals,
62 print "in the Python Library Reference, section 'The Python Profiler'."
66 class Profile(_lsprof.Profiler):
69 Builds a profiler object using the specified timer function.
130 # a profiler to profile a statement, given as a string.
197 # When invoked as main program, invoke the profiler on a script
  /prebuilts/go/darwin-x86/src/runtime/
os_linux_mips64x.go 25 // Currently cputicks() is used in blocking profiler and to seed fastrand().
26 // nanotime() is a poor approximation of CPU ticks that is enough for the profiler.
os_netbsd_arm.go 31 // Currently cputicks() is used in blocking profiler and to seed runtime·fastrand().
32 // runtime·nanotime() is a poor approximation of CPU ticks that is enough for the profiler.
  /prebuilts/go/linux-x86/src/runtime/
os_linux_mips64x.go 25 // Currently cputicks() is used in blocking profiler and to seed fastrand().
26 // nanotime() is a poor approximation of CPU ticks that is enough for the profiler.
os_netbsd_arm.go 31 // Currently cputicks() is used in blocking profiler and to seed runtime·fastrand().
32 // runtime·nanotime() is a poor approximation of CPU ticks that is enough for the profiler.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cProfile.py 3 """Python interface for the 'lsprof' profiler.
15 """Run statement under profiler optionally saving results in filename
40 """Run statement under profiler, supplying your own globals and locals,
62 print "in the Python Library Reference, section 'The Python Profiler'."
66 class Profile(_lsprof.Profiler):
69 Builds a profiler object using the specified timer function.
130 # a profiler to profile a statement, given as a string.
197 # When invoked as main program, invoke the profiler on a script
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cProfile.py 3 """Python interface for the 'lsprof' profiler.
15 """Run statement under profiler optionally saving results in filename
40 """Run statement under profiler, supplying your own globals and locals,
62 print "in the Python Library Reference, section 'The Python Profiler'."
66 class Profile(_lsprof.Profiler):
69 Builds a profiler object using the specified timer function.
130 # a profiler to profile a statement, given as a string.
197 # When invoked as main program, invoke the profiler on a script
  /test/vts/compilation_tools/vtsc/
Android.bp 33 "code_gen/profiler/ProfilerCodeGenBase.cpp",
34 "code_gen/profiler/HalHidlProfilerCodeGen.cpp",
  /external/libchrome/base/profiler/
scoped_tracker.h 10 // found using profiler data.
17 #include "base/profiler/scoped_profile.h"
26 // message handlers). This task can be seen in chrome://profiler and is sent as
27 // a part of profiler data to the UMA server. See profiler_event.proto.
44 // this function is not called, all profiler instrumentations are no-ops.
  /external/gemmlowp/profiling/
instrumentation.h 19 // profiler.h is only needed to drive the profiler:
22 // See the usage example in profiler.h.
74 // GlobalLock<ProfilerLockId> is the profiler global lock:
76 // the profiler itself as it samples threads, all need to lock it.
203 // with this profiler. Construct local ScopedProfilingLabel variables,
207 // See the example in profiler.h.
profiler.h 15 // profiler.h: a simple sampling profiler that's always just one #include away!
20 // This profiler only samples a pseudo-stack, not the actual call stack.
23 // Using pseudo-stacks allows this profiler to be very simple, low-overhead,
29 // This profiler should remain small and simple; its key feature is to fit in
62 // 3. Use the profiler.h interface to control profiling. There are two
92 #include "profiling/profiler.h"
284 // This is how we tell the profiler thread to finish.
290 // The profiler thread. See ProfilerThreadFunc.
318 // The profiler thread's entry point
    [all...]
  /external/clang/lib/AST/
StmtProfile.cpp 183 // FIXME: Implement MS style inline asm statement profiler.
262 StmtProfiler *Profiler;
268 OMPClauseProfiler(StmtProfiler *P) : Profiler(P) { }
279 Profiler->VisitStmt(S);
286 Profiler->VisitStmt(E);
291 Profiler->VisitStmt(C->getCondition());
296 Profiler->VisitStmt(C->getCondition());
301 Profiler->VisitStmt(C->getNumThreads());
306 Profiler->VisitStmt(C->getSafelen());
311 Profiler->VisitStmt(C->getSimdlen())
    [all...]
  /external/autotest/client/common_lib/
profiler_manager_unittest.py 14 # simple profiler stub for using in tests
29 def load_profiler(self, profiler, args, dargs):
30 return stub_profiler(profiler)
  /external/autotest/client/profilers/lockmeter/
lockmeter.py 13 from autotest_lib.client.bin import utils, profiler
15 class lockmeter(profiler.profiler):
  /external/autotest/client/profilers/readprofile/
readprofile.py 12 from autotest_lib.client.bin import utils, profiler
15 class readprofile(profiler.profiler):
  /external/slf4j/slf4j-ext/src/test/java/org/slf4j/profiler/
SortAndPruneComposites.java 25 package org.slf4j.profiler;
44 // retrieve previously registered profiler named "SORT_AND_PRUNE"
46 Profiler sortProfiler = profilerRegistry.get(NESTED_PROFILER_NAME);
  /tools/tradefederation/core/tests/src/com/android/tradefed/profiler/
MetricOutputDataTest.java 16 package com.android.tradefed.profiler;
30 * Tests for {@link com.android.tradefed.profiler.MetricOutputData}.
59 "com.android.tradefed.profiler.MetricOutputDataTest", "bar");
  /external/autotest/client/bin/
TODO 14 Errors from profilers are not being caught (shove a syntax error in a profiler
  /external/autotest/client/samples/
control.oprofile 11 passed to the profiler.
  /external/compiler-rt/test/profile/Inputs/
instrprof-alloc.c 2 * profiler is on, no malloc/calloc calls will be invoked by
  /external/slf4j/slf4j-ext/src/main/resources/META-INF/
MANIFEST.MF 7 Export-Package: org.slf4j.profiler;version=${parsedVersion.osgiVersion}, org.slf4j.cal10n;version=${parsedVersion.osgiVersion}, org.slf4j.ext;version=${parsedVersion.osgiVersion}
  /external/v8/src/inspector/
inspector_protocol_config.json 25 "domain": "Profiler"
  /external/v8/src/profiler/
tracing-cpu-profiler.h 9 #include "include/v8-profiler.h"

Completed in 3645 milliseconds

1 2 3 4 5 67 8 91011>>