Home
last modified time | relevance | path

Searched refs:cProfile (Results 1 – 25 of 31) sorted by relevance

12

/external/freetype/src/raster/
Dftraster.c510 PProfile cProfile; /* current profile */ member
656 ras.cProfile = (PProfile)ras.top; in New_Profile()
657 ras.fProfile = ras.cProfile; in New_Profile()
667 ras.cProfile->start = 0; in New_Profile()
668 ras.cProfile->height = 0; in New_Profile()
669 ras.cProfile->offset = ras.top; in New_Profile()
670 ras.cProfile->link = (PProfile)0; in New_Profile()
671 ras.cProfile->next = (PProfile)0; in New_Profile()
672 ras.cProfile->flags = ras.dropOutControl; in New_Profile()
677 ras.cProfile->flags |= Flow_Up; in New_Profile()
[all …]
/external/python/cpython3/Lib/test/
Dtest_cprofile.py7 import cProfile
14 profilerclass = cProfile.Profile
15 profilermodule = cProfile
Dtest_pstats.py8 import cProfile
84 pr = cProfile.Profile()
/external/python/cpython3/Doc/library/
Dprofile.rst20 :mod:`cProfile` and :mod:`profile` provide :dfn:`deterministic profiling` of
28 1. :mod:`cProfile` is recommended for most users; it's a C extension with
34 :mod:`cProfile`, but which adds significant overhead to profiled programs.
59 import cProfile
61 cProfile.run('re.compile("foo|bar")')
63 (Use :mod:`profile` instead of :mod:`cProfile` if the latter is not available on
116 import cProfile
118 cProfile.run('re.compile("foo|bar")', 'restats')
123 The files :mod:`cProfile` and :mod:`profile` can also be invoked as a script to
126 python -m cProfile [-o output_file] [-s sort_order] (-m module | myscript.py)
[all …]
/external/python/cpython2/Doc/library/
Dprofile.rst20 :mod:`cProfile` and :mod:`profile` provide :dfn:`deterministic profiling` of
28 1. :mod:`cProfile` is recommended for most users; it's a C extension with
36 :mod:`cProfile`, but which adds significant overhead to profiled programs.
54 The :mod:`profile` and :mod:`cProfile` modules export the same interface, so
55 they are mostly interchangeable; :mod:`cProfile` has a much lower overhead but
57 :mod:`cProfile` is really a compatibility layer on top of the internal
82 import cProfile
84 cProfile.run('re.compile("foo|bar")')
86 (Use :mod:`profile` instead of :mod:`cProfile` if the latter is not available on
139 import cProfile
[all …]
Dhotshot.rst22 recommended to use :mod:`cProfile` instead. :mod:`hotshot` is not maintained and
/external/python/cpython2/Lib/test/
Dtest_cprofile.py7 import cProfile
11 profilerclass = cProfile.Profile
/external/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/
Daudioproc_wrapper.py12 import cProfile
40 self._profiler = cProfile.Profile()
/external/vulkan-validation-layers/scripts/
Dlvl_genvk.py17 import argparse, cProfile, pdb, string, sys, time, os
718 import cProfile, pstats
719 cProfile.run('genTarget(args)', 'profile.txt')
/external/python/cpython2/Misc/NEWS.d/
D2.6.rst46 with cProfile that returned an object that could not be converted into a
D2.7.5.rst509 add documentation for the Profile objects, and improve profile/cProfile
D2.7a4.rst125 Fix a crash in ``_lsprof`` (cProfile) after clearing the profiler, reset
D2.7.1rc1.rst907 Fix running scripts with the profile/cProfile modules from the command line.
/external/antlr/runtime/Python3/antlr3/
Dmain.py97 import cProfile as profile
/external/antlr/runtime/Python/antlr3/
Dmain.py135 import cProfile as profile
/external/python/cpython2/Misc/
Dmaintainers.rst91 cProfile
/external/deqp/scripts/khr_util/
Dregistry.py269 cProfile = eComponent.get('profile')
/external/llvm-project/lldb/packages/Python/lldbsuite/test/
DREADME-TestSuite135 …stem/Library/Frameworks/Python.framework/Versions/Current/lib/python2.6/cProfile.py -o my.profile …
/external/python/cpython3/Doc/whatsnew/
D3.8.rst707 cProfile section in Improved Modules
710 The :class:`cProfile.Profile <profile.Profile>` class can now be used as a context manager.
713 import cProfile
715 with cProfile.Profile() as profiler:
1724 :meth:`profile.Profile.runcall`, :meth:`cProfile.Profile.runcall`,
1913 * The :class:`cProfile.Profile` class can now be used as a context
D2.5.rst1280 * New module: The :mod:`cProfile` module is a C implementation of the existing
1282 the same as :mod:`profile`: you run ``cProfile.run('main()')`` to profile a
D3.7.rst840 cProfile section in Improved Modules
843 The :mod:`cProfile` command line now accepts ``-m module_name`` as an
/external/python/cpython3/Misc/NEWS.d/
D3.9.1rc1.rst520 Fix ``--outfile`` for :mod:`cProfile` / :mod:`profile` not writing the
D3.7.0a3.rst646 cProfile command line now accepts `-m module_name` as an alternative to
/external/freetype/
DChangeLog.265357 Apparently `ras.cProfile' might be uninitialized. This will be the
5358 case if `ras.top == ras.cProfile->offset', as can be seen in
5361 2009-06-18) violated this, accessing `ras.cProfile->flags'
5363 detected that `cProfile' is uninitialized and didn't touch it).
5371 uninitialized `cProfile'.
/external/python/cpython2/Doc/whatsnew/
D2.5.rst1279 * New module: The :mod:`cProfile` module is a C implementation of the existing
1281 the same as :mod:`profile`: you run ``cProfile.run('main()')`` to profile a

12