/external/freetype/src/raster/ |
D | ftraster.c | 506 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/ |
D | test_cprofile.py | 8 import cProfile 14 profilerclass = cProfile.Profile 15 profilermodule = cProfile
|
/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/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 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/ |
D | test_cprofile.py | 7 import cProfile 11 profilerclass = cProfile.Profile
|
/external/vulkan-headers/registry/ |
D | genvk.py | 17 import argparse, cProfile, pdb, string, sys, time 528 import cProfile, pstats 529 cProfile.run('genTarget(args)', 'profile.txt')
|
/external/vulkan-validation-layers/scripts/ |
D | lvl_genvk.py | 17 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/ |
D | 2.6.rst | 46 with cProfile that returned an object that could not be converted into a
|
D | 2.7a4.rst | 125 Fix a crash in ``_lsprof`` (cProfile) after clearing the profiler, reset
|
D | 2.7.5.rst | 509 add documentation for the Profile objects, and improve profile/cProfile
|
D | 2.7.1rc1.rst | 907 Fix running scripts with the profile/cProfile modules from the command line.
|
D | 2.7a1.rst | 533 profiling modules (profile, cProfile). Patch by Hagen Fürstenau.
|
/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 | 264 cProfile = eComponent.get('profile')
|
/external/tensorflow/tensorflow/contrib/eager/python/examples/workshop/ |
D | 2_models.ipynb | 900 …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/ |
D | 3.7.2rc1.rst | 420 Verify the value for the parameter '-s' of the cProfile CLI. Patch by Robert
|
D | 3.7.0a3.rst | 650 cProfile command line now accepts `-m module_name` as an alternative to
|
D | 3.5.0a1.rst | 3165 cProfile now displays the module name of C extension functions, in addition
|
/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/cpython3/Doc/whatsnew/ |
D | 3.7.rst | 835 cProfile section in Improved Modules 838 The :mod:`cProfile` command line now accepts ``-m module_name`` as an
|
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
|
/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
|