Home
last modified time | relevance | path

Searched +full:vm +full:- +full:valgrind +full:- +full:other (Results 1 – 25 of 41) sorted by relevance

12

/third_party/libinput/
D.gitlab-ci.yml9 # To change the gitlab CI, edit .gitlab-ci/ci.template and/or .gitlab-ci/config.yaml
10 # and run ci-fairy generate-template. For details, see
11 # https://freedesktop.pages.freedesktop.org/ci-templates/ci-fairy.html#templating-gitlab-ci-yml
14 # - we really want to run dnf/apt/... only once, updating on the test runner for
18 # This is handled by the ci-templates, ensuring containers are only rebuilt
21 # - GitLab only allows one script: set per job but we have a bunch of commands
22 # we need to re-run for each build (meson && ninja && etc). YAML cannot merge
27 # MESON_ARGS=-Denable-something=true
28 # NINJA_ARGS=dist ... to run 'ninja -C builddir dist'
35 # e.g. fedora:31@build-default
[all …]
/third_party/jerryscript/tools/
Dcheck-sonarqube.sh3 # Copyright JS Foundation and other contributors, http://js.foundation
9 # http://www.apache.org/licenses/LICENSE-2.0
17 if [[ "${TRAVIS_REPO_SLUG}" == "jerryscript-project/jerryscript"
21 git fetch --unshallow
22 build-wrapper-linux-x86-64 --out-dir bw-output \
23 ./tools/build.py --error-messages=on \
24 --jerry-cmdline-snapshot=on \
25 --jerry-debugger=on \
26 --line-info=on \
27 --mem-stats=on \
[all …]
Dbuild.py3 # Copyright JS Foundation and other contributors, http://js.foundation
9 # http://www.apache.org/licenses/LICENSE-2.0
40 devhelp_preparser.add_argument('--devhelp', action='store_true', default=False,
46 args.append('--devhelp')
58 …buildgrp.add_argument('--builddir', metavar='DIR', default=os.path.join(settings.PROJECT_DIR, 'bui…
60 buildgrp.add_argument('--clean', action='store_true', default=False,
62 buildgrp.add_argument('--cmake-param', metavar='OPT', action='append', default=[],
64 buildgrp.add_argument('--compile-flag', metavar='OPT', action='append', default=[],
66 buildgrp.add_argument('--debug', action='store_const', const='Debug', dest='build_type',
68 buildgrp.add_argument('--install', metavar='DIR', nargs='?', default=None, const=False,
[all …]
Drun-tests.py3 # Copyright JS Foundation and other contributors, http://js.foundation
9 # http://www.apache.org/licenses/LICENSE-2.0
36 OPTIONS_COMMON = ['--lto=off']
37 OPTIONS_PROFILE_MIN = ['--profile=minimal']
38 OPTIONS_PROFILE_ES51 = [] # NOTE: same as ['--profile=es5.1']
39 OPTIONS_PROFILE_ES2015 = ['--profile=es2015-subset']
40 OPTIONS_STACK_LIMIT = ['--stack-limit=96']
41 OPTIONS_GC_MARK_LIMIT = ['--gc-mark-limit=16']
42 OPTIONS_DEBUG = ['--debug']
43 OPTIONS_SNAPSHOT = ['--snapshot-save=on', '--snapshot-exec=on', '--jerry-cmdline-snapshot=on']
[all …]
/third_party/jerryscript/jerry-core/
DCMakeLists.txt1 # Copyright JS Foundation and other contributors, http://js.foundation
7 # http://www.apache.org/licenses/LICENSE-2.0
16 set(JERRY_CORE_NAME jerry-core)
20 set(ENABLE_ALL_IN_ONE OFF CACHE BOOL "Enable all-in-one build?")
27 set(JERRY_PARSER ON CACHE BOOL "Enable javascript-parser?")
31 set(JERRY_MEM_GC_BEFORE_EACH_ALLOC OFF CACHE BOOL "Enable mem-stress test?")
32 set(JERRY_PARSER_DUMP_BYTE_CODE OFF CACHE BOOL "Enable parser byte-code dumps?")
33 set(JERRY_PROFILE "es5.1" CACHE STRING "Use default or other profile?")
35 set(JERRY_REGEXP_DUMP_BYTE_CODE OFF CACHE BOOL "Enable regexp byte-code dumps?")
39 set(JERRY_VALGRIND OFF CACHE BOOL "Enable Valgrind support?")
[all …]
Dconfig.h1 /* Copyright JS Foundation and other contributors, http://js.foundation
7 * http://www.apache.org/licenses/LICENSE-2.0
149 * Built-in configurations
151 * Allowed values for built-in defines:
152 * 0: Disable the given built-in.
153 * 1: Enable the given built-in.
156 * By default all built-ins are enabled if they are not defined.
279 * Enable/Disable built-in error messages for error objects.
327 * - https://github.com/google/sanitizers/wiki/AddressSanitizerUseAfterReturn#compatibility
358 * Enable/Disable line-info management inside the engine.
[all …]
/third_party/libinput/doc/user/
Dtest-suite.rst1 .. _test-suite:
11 $ sudo ./builddir/libinput-test-suite
13 When developing libinput, the ``libinput-test-suite`` should always be
15 the number of tests to run can be filtered, see :ref:`test-filtering`.
17 touchpad tap-to-click) while hacking on that specific feature and only run
27 ``meson test -C builddir`` (or ``ninja test``). The ``libinput-test-suite`` is
30 The upstream CI runs all these tests but not the ``libinput-test-suite``.
33 .. _test-job-control:
35 ------------------------------------------------------------------------------
37 ------------------------------------------------------------------------------
[all …]
/third_party/node/tools/
Dtest.py12 # disclaimer in the documentation and/or other materials provided
94 # ---------------------------------------------
95 # --- P r o g r e s s I n d i c a t o r s ---
96 # ---------------------------------------------
125 output += ["--- stderr ---" ]
128 output += ["--- stdout ---"]
132 output += ["--- %s ---" % PrintCrashed(failure.output.exit_code)]
134 output += ["--- TIMEOUT ---"]
152 def Run(self, tasks) -> Dict:
155 # Spawn N-1 threads and then use this thread as the last one.
[all …]
/third_party/mesa3d/src/amd/common/
Dac_debug.c17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
28 #include <valgrind.h>
47 /* Parsed IBs are difficult to read without colors. Use "less -R file" to
48 * read them, or use "aha -b -f file" to convert them to html.
106 fprintf(file, "%s%s%s <- ", in print_named_value()
150 if (reg->offset == offset) in find_register()
161 return reg ? sid_strings + reg->name_offset : "(no name)"; in ac_get_register_name()
170 const char *reg_name = sid_strings + reg->name_offset; in ac_dump_reg()
[all …]
/third_party/mesa3d/docs/relnotes/
D10.5.1.rst15 ----------------
19 b5b6256a6d46023e16a675257fd11a0f94d7b3e60a76cf112952da3d0fef8e9b mesa-10.5.1.tar.gz
20 ffc51943d15c6812ee7611d053d8980a683fbd6a4986cff567b12cc66637d679 mesa-10.5.1.tar.xz
23 ------------
28 ---------
32 - `Bug 79202 <https://bugs.freedesktop.org/show_bug.cgi?id=79202>`__ -
33 valgrind errors in glsl-fs-uniform-array-loop-unroll.shader_test;
35 - `Bug 84613 <https://bugs.freedesktop.org/show_bug.cgi?id=84613>`__ -
37 - `Bug 86747 <https://bugs.freedesktop.org/show_bug.cgi?id=86747>`__ -
39 - `Bug 86974 <https://bugs.freedesktop.org/show_bug.cgi?id=86974>`__ -
[all …]
D18.3.0.rst16 libwayland-egl is now distributed by Wayland (since 1.15, `see
17 announcement <https://lists.freedesktop.org/archives/wayland-devel/2018-April/037767.html>`__),
19 an up-to-date version of Wayland to keep the functionality.
22 ----------------
26 17a124d4dbc712505d22a7815c9b0cee22214c96c8abb91539a2b1351e38a000 mesa-18.3.0.tar.gz
27 b63f947e735d6ef3dfaa30c789a9adfbae18aea671191eaacde95a18c17fc38a mesa-18.3.0.tar.xz
30 ------------
34 - GL_AMD_depth_clamp_separate on r600, radeonsi.
35 - GL_AMD_framebuffer_multisample_advanced on radeonsi.
36 - GL_AMD_gpu_shader_int64 on i965, nvc0, radeonsi.
[all …]
D20.0.0.rst1 Mesa 20.0.0 Release Notes / 2020-02-19
21 ---------------
25 bb6db3e54b608d2536d4000b3de7dd3ae115fc114e8acbb5afff4b3bbed04b34 mesa-20.0.0.tar.xz
28 ------------
30 - OpenGL 4.6 on radeonsi.
31 - GL_ARB_gl_spirv on radeonsi.
32 - GL_ARB_spirv_extensions on radeonsi.
33 - GL_EXT_direct_state_access for compatibility profile.
34 - VK_AMD_device_coherent_memory on RADV.
35 - VK_AMD_mixed_attachment_samples on RADV.
[all …]
D22.2.0.rst1 Mesa 22.2.0 Release Notes / 2022-09-21
20 ---------------
24 b1f9c8fd08f2cae3adf83355bef4d2398e8025f44947332880f2d0066bdafa8c mesa-22.2.0.tar.xz
29 ------------
31 - WGL_ARB_create_context_robustness
33 - d3d12 ARB_robust_buffer_access_behavior
35 - VK_EXT_robustness2 for lavapipe
37 - VK_EXT_image_2d_view_of_3d on RADV
39 - zink and d3d12 GL_EXT_memory_object_win32 and GL_EXT_semaphore_win32 support
41 - vertexAttributeInstanceRateZeroDivisor support for lavapipe
[all …]
/third_party/mesa3d/docs/
Denvvars.rst6 but they can sometimes be useful for debugging end-user issues.
9 ---------------------------
15 colon-separated list of paths to search for DRI drivers
32 -------------------------------
52 following comma-separated list of named flags, which adds extra
73 ``GL_EXT_foo -GL_EXT_bar`` will enable the ``GL_EXT_foo`` extension
79 or before year X will be reported. This is to work-around a bug in
80 some games where the extension string is copied into a fixed-size
82 buffer overrun can cause the game to crash. This is a work-around for
88 - The format should be ``MAJOR.MINOR[FC|COMPAT]``
[all …]
/third_party/pulseaudio/src/daemon/
Dmain.c4 Copyright 2004-2006 Lennart Poettering
60 #include <systemd/sd-daemon.h>
69 #include <pulse/client-conf.h>
71 #include <pulse/mainloop-signal.h>
76 #include <pulsecore/lock-autospawn.h>
78 #include <pulsecore/core-error.h>
79 #include <pulsecore/core-rtclock.h>
80 #include <pulsecore/core-scache.h>
83 #include <pulsecore/cli-command.h>
85 #include <pulsecore/core-util.h>
[all …]
Dohos_pa_main.c4 Copyright 2004-2006 Lennart Poettering
60 #include <systemd/sd-daemon.h>
69 #include <pulse/client-conf.h>
71 #include <pulse/mainloop-signal.h>
76 #include <pulsecore/lock-autospawn.h>
78 #include <pulsecore/core-error.h>
79 #include <pulsecore/core-rtclock.h>
80 #include <pulsecore/core-scache.h>
83 #include <pulsecore/cli-command.h>
85 #include <pulsecore/core-util.h>
[all …]
/third_party/vixl/test/aarch64/
Dtest-simulator-aarch64.cc11 // and/or other materials provided with the distribution.
32 #include "test-runner.h"
33 #include "test-utils.h"
35 #include "aarch64/test-simulator-inputs-aarch64.h"
36 #include "aarch64/test-simulator-traces-aarch64.h"
37 #include "aarch64/test-utils-aarch64.h"
39 #include "aarch64/cpu-features-auditor-aarch64.h"
40 #include "aarch64/macro-assembler-aarch64.h"
41 #include "aarch64/simulator-aarch64.h"
51 // --generate_test_trace.
[all …]
/third_party/node/test/parallel/
Dtest-buffer-alloc.js5 const vm = require('vm'); constant
19 b[0] = -1;
90 // Try to create 0-length buffers. Should not throw.
107 // Try to write a 0-length string beyond the end of b
111 assert.throws(() => b.write('a', -1), outOfRangeError);
117 assert.throws(() => b.write('a', -1), outOfRangeError);
179 // UTF-8 slice test
219 // Also from a non-pooled instance
259 // Test for proper UTF-8 Encoding
270 ['ucs2', 'ucs-2', 'utf16le', 'utf-16le'].forEach((encoding) => {
[all …]
/third_party/node/deps/cares/
DCHANGES1 Changelog for the c-ares project. Generated with git2changes.pl
6 - [Brad House brought this change]
12 - [Brad House brought this change]
14 Merge pull request from GHSA-mg26-v6qh-x48q
16 - [Oliver Welsh brought this change]
20 Hello, I work on an application for Microsoft which uses c-ares to
51 - `ContainerNoDfltSvrEmptyInit` to test that initialization fails when
53 - `ContainerNoDfltSvrFullInit` to test that initialization still
54 succeeds when the flag is set but other nameservers are available.
63 ---------
[all …]
/third_party/python/Objects/
Dobmalloc.c86 /* bpo-35053: Declare tracemalloc configuration here rather than
153 MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); in _PyObject_ArenaMmap()
249 return -1; in pymem_set_default_allocator()
276 /* PYTHONMALLOC is empty or is not set or ignored (-E/-I command line in _PyMem_GetAllocatorName()
302 return -1; in _PyMem_GetAllocatorName()
362 return -1; in _PyMem_SetupAllocators()
531 allocator->ctx = NULL; in PyMem_GetAllocator()
532 allocator->malloc = NULL; in PyMem_GetAllocator()
533 allocator->calloc = NULL; in PyMem_GetAllocator()
534 allocator->realloc = NULL; in PyMem_GetAllocator()
[all …]
/third_party/node/doc/changelogs/
DCHANGELOG_V7.md3 <!--lint disable maximum-line-length no-literal-urls prohibited-strings-->
32 * Other Versions
54 ## 2017-07-11, Version 7.10.1 (Current), @evanlucas
58 <https://nodejs.org/en/blog/vulnerability/july-2017-security-releases/>
64 * Disable V8 snapshots - The hashseed embedded in the snapshot is
70 * CVE-2017-1000381 - The c-ares function ares\_parse\_naptr\_reply(),
80 …e/commit/ff587deb54)] - **build**: disable V8 snapshots (Ali Ijaz Sheikh) [nodejs/node-private#84]…
81 …a82960e76)] - **deps**: cherry-pick 9478908a49 from cares upstream (David Drysdale) [nodejs/node-p…
82 …ommit/b5bf5e8086)] - **test**: verify hash seed uniqueness (Ali Ijaz Sheikh) [nodejs/node-private#…
86 ## 2017-05-02, Version 7.10.0 (Current), @evanlucas
[all …]
DCHANGELOG_V18.md3 <!--lint disable maximum-line-length no-literal-urls prohibited-strings-->
49 * Other Versions
71 ## 2024-04-03, Version 18.20.1 'Hydrogen' (LTS), @RafaelGSS
77 * CVE-2024-27983 - Assertion failed in node::http2::Http2Session::\~Http2Session() leads to HTTP/2 …
78 * CVE-2024-27982 - HTTP Request Smuggling via Content Length Obfuscation - (Medium)
84 …60d24938de)] - **deps**: update undici to v5.28.4 (Matteo Collina) [nodejs-private/node-private#57…
85 …f)] - **http**: do not allow OBS fold in headers by default (Paolo Insogna) [nodejs-private/node-p…
86 …] - **src**: ensure to close stream when destroying session (Anna Henningsen) [nodejs-private/node
90 ## 2024-03-26, Version 18.20.0 'Hydrogen' (LTS), @richardlau
101 `assert` keyword, which will be removed in a future semver-major Node.js
[all …]
DCHANGELOG_V6.md3 <!--lint disable maximum-line-length no-literal-urls prohibited-strings-->
63 * Other Versions
89 ## 2019-04-03, Version 6.17.1 'Boron' (LTS), @BethGriggs
91 Node 6 is due to go End-of-Life on 2019-04-30.
100 * \[[`c9d21a0c10`](https://github.com/nodejs/node/commit/c9d21a0c10)] - **build**: set `-blibpath:`…
101 * \[[`9ba5fd6bad`](https://github.com/nodejs/node/commit/9ba5fd6bad)] - **build**: only check REPLA…
102 * \[[`1371a6f88b`](https://github.com/nodejs/node/commit/1371a6f88b)] - **doc**: simplify CODE\_OF\…
103 * \[[`ad62971573`](https://github.com/nodejs/node/commit/ad62971573)] - **doc**: document that addM…
104 * \[[`8080a9bf40`](https://github.com/nodejs/node/commit/8080a9bf40)] - **http**: fix error check i…
105 * \[[`aedc7120ea`](https://github.com/nodejs/node/commit/aedc7120ea)] - **src**: fix bootstrap\_nod…
[all …]
DCHANGELOG_IOJS.md3 <!--lint disable maximum-line-length no-literal-urls prohibited-strings-->
64 * Other Versions
86 ## 2015-09-15, io.js Version 3.3.1 @rvagg
95 * **node-gyp**: Float v3.0.3 which has improved support for Node.js and io.js v0.10 to v4+ (Rod Vag…
97 …/node-v0.x-archive#8751](https://github.com/nodejs/node-v0.x-archive/pull/8751) [nodejs/node-v0.x-
101 See <https://github.com/nodejs/io.js/labels/confirmed-bug> for complete and current list of known i…
112 * \[[`b73ff52fe6`](https://github.com/nodejs/node/commit/b73ff52fe6)] - **bindings**: close after r…
113 * \[[`aa1140e59a`](https://github.com/nodejs/node/commit/aa1140e59a)] - **buffer**: SlowBuffer only…
114 * \[[`574475d56e`](https://github.com/nodejs/node/commit/574475d56e)] - **build**: clean up the gen…
115 * \[[`aa0001271e`](https://github.com/nodejs/node/commit/aa0001271e)] - **build**: remote commands …
[all …]
DCHANGELOG_V13.md3 <!--lint disable maximum-line-length no-literal-urls prohibited-strings-->
32 * Other Versions
54 ## 2020-04-29, Version 13.14.0 (Current), @BridgeAR
61 * **vm**:
73 * \[[`52d8afc07e`](https://github.com/nodejs/node/commit/52d8afc07e)] - **(SEMVER-MINOR)** **async\…
74 * \[[`b304df97ff`](https://github.com/nodejs/node/commit/b304df97ff)] - **(SEMVER-MINOR)** **async\…
75 * \[[`a1178b6c5b`](https://github.com/nodejs/node/commit/a1178b6c5b)] - **buffer**: add type check …
76 * \[[`d9378747ae`](https://github.com/nodejs/node/commit/d9378747ae)] - **buffer**: mark pool Array…
77 * \[[`9bcfc8ed58`](https://github.com/nodejs/node/commit/9bcfc8ed58)] - **buffer,n-api**: fix doubl…
78 * \[[`606719fa16`](https://github.com/nodejs/node/commit/606719fa16)] - **build**: fix vcbuild erro…
[all …]

12