Home
last modified time | relevance | path

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

12

/external/freetype/src/raster/
Dftraster.c506 PProfile cProfile; /* current profile */ member
653 ras.cProfile = (PProfile)ras.top; in New_Profile()
654 ras.fProfile = ras.cProfile; in New_Profile()
664 ras.cProfile->flags = 0; in New_Profile()
665 ras.cProfile->start = 0; in New_Profile()
666 ras.cProfile->height = 0; in New_Profile()
667 ras.cProfile->offset = ras.top; in New_Profile()
668 ras.cProfile->link = (PProfile)0; in New_Profile()
669 ras.cProfile->next = (PProfile)0; in New_Profile()
670 ras.cProfile->flags = ras.dropOutControl; in New_Profile()
[all …]
/external/python/cpython3/Lib/test/
Dtest_cprofile.py8 import cProfile
14 profilerclass = cProfile.Profile
15 profilermodule = cProfile
/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/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 file :mod:`cProfile` can also be invoked as a script to profile another
126 python -m cProfile [-o output_file] [-s sort_order] (-m module | myscript.py)
[all …]
/external/python/cpython2/Lib/test/
Dtest_cprofile.py7 import cProfile
11 profilerclass = cProfile.Profile
/external/vulkan-headers/registry/
Dgenvk.py17 import argparse, cProfile, pdb, string, sys, time
528 import cProfile, pstats
529 cProfile.run('genTarget(args)', 'profile.txt')
/external/vulkan-validation-layers/scripts/
Dlvl_genvk.py17 import argparse, cProfile, pdb, string, sys, time, os
690 import cProfile, pstats
691 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.7a4.rst125 Fix a crash in ``_lsprof`` (cProfile) after clearing the profiler, reset
D2.7.5.rst509 add documentation for the Profile objects, and improve profile/cProfile
D2.7.1rc1.rst907 Fix running scripts with the profile/cProfile modules from the command line.
D2.7a1.rst533 profiling modules (profile, cProfile). Patch by Hagen Fürstenau.
/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.py264 cProfile = eComponent.get('profile')
/external/tensorflow/tensorflow/contrib/eager/python/examples/workshop/
D2_models.ipynb900 …haracteristics of your code, you can use native Python profilers like [`cProfile`](https://docs.py…
932 "import cProfile\n",
935 … "cProfile.run(\"train_one_epoch(model, training_data, optimizer)\", \"training_profile\")\n",
/external/python/cpython3/Misc/NEWS.d/
D3.7.2rc1.rst420 Verify the value for the parameter '-s' of the cProfile CLI. Patch by Robert
D3.7.0a3.rst650 cProfile command line now accepts `-m module_name` as an alternative to
D3.5.0a1.rst3165 cProfile now displays the module name of C extension functions, in addition
/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/cpython3/Doc/whatsnew/
D3.7.rst835 cProfile section in Improved Modules
838 The :mod:`cProfile` command line now accepts ``-m module_name`` as an
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
/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