Home
last modified time | relevance | path

Searched refs:_cumulative_profile (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Tools/scripts/
Danalyze_dxp.py35 _cumulative_profile = sys.getdxp() variable
50 global _cumulative_profile
51 _cumulative_profile = sys.getdxp() # 0s out our copy.
62 for first_inst in range(len(_cumulative_profile)):
63 for second_inst in range(len(_cumulative_profile[first_inst])):
64 _cumulative_profile[first_inst][second_inst] += (
67 for inst in range(len(_cumulative_profile)):
68 _cumulative_profile[inst] += new_profile[inst]
75 return copy.deepcopy(_cumulative_profile)
/external/python/cpython2/Tools/scripts/
Danalyze_dxp.py36 _cumulative_profile = sys.getdxp() variable
51 global _cumulative_profile
52 _cumulative_profile = sys.getdxp() # 0s out our copy.
63 for first_inst in range(len(_cumulative_profile)):
64 for second_inst in range(len(_cumulative_profile[first_inst])):
65 _cumulative_profile[first_inst][second_inst] += (
68 for inst in range(len(_cumulative_profile)):
69 _cumulative_profile[inst] += new_profile[inst]
76 return copy.deepcopy(_cumulative_profile)