Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:opcode_stats
(Results
1 - 4
of
4
) sorted by relevance
/third_party/python/Tools/scripts/
H
A
D
summarize_stats.py
98
opcode_stats
= [ {} for _ in range(256) ]
103
opcode_stats
[int(n)][rest.strip(".")] = value
104
return
opcode_stats
134
def categorized_counts(
opcode_stats
):
144
for i, opcode_stat in enumerate(
opcode_stats
):
206
def emit_execution_counts(
opcode_stats
, total):
209
for i, opcode_stat in enumerate(
opcode_stats
):
233
def emit_specialization_stats(
opcode_stats
):
238
for i, opcode_stat in enumerate(
opcode_stats
):
242
def emit_specialization_overview(
opcode_stats
, tota
[all...]
/third_party/python/Include/internal/
H
A
D
pycore_code.h
306
OpcodeStats
opcode_stats
[256];
member
313
#define STAT_INC(opname, name) _py_stats.
opcode_stats
[opname].specialization.name++
314
#define STAT_DEC(opname, name) _py_stats.
opcode_stats
[opname].specialization.name--
315
#define OPCODE_EXE_INC(opname) _py_stats.
opcode_stats
[opname].execution_count++
/third_party/python/Python/
H
A
D
specialize.c
96
SpecializationStats *stats = &_py_stats.
opcode_stats
[opcode].specialization;
in add_stat_dict()
202
print_spec_stats(out, stats->
opcode_stats
);
in print_stats()
248
#define SPECIALIZATION_FAIL(opcode, kind) _py_stats.
opcode_stats
[opcode].specialization.failure_kinds[kind]++
H
A
D
ceval.c
1307
_py_stats.
opcode_stats
[lastopcode].pair_count[op]++; \
4338
_py_stats.
opcode_stats
[FOR_ITER].specialization.failure++;
4339
_py_stats.
opcode_stats
[FOR_ITER].specialization.failure_kinds[_PySpecialization_ClassifyIterator(iter)]++;
7840
PyObject *x = getarray(_py_stats.
opcode_stats
[i].pair_count);
7854
_py_stats.
opcode_stats
[i].execution_count);
Completed in 16 milliseconds