/external/freetype/src/raster/ |
D | ftraster.c | 510 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/ |
D | test_cprofile.py | 7 import cProfile 14 profilerclass = cProfile.Profile 15 profilermodule = cProfile
|
D | test_pstats.py | 8 import cProfile 84 pr = cProfile.Profile()
|
/external/python/cpython3/Doc/library/ |
D | profile.rst | 20 :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/ |
D | profile.rst | 20 :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 …]
|
D | hotshot.rst | 22 recommended to use :mod:`cProfile` instead. :mod:`hotshot` is not maintained and
|
/external/python/cpython2/Lib/test/ |
D | test_cprofile.py | 7 import cProfile 11 profilerclass = cProfile.Profile
|
/external/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/ |
D | audioproc_wrapper.py | 12 import cProfile 40 self._profiler = cProfile.Profile()
|
/external/vulkan-validation-layers/scripts/ |
D | lvl_genvk.py | 17 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/ |
D | 2.6.rst | 46 with cProfile that returned an object that could not be converted into a
|
D | 2.7.5.rst | 509 add documentation for the Profile objects, and improve profile/cProfile
|
D | 2.7a4.rst | 125 Fix a crash in ``_lsprof`` (cProfile) after clearing the profiler, reset
|
D | 2.7.1rc1.rst | 907 Fix running scripts with the profile/cProfile modules from the command line.
|
/external/antlr/runtime/Python3/antlr3/ |
D | main.py | 97 import cProfile as profile
|
/external/antlr/runtime/Python/antlr3/ |
D | main.py | 135 import cProfile as profile
|
/external/python/cpython2/Misc/ |
D | maintainers.rst | 91 cProfile
|
/external/deqp/scripts/khr_util/ |
D | registry.py | 269 cProfile = eComponent.get('profile')
|
/external/llvm-project/lldb/packages/Python/lldbsuite/test/ |
D | README-TestSuite | 135 …stem/Library/Frameworks/Python.framework/Versions/Current/lib/python2.6/cProfile.py -o my.profile …
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.8.rst | 707 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
|
D | 2.5.rst | 1280 * 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
|
D | 3.7.rst | 840 cProfile section in Improved Modules 843 The :mod:`cProfile` command line now accepts ``-m module_name`` as an
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.1rc1.rst | 520 Fix ``--outfile`` for :mod:`cProfile` / :mod:`profile` not writing the
|
D | 3.7.0a3.rst | 646 cProfile command line now accepts `-m module_name` as an alternative to
|
/external/freetype/ |
D | ChangeLog.26 | 5357 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/ |
D | 2.5.rst | 1279 * 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
|