HomeSort by relevance Sort by last modified time
    Searched refs:prof (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/swiftshader/third_party/LLVM/tools/llvm-prof/
Makefile 1 ##===- tools/llvm-prof/Makefile ----------------------------*- Makefile -*-===##
11 TOOLNAME = llvm-prof
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
profil.h 38 struct prof struct
56 extern int sprofil (struct prof *__profp, int __profcnt,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
profil.h 38 struct prof struct
56 extern int sprofil (struct prof *__profp, int __profcnt,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
profil.h 38 struct prof struct
56 extern int sprofil (struct prof *__profp, int __profcnt,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_profile.py 23 prof = cls.profilerclass(timer, 0.001)
25 prof.runctx("testfunc()", globals(), locals())
29 stats = pstats.Stats(prof, stream=s)
54 prof = self.profilerclass(timer, 0.001)
55 prof.runctx(stmt, globals(), locals())
56 stats = pstats.Stats(prof, stream=s)
  /external/python/cpython2/Lib/test/
test_profile.py 23 prof = cls.profilerclass(timer, 0.001)
25 prof.runctx("testfunc()", globals(), locals())
29 stats = pstats.Stats(prof, stream=s)
54 prof = self.profilerclass(timer, 0.001)
55 prof.runctx(stmt, globals(), locals())
56 stats = pstats.Stats(prof, stream=s)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_profile.py 23 prof = cls.profilerclass(timer, 0.001)
25 prof.runctx("testfunc()", globals(), locals())
29 stats = pstats.Stats(prof, stream=s)
54 prof = self.profilerclass(timer, 0.001)
55 prof.runctx(stmt, globals(), locals())
56 stats = pstats.Stats(prof, stream=s)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_profile.py 23 prof = cls.profilerclass(timer, 0.001)
25 prof.runctx("testfunc()", globals(), locals())
29 stats = pstats.Stats(prof, stream=s)
54 prof = self.profilerclass(timer, 0.001)
55 prof.runctx(stmt, globals(), locals())
56 stats = pstats.Stats(prof, stream=s)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_profile.py 23 prof = cls.profilerclass(timer, 0.001)
25 prof.runctx("testfunc()", globals(), locals())
29 stats = pstats.Stats(prof, stream=s)
54 prof = self.profilerclass(timer, 0.001)
55 prof.runctx(stmt, globals(), locals())
56 stats = pstats.Stats(prof, stream=s)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_profile.py 23 prof = cls.profilerclass(timer, 0.001)
25 prof.runctx("testfunc()", globals(), locals())
29 stats = pstats.Stats(prof, stream=s)
54 prof = self.profilerclass(timer, 0.001)
55 prof.runctx(stmt, globals(), locals())
56 stats = pstats.Stats(prof, stream=s)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
hotshotmain.py 20 PROFILE = "hotshot.prof"
23 prof = hotshot.Profile(profile)
26 prof.run("execfile(%r)" % filename)
27 prof.close()
  /external/python/cpython2/Tools/scripts/
hotshotmain.py 20 PROFILE = "hotshot.prof"
23 prof = hotshot.Profile(profile)
26 prof.run("execfile(%r)" % filename)
27 prof.close()
  /prebuilts/go/darwin-x86/test/
finprofiled.go 46 var prof []runtime.MemProfileRecord
48 if n, ok := runtime.MemProfile(prof, false); ok {
49 prof = prof[:n]
52 prof = make([]runtime.MemProfileRecord, n+10)
57 for _, p := range prof {
  /prebuilts/go/linux-x86/test/
finprofiled.go 46 var prof []runtime.MemProfileRecord
48 if n, ok := runtime.MemProfile(prof, false); ok {
49 prof = prof[:n]
52 prof = make([]runtime.MemProfileRecord, n+10)
57 for _, p := range prof {
  /prebuilts/go/darwin-x86/src/cmd/trace/
pprof.go 41 prof := make(map[uint64]Record)
46 rec := prof[ev.StkID]
50 prof[ev.StkID] = rec
52 return buildProfile(prof).Write(w)
61 prof := make(map[uint64]Record)
72 rec := prof[ev.StkID]
76 prof[ev.StkID] = rec
78 return buildProfile(prof).Write(w)
87 prof := make(map[uint64]Record)
92 rec := prof[ev.StkID
    [all...]
  /prebuilts/go/linux-x86/src/cmd/trace/
pprof.go 41 prof := make(map[uint64]Record)
46 rec := prof[ev.StkID]
50 prof[ev.StkID] = rec
52 return buildProfile(prof).Write(w)
61 prof := make(map[uint64]Record)
72 rec := prof[ev.StkID]
76 prof[ev.StkID] = rec
78 return buildProfile(prof).Write(w)
87 prof := make(map[uint64]Record)
92 rec := prof[ev.StkID
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/symbolizer/
symbolizer.go 24 func Symbolize(mode string, prof *profile.Profile, obj plugin.ObjTool, ui plugin.UI) error {
35 if len(prof.Mapping) == 0 {
39 mt, err := newMapping(prof, obj, ui, force)
46 for _, l := range mt.prof.Location {
80 f.ID = uint64(len(mt.prof.Function)) + 1
81 mt.prof.Function = append(mt.prof.Function, f)
97 func newMapping(prof *profile.Profile, obj plugin.ObjTool, ui plugin.UI, force bool) (*mappingTable, error) {
99 prof: prof,
    [all...]
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/symbolizer/
symbolizer.go 24 func Symbolize(mode string, prof *profile.Profile, obj plugin.ObjTool, ui plugin.UI) error {
35 if len(prof.Mapping) == 0 {
39 mt, err := newMapping(prof, obj, ui, force)
46 for _, l := range mt.prof.Location {
80 f.ID = uint64(len(mt.prof.Function)) + 1
81 mt.prof.Function = append(mt.prof.Function, f)
97 func newMapping(prof *profile.Profile, obj plugin.ObjTool, ui plugin.UI, force bool) (*mappingTable, error) {
99 prof: prof,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
cProfile.py 25 prof = Profile()
29 prof = prof.run(statement)
34 prof.dump_stats(filename)
36 result = prof.print_stats(sort)
45 prof = Profile()
49 prof = prof.runctx(statement, globals, locals)
54 prof.dump_stats(filename)
56 result = prof.print_stats(sort)
    [all...]
  /external/python/cpython2/Lib/
cProfile.py 25 prof = Profile()
29 prof = prof.run(statement)
34 prof.dump_stats(filename)
36 result = prof.print_stats(sort)
45 prof = Profile()
49 prof = prof.runctx(statement, globals, locals)
54 prof.dump_stats(filename)
56 result = prof.print_stats(sort
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
cProfile.py 25 prof = Profile()
29 prof = prof.run(statement)
34 prof.dump_stats(filename)
36 result = prof.print_stats(sort)
45 prof = Profile()
49 prof = prof.runctx(statement, globals, locals)
54 prof.dump_stats(filename)
56 result = prof.print_stats(sort
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
cProfile.py 25 prof = Profile()
29 prof = prof.run(statement)
34 prof.dump_stats(filename)
36 result = prof.print_stats(sort)
45 prof = Profile()
49 prof = prof.runctx(statement, globals, locals)
54 prof.dump_stats(filename)
56 result = prof.print_stats(sort
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cProfile.py 25 prof = Profile()
29 prof = prof.run(statement)
34 prof.dump_stats(filename)
36 result = prof.print_stats(sort)
45 prof = Profile()
49 prof = prof.runctx(statement, globals, locals)
54 prof.dump_stats(filename)
56 result = prof.print_stats(sort
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cProfile.py 25 prof = Profile()
29 prof = prof.run(statement)
34 prof.dump_stats(filename)
36 result = prof.print_stats(sort)
45 prof = Profile()
49 prof = prof.runctx(statement, globals, locals)
54 prof.dump_stats(filename)
56 result = prof.print_stats(sort
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/pprof/
pprof_test.go 140 var prof bytes.Buffer
141 if err := StartCPUProfile(&prof); err != nil {
147 if profileOk(t, need, prof, duration) {
172 func profileOk(t *testing.T, need []string, prof bytes.Buffer, duration time.Duration) (ok bool) {
178 parseProfile(t, prof.Bytes(), func(count uintptr, stk []uintptr) {
268 var prof bytes.Buffer
269 if err := StartCPUProfile(&prof); err != nil {
292 var prof bytes.Buffer
293 if err := StartCPUProfile(&prof); err != nil {
303 parseProfile(t, prof.Bytes(), func(count uintptr, stk []uintptr)
    [all...]

Completed in 3645 milliseconds

1 2 3 4 5