/external/autotest/client/site_tests/hardware_PerfCounterVerification/ |
stats_utils.py | 37 def FactsToNumpyArray(facts, dtype): 38 """Convert "facts" (list of dicts) to a numpy array. 40 @param facts: A list of dicts. Each dict must have keys matching the field 42 @param dtype: A numpy.dtype used to fill the array from facts. The dtype 45 @returns: A numpy.ndarray with dtype=dtype filled with facts. 47 a = numpy.zeros(len(facts), dtype=dtype) 48 for i, f in enumerate(facts):
|
perf_verification.py | 32 facts = [] 59 facts.append(f) 61 return facts 78 facts = GatherPerfStats('src/noploop', ','.join(events), 83 a = stats_utils.FactsToNumpyArray(facts, dt)
|
hardware_PerfCounterVerification.py | 63 self.facts = perf_verification.GatherPerfStats( 68 self.facts = perf_lbr_verification.GatherPerfBranchSamples( 82 arr = stats_utils.FactsToNumpyArray(self.facts, dt) 97 for x in self.facts]
|
perf_lbr_verification.py | 207 @returns: List of dicts containing facts about the executions of noploop. 211 facts = [] 240 facts.append(fact) 242 return facts 264 facts = GatherPerfBranchSamples('src/noploop', branch, 269 a = stats_utils.FactsToNumpyArray(facts, dt) 272 for f in facts:
|
/external/autotest/client/site_tests/hardware_TLBMissCost/ |
perf_measurement.py | 20 facts = [] 46 facts.append(f) 47 return facts
|
hardware_TLBMissCost.py | 53 self.facts = perf_measurement.GatherPerfStats(program, 60 for x in self.facts] 64 for x in self.facts]
|
/libcore/ojluni/src/main/java/sun/net/ftp/ |
FtpDirEntry.java | 64 private HashMap<String, String> facts = new HashMap<String, String>(); field in class:FtpDirEntry 267 * Adds a 'fact', as defined in RFC 3659, to the list of facts of this file. 276 facts.put(fact.toLowerCase(), value); 288 return facts.get(fact.toLowerCase());
|
/prebuilts/go/darwin-x86/src/go/types/ |
issues_test.go | 189 var facts []string 193 facts = append(facts, fact) 198 facts = append(facts, fact) 200 sort.Strings(facts) 202 got := strings.Join(facts, "\n")
|
example_test.go | 148 // ExampleInfo prints various facts recorded by the type checker in a
|
/prebuilts/go/linux-x86/src/go/types/ |
issues_test.go | 189 var facts []string 193 facts = append(facts, fact) 198 facts = append(facts, fact) 200 sort.Strings(facts) 202 got := strings.Join(facts, "\n")
|
example_test.go | 148 // ExampleInfo prints various facts recorded by the type checker in a
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/ |
FastMath.java | 989 final double facts[] = new double[2]; local 1768 final double facts[] = new double[2]; local 1811 final double facts[] = new double[2]; local [all...] |
/prebuilts/tools/linux-x86_64/kythe/proto/ |
xref.proto | 42 // - The client specifies exactly what facts should be returned. 45 // facts/edges for node". A node is extensionally defined by its facts and 46 // edges, so a node without any facts or edges is not considered to exist. 51 // Nodes returns a subset of the facts for each of the requested nodes. 91 // A collection of filter globs that specify which facts (by name) should be 92 // returned for each node. If filter is empty or unset, all available facts 100 // The matching facts known for that node, a map from fact name to value. 101 map<string, bytes> facts = 2; 113 // that had a non-zero number of matching facts. Each NodeInfo will not hav [all...] |