Home
last modified time | relevance | path

Searched refs:performance (Results 1 – 25 of 1970) sorted by relevance

12345678910>>...79

/third_party/node/test/sequential/
Dtest-perf-hooks.js5 const { performance } = require('perf_hooks');
10 assert(performance);
11 assert(performance.nodeTiming);
12 assert.strictEqual(typeof performance.timeOrigin, 'number');
15 assert(Math.abs(performance.timeOrigin - Date.now()) < 15000);
17 const inited = performance.now();
22 performance.mark('A');
23 performance.clearMarks('A');
25 performance.mark('B');
26 performance.clearMarks();
[all …]
/third_party/typescript/src/compiler/
DperformanceCore.ts9 performance: Performance; property
43 declare const performance: Performance | undefined; constant
47 …function hasRequiredAPI(performance: Performance | undefined, PerformanceObserver: PerformanceObse…
48 return typeof performance === "object" &&
49 typeof performance.timeOrigin === "number" &&
50 typeof performance.mark === "function" &&
51 typeof performance.measure === "function" &&
52 typeof performance.now === "function" &&
57 if (typeof performance === "object" &&
59 hasRequiredAPI(performance, PerformanceObserver)) {
[all …]
/third_party/vk-gl-cts/modules/gles3/performance/
DBUILD.gn14 # deqp-gles3-performance build
26 "//third_party/vk-gl-cts/modules/gles3/performance/es3pBlendTests.cpp",
27 "//third_party/vk-gl-cts/modules/gles3/performance/es3pBufferDataUploadTests.cpp",
28 "//third_party/vk-gl-cts/modules/gles3/performance/es3pDepthTests.cpp",
29 "//third_party/vk-gl-cts/modules/gles3/performance/es3pPerformanceTests.cpp",
30 "//third_party/vk-gl-cts/modules/gles3/performance/es3pRedundantStateChangeTests.cpp",
31 "//third_party/vk-gl-cts/modules/gles3/performance/es3pShaderCompilationCases.cpp",
32 "//third_party/vk-gl-cts/modules/gles3/performance/es3pShaderCompilerTests.cpp",
33 "//third_party/vk-gl-cts/modules/gles3/performance/es3pShaderControlStatementTests.cpp",
34 "//third_party/vk-gl-cts/modules/gles3/performance/es3pShaderOperatorTests.cpp",
[all …]
/third_party/vk-gl-cts/modules/gles2/performance/
DBUILD.gn14 # deqp-gles2-performance build
26 "//third_party/vk-gl-cts/modules/gles2/performance/es2pBlendTests.cpp",
27 "//third_party/vk-gl-cts/modules/gles2/performance/es2pDrawCallBatchingTests.cpp",
28 "//third_party/vk-gl-cts/modules/gles2/performance/es2pPerformanceTests.cpp",
29 "//third_party/vk-gl-cts/modules/gles2/performance/es2pRedundantStateChangeTests.cpp",
30 "//third_party/vk-gl-cts/modules/gles2/performance/es2pShaderCompilationCases.cpp",
31 "//third_party/vk-gl-cts/modules/gles2/performance/es2pShaderCompilerTests.cpp",
32 "//third_party/vk-gl-cts/modules/gles2/performance/es2pShaderControlStatementTests.cpp",
33 "//third_party/vk-gl-cts/modules/gles2/performance/es2pShaderOperatorTests.cpp",
34 "//third_party/vk-gl-cts/modules/gles2/performance/es2pShaderOptimizationTests.cpp",
[all …]
/third_party/node/test/fixtures/wpt/hr-time/
Dbasic.any.js2 assert_true((self.performance !== undefined), "self.performance exists");
3 assert_equals(typeof self.performance, "object", "self.performance is an object");
4 assert_equals((typeof self.performance.now), "function", "self.performance.now() is a function");
5 assert_equals(typeof self.performance.now(), "number", "self.performance.now() returns a number");
9 assert_true(self.performance.now() > 0);
13 var now1 = self.performance.now();
14 var now2 = self.performance.now();
20 var initial_hrt = self.performance.now();
23 var final_hrt = self.performance.now();
Dwindow-worker-timeOrigin.window.js6 const globalTimeOrigin = performance.timeOrigin;
7 const globalNowBeforeWorkerStart = performance.now();
19 assert_not_equals(performance.timeOrigin, 0, "Document timeOrigin must not be 0");
21 …assert_equals(globalTimeOrigin, performance.timeOrigin, "timeOrigin should not be changed in same …
/third_party/mesa3d/src/intel/compiler/
Dbrw_ir_performance.h37 struct performance { struct
38 performance(const fs_visitor *v);
39 performance(const vec4_visitor *v);
40 ~performance();
80 performance(const performance &perf); argument
81 performance &
82 operator=(performance u); argument
/third_party/boost/libs/spirit/doc/karma/
Dnumeric_performance.qbk11 [section:int_performance Comparing the performance of a single int_ generator]
13 These performance measurements are centered around default formatting of a
18 For the full source code of the performance test please see here:
25 Code used to measure the performance for `ltoa`:
29 Code used to measure the performance for standard C++ iostreams:
33 Code used to measure the performance for __boost_format__:
37 Code used to measure the performance for __karma__ using a plain character buffer:
41 The following table shows the overall performance results collected
60 [section:double_performance Comparing the performance of a single double_ generator]
62 These performance measurements are centered around default formatting of a
[all …]
/third_party/node/deps/npm/node_modules/performance-now/
DREADME.md1performance-now [![Build Status](https://travis-ci.org/braveg1rl/performance-now.png?branch=master…
3 Implements a function similar to `performance.now` (based on `process.hrtime`).
5 Modern browsers have a `window.performance` object with - among others - a `now` method which gives…
9 …/), the number of milliseconds reported by `performance.now` should be relative to the value of `p…
18 var now = require("performance-now")
29 performance-now is released under the [MIT License](http://opensource.org/licenses/MIT).
/third_party/node/test/parallel/
Dtest-performance-measure.js6 const { PerformanceObserver, performance } = require('perf_hooks');
18 performance.mark('A');
20 performance.measure('Start to Now');
21 performance.measure('A to Now', 'A');
23 performance.mark('B');
24 performance.measure('A to B', 'A', 'B');
Dtest-performance-function.js7 performance,
13 const n = performance.timerify(function noop() {});
34 const n = performance.timerify(() => {
43 const n = performance.timerify(N);
64 assert.throws(() => performance.timerify(input),
76 const n = performance.timerify(m);
77 const o = performance.timerify(m);
78 const p = performance.timerify(n);
Dtest-performanceobserver.js13 performance,
69 performance.mark('42');
95 performance.mark('test1');
96 performance.mark('test2');
97 performance.mark('test3');
146 performance.mark('test1');
147 performance.mark('test2');
148 performance.measure('test3', 'test1', 'test2');
/third_party/node/doc/api/
Dperf_hooks.md11 Node.js-specific performance measurements.
20 const { PerformanceObserver, performance } = require('perf_hooks');
24 performance.clearMarks();
27 performance.measure('Start to Now');
29 performance.mark('A');
31 performance.measure('A to Now', 'A');
33 performance.mark('B');
34 performance.measure('A to B', 'A', 'B');
38 ## `perf_hooks.performance`
43 An object that can be used to collect performance metrics from the current
[all …]
/third_party/grpc/tools/internal_ci/linux/
Dgrpc_full_performance_release.sh27 …--remote_worker_host grpc-kokoro-performance-server-8core grpc-kokoro-performance-client-8core grp…
41 …--remote_worker_host grpc-kokoro-performance-server-32core grpc-kokoro-performance-client-32core g…
Dgrpc_full_performance_master.sh27 …--remote_worker_host grpc-kokoro-performance-server-8core grpc-kokoro-performance-client-8core grp…
41 …--remote_worker_host grpc-kokoro-performance-server-32core grpc-kokoro-performance-client-32core g…
/third_party/boost/libs/graph_parallel/doc/
Ddehne_gotz_min_spanning_tree.rst158 The following charts illustrate the performance of this algorithm on
161 graphs. However, for sparse graphs performance tapers off as the
165 .. image:: http://www.osl.iu.edu/research/pbgl/performance/chart.php?generator=ER,SF,SW&dataset=Tim…
167 .. image:: http://www.osl.iu.edu/research/pbgl/performance/chart.php?generator=ER,SF,SW&dataset=Tim…
169 .. image:: http://www.osl.iu.edu/research/pbgl/performance/chart.php?generator=ER,SF,SW&dataset=Tim…
171 .. image:: http://www.osl.iu.edu/research/pbgl/performance/chart.php?generator=ER,SF,SW&dataset=Tim…
214 The following charts illustrate the performance of this algorithm on
219 .. image:: http://www.osl.iu.edu/research/pbgl/performance/chart.php?generator=ER,SF,SW&dataset=Tim…
221 .. image:: http://www.osl.iu.edu/research/pbgl/performance/chart.php?generator=ER,SF,SW&dataset=Tim…
223 .. image:: http://www.osl.iu.edu/research/pbgl/performance/chart.php?generator=ER,SF,SW&dataset=Tim…
[all …]
/third_party/boost/libs/regex/doc/html/
Dstandalone_HTML.manifest80 boost_regex/background/performance.html
81 boost_regex/background/performance/section_id1378460593.html
82 boost_regex/background/performance/section_id1675827111.html
83 boost_regex/background/performance/section_id3141719723.html
84 boost_regex/background/performance/section_id3258595385.html
85 boost_regex/background/performance/section_id3261825021.html
86 boost_regex/background/performance/section_id3752650613.html
87 boost_regex/background/performance/section_id4128344975.html
88 boost_regex/background/performance/section_id4148872883.html
/third_party/vk-gl-cts/doc/testspecs/GLES2/
Dperformance.texture.format.txt19 Texture format performance tests
22 + dEQP-GLES2.performance.texture.format.*
25 + Texture lookup performance with all uncompressed texture formats
32 - Covered performance.texture.filtering and performance.texture.wrap
36 Test cases measure performance of 2D and cubemap texture lookups without
56 See performance.txt for more details on shader performance testing.
/third_party/flutter/flutter/.github/ISSUE_TEMPLATE/
Dperformance.md2 name: I have a performance problem with my application
6 labels: 'severe: performance'
19 If you have found a performance problem, then fill our the template below.
35 Then press ‘P’ to enable the performance overlay.
38 constantly fixing bugs and improving its performance. Your problem in an
41 4. Record a video of the performance issue using another phone so we
43 "adb screenrecord", as that affects the performance of the profile run.
45 5. Open Observatory and save a timeline trace of the performance issue
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-tls-mem/mount-origin/
Dexample.js5 if ( performance && performance.timing.nextHopProtocol ) {
6 transport_protocol = performance.timing.nextHopProtocol;
11 var p = performance.getEntriesByType("resource");
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-tls/mount-origin/
Dexample.js5 if ( performance && performance.timing.nextHopProtocol ) {
6 transport_protocol = performance.timing.nextHopProtocol;
11 var p = performance.getEntriesByType("resource");
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-tls-80/mount-origin/
Dexample.js5 if (performance && performance.timing.nextHopProtocol) {
6 transport_protocol = performance.timing.nextHopProtocol;
10 var p = performance.getEntriesByType("resource");
/third_party/openh264/autotest/performanceTest/
Drun_perfTest.sh20 echo Running the encoder performance test
23 echo Running the decoder performance test
56 echo Run the Encoder performance test on ios devices
65 echo Run the Encoder performance test on android devices
92 echo Run the Decoder performance test on ios devices
101 echo Run the Decoder performance test on android devices
/third_party/boost/libs/convert/doc/
Dperformance.qbk7 [section:performance Performance]
10 The performance of ['Boost.Convert] depends entirely on the performance of the converter deployed. …
12performance of every particular converter depends on the platform, the compiler used and the parti…
25 …onversion-related limitations in mind); ['Spirit.Karma]'s ['to-string] performance did not seem as…
26 …nd formatting support, it might be an option to consider if conversion performance is not your pri…
35 …st.org/doc/libs/1_55_0/doc/html/boost_lexical_cast/performance.html `boost::lexical_cast` performa…
37 …out the `std::stream`-related overhead. That resulted in the best out-of-three performance results.
39 Based on the performance data, I tend to conclude that, given type-safety and benefits provided by …
44 …c. Consequently, there might be reasonable concerns with regard to the performance overhead introd…
46 To test that code has been borrowed and adapted from the Spirit.Qi performance/optimization framewo…
[all …]
/third_party/grpc/test/
D.clang-tidy2 …aces,google-build-explicit-make-pair,readability-function-size,performance-*,-performance-unnecess…
3 …aces,google-build-explicit-make-pair,readability-function-size,performance-*,-performance-unnecess…

12345678910>>...79