Home
last modified time | relevance | path

Searched refs:results (Results 301 - 325 of 1186) sorted by relevance

1...<<11121314151617181920>>...48

/third_party/typescript/tests/baselines/reference/
H A DbadArrayIndex.js2 var results = number[]; variable
5 var results = number[]; variable
/third_party/mesa3d/src/freedreno/vulkan/
H A Dtu_autotune.c21 * points to the results in GPU memory.
23 * tu_renderpass_history entry which aggregate results for a
26 * - Process results which fence was signalled.
30 * know when we could safely read the results.
33 * the results.
45 tu_autotune_free_results_locked(struct tu_device *dev, struct list_head *results);
60 * Tracks results for a given renderpass key
71 struct list_head results; member
172 tu_autotune_free_results_locked(dev, &history->results); in free_history()
213 list_add(&result->node, &history->results); in history_add_result()
455 tu_autotune_free_results_locked(struct tu_device *dev, struct list_head *results) tu_autotune_free_results_locked() argument
464 tu_autotune_free_results(struct tu_device *dev, struct list_head *results) tu_autotune_free_results() argument
[all...]
/build/templates/common/
H A Dinclude_relative_path_check.py44 results = []
54 cls.scan_each_file(component, file, proj_path, results)
57 return results
60 def scan_each_file(cls, component, file, project_path, results):
71 results.append(result)
/third_party/benchmark/src/
H A Dcomplexity.cc160 std::vector<Run> results;
162 if (reports.size() < 2) return results;
211 // All the time results are reported after being multiplied by the
239 results.push_back(big_o);
240 results.push_back(rms);
241 return results;
/third_party/node/deps/v8/third_party/wasm-api/example/
H A Dmemory.c36 wasm_val_t results[1]; in check_call() local
37 if (wasm_func_call(func, args, results) || results[0].of.i32 != expected) { in check_call()
76 wasm_val_t results[1]; in check_trap() local
77 own wasm_trap_t* trap = wasm_func_call(func, args, results); in check_trap()
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/
H A Dmarkers.py53 def _normalize_extra_values(results: Any) -> Any:
57 if isinstance(results[0], tuple):
58 lhs, op, rhs = results[0]
65 results[0] = lhs, op, rhs
66 return results
/third_party/skia/tools/skqp/
H A Dcut_release.py82 results = dict()
84 results[n] = 0
86 results[n] = -1
87 return ''.join('%s,%d\n' % (n, results[n]) for n in sorted(results))
/third_party/skia/infra/wasm-common/gold/
H A Dwasm_gold_aggregator.go65 // contains all the results reported in through report_gold_data
66 var results []jsonio.Result var
88 results = []jsonio.Result{}
135 results = append(results, jsonio.Result{
160 // dumpJSON writes out a JSON file with all the results, typically at the end of
180 Results: results,
/third_party/skia/infra/wasm-common/perf/
H A Dwasm_perf_aggregator.go12 // of the same benchmark and will output the average of these results
68 // contains all the results reported in through report_perf_data
69 var results map[string][]reportBody var
78 Results map[string]format.BenchResults `json:"results"`
104 results = make(map[string][]reportBody)
141 results[benchOutput.BenchName] = append(results[benchOutput.BenchName], benchOutput)
157 // dumpJSON writes out a JSON file with all the results, typically at the end of
185 for name, benches := range results {
/third_party/gn/infra/recipe_modules/windows_sdk/
H A Dapi.py92 results = ['%s' % sdk_dir.join(*e) for e in data[key]]
98 env_prefixes[key] = results
100 env[key] = ';'.join(results)
/third_party/icu/icu4c/source/test/intltest/
H A Dficoll.cpp62 const Collator::EComparisonResult CollationFinnishTest::results[] = { member in CollationFinnishTest
76 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]); in TestTertiary()
84 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]); in TestPrimary()
/third_party/icu/icu4c/source/test/cintltst/
H A Dcfintst.c55 const static UCollationResult results[] = { variable
91 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]); in TestTertiary()
109 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]); in TestPrimary()
/third_party/node/deps/v8/tools/testrunner/testproc/
H A Drerun.py34 results = self._results[test.procid]
35 results.append(result)
43 result = RerunResult.create(results)
/third_party/protobuf/benchmarks/js/
H A Djs_benchmark.js20 var results = []; variable
61 results.push({
78 fs.writeFile(json_file, JSON.stringify(results), (err) => {
/third_party/python/Lib/lib2to3/fixes/
H A Dfix_except.py47 def transform(self, node, results):
50 tail = [n.clone() for n in results["tail"]]
52 try_cleanup = [ch.clone() for ch in results["cleanup"]]
H A Dfix_print.py37 def transform(self, node, results):
38 assert results
40 bare_print = results.get("bare")
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
H A DvktApiComputeInstanceResultBuffer.cpp46 void ComputeInstanceResultBuffer::readResultContentsTo(tcu::Vec4 (*results)[4]) const in readResultContentsTo()
49 deMemcpy(*results, m_bufferMem->getHostPtr(), sizeof(*results)); in readResultContentsTo()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/
H A DvktApiComputeInstanceResultBuffer.cpp46 void ComputeInstanceResultBuffer::readResultContentsTo(tcu::Vec4 (*results)[4]) const in readResultContentsTo()
49 deMemcpy(*results, m_bufferMem->getHostPtr(), sizeof(*results)); in readResultContentsTo()
/third_party/skia/third_party/externals/dawn/src/tests/unittests/
H A DAsyncTaskTests.cpp33 // A thread-safe queue that stores the task results.
83 std::vector<std::unique_ptr<SimpleTaskResult>> results = taskResultQueue.GetAllResults(); in TEST_F() local
84 ASSERT_EQ(kTaskCount, results.size()); in TEST_F()
85 for (std::unique_ptr<SimpleTaskResult>& result : results) { in TEST_F()
/third_party/skia/infra/bots/recipes/
H A Dupload_buildstats_results.py6 # Recipe for uploading buildstats results to Perf.
22 # Upload the buildstats results.
28 results = api.file.glob_paths(
29 'find results',
33 if not len(results): # pragma: nocover
36 for src in results:
/third_party/skia/third_party/externals/dawn/src/dawn_node/tools/src/cmd/run-cts/
H A Dmain.go279 // logResult writes the test results to the log file in sequential order.
453 // Create a chan for the test results.
455 results := make(chan result, len(r.testcases))
463 if err := r.runServer(caseIndices, results); err != nil {
464 results <- result{
472 r.streamResults(wg, results)
482 // The result of the test run is written to the results chan.
485 func (r *runner) runServer(caseIndices <-chan int, results chan<- result) error {
560 results <- res
570 results <
[all...]
/third_party/vixl/test/aarch32/
H A Dtest-simulator-cond-rd-operand-rn-a32.cc506 TestResult* results[ARRAY_SIZE(kTests)]; in TestHelper() local
515 // Allocate results on the heap for this test. in TestHelper()
516 results[i] = new TestResult; in TestHelper()
517 results[i]->outputs = new Inputs[kTests[i].input_size]; in TestHelper()
518 results[i]->output_size = kTests[i].input_size; in TestHelper()
547 __ Mov(result_ptr, Operand::From(results[i]->outputs)); in TestHelper()
591 // Print the results. in TestHelper()
596 for (size_t j = 0; j < results[i]->output_size; j++) { in TestHelper()
598 printf("0x%08" PRIx32, results[i]->outputs[j].apsr); in TestHelper()
600 printf("0x%08" PRIx32, results[ in TestHelper()
[all...]
H A Dtest-simulator-cond-rd-operand-rn-t32.cc506 TestResult* results[ARRAY_SIZE(kTests)]; in TestHelper() local
515 // Allocate results on the heap for this test. in TestHelper()
516 results[i] = new TestResult; in TestHelper()
517 results[i]->outputs = new Inputs[kTests[i].input_size]; in TestHelper()
518 results[i]->output_size = kTests[i].input_size; in TestHelper()
547 __ Mov(result_ptr, Operand::From(results[i]->outputs)); in TestHelper()
591 // Print the results. in TestHelper()
596 for (size_t j = 0; j < results[i]->output_size; j++) { in TestHelper()
598 printf("0x%08" PRIx32, results[i]->outputs[j].apsr); in TestHelper()
600 printf("0x%08" PRIx32, results[ in TestHelper()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineCreationCacheControlTests.cpp342 string getResultsString(const vector<VkResult>& results) in getResultsString() argument
348 output << "results[" << results.size() << "]={ "; in getResultsString()
350 if (!results.empty()) in getResultsString()
352 output << results[0]; in getResultsString() local
355 for (size_t i = 1; i < results.size(); ++i) in getResultsString()
357 output << ", " << results[i]; in getResultsString() local
892 auto results = vector<VkResult>{}; in testInstance() local
893 results.reserve(testParameter.iterations.size()); in testInstance()
922 results in testInstance()
1077 auto results = vector<VkResult>{}; testInstance() local
[all...]
/third_party/vk-gl-cts/external/amber/src/src/vkscript/
H A Dcommand_parser_test.cc3097 std::vector<float> results = {2.3f, 4.2f, 1.2f}; in TEST_F() local
3098 ASSERT_EQ(results.size(), values.size()); in TEST_F()
3099 for (size_t i = 0; i < results.size(); ++i) { in TEST_F()
3100 EXPECT_FLOAT_EQ(results[i], values[i].AsFloat()); in TEST_F()
3144 std::vector<float> results = {2.3f, 4.2f, 1.2f}; in TEST_F() local
3145 ASSERT_EQ(results.size(), values.size()); in TEST_F()
3146 for (size_t i = 0; i < results.size(); ++i) { in TEST_F()
3147 EXPECT_FLOAT_EQ(results[i], values[i].AsFloat()); in TEST_F()
3180 std::vector<int16_t> results = {2, 4, 1}; in TEST_F() local
3181 ASSERT_EQ(results in TEST_F()
3216 std::vector<int16_t> results = {2, 4, 1, 3, 6, 8}; TEST_F() local
3352 std::vector<float> results = {2.1f, 3.2f, 4.3f, 0.f}; TEST_F() local
3396 std::vector<float> results = {2.1f, 3.2f, 4.3f, 0.f, 5.4f, 6.7f, 8.9f, 0.f}; TEST_F() local
3475 std::vector<float> results = {2.1f, 3.2f, 4.3f}; TEST_F() local
3533 std::vector<float> results = {2.1f, 3.2f, 4.3f}; TEST_F() local
3678 std::vector<double> results = {0.5, 2.4, 3.9, 99.7}; TEST_F() local
3696 std::vector<double> results = {0.5, 2.4, 3.9, 99.7}; TEST_F() local
3718 std::vector<double> results = {5.0, 4.0, 3.0, 99.0}; TEST_F() local
3736 std::vector<double> results = {5.0, 4.0, 3.0, 99.0}; TEST_F() local
3857 std::vector<double> results = {1.0, 2.0, 3.0, 4.0}; TEST_F() local
3954 std::vector<float> results = {2.3f, 4.2f, 1.2f}; TEST_F() local
3992 std::vector<float> results = {2.3f, 4.2f, 1.2f}; TEST_F() local
4030 std::vector<float> results = {2.3f, 4.2f, 1.2f}; TEST_F() local
4067 std::vector<int16_t> results = {2, 4, 1}; TEST_F() local
4104 std::vector<int16_t> results = {2, 4, 1, 3, 6, 8}; TEST_F() local
[all...]

Completed in 16 milliseconds

1...<<11121314151617181920>>...48