Home
last modified time | relevance | path

Searched +full:sometimes +full:- +full:uninitialized (Results 1 – 25 of 158) sorted by relevance

1234567

/third_party/rust/crates/rustix/src/backend/linux_raw/
Dmod.rs7 //! These files performs raw system calls, and sometimes passes them
8 //! uninitialized memory buffers. The signatures in this file are currently
12 //! Some of this could be auto-generated from the Linux header file
14 //! such as which pointers are array slices, out parameters, or in-out
66 // libc-like definitions in a module called `c`.
Dvdso_wrappers.rs3 //! <https://man7.org/linux/man-pages/man7/vdso.7.html>
7 //! Similar to syscalls.rs, this file performs raw system calls, and sometimes
8 //! passes them uninitialized memory buffers. This file also calls vDSO
29 pub(crate) fn clock_gettime(which_clock: ClockId) -> __kernel_timespec { in clock_gettime()
46 pub(crate) fn clock_gettime_dynamic(which_clock: DynamicClockId<'_>) -> io::Result<Timespec> { in clock_gettime_dynamic()
71 const EINVAL: c::c_int = -(c::EINVAL as c::c_int); in clock_gettime_dynamic()
92 pub(in crate::backend) unsafe fn syscall0(nr: SyscallNumber<'_>) -> RetReg<R0> { in syscall0()
104 ) -> RetReg<R0> { in syscall1()
116 ) -> ! { in syscall1_noreturn()
129 ) -> RetReg<R0> { in syscall2()
[all …]
/third_party/skia/gn/
Doh_skia.gni6 # http://www.apache.org/licenses/LICENSE-2.0
46 "-Wno-deprecated-declarations",
47 "-Wno-pessimizing-move",
48 "-Wno-return-type",
49 "-Wno-sign-compare",
50 "-Wno-sometimes-uninitialized",
51 "-Wno-unknown-pragmas",
52 "-Wno-unused-function",
53 "-Wno-unused-private-field",
54 "-Wno-unused-variable",
[all …]
/third_party/libxml2/
DBUILD.gn6 # http://www.apache.org/licenses/LICENSE-2.0
20 "${target_gen_dir}/libxml2-2.9.14/config.h.cmake.in",
21 "${target_gen_dir}/libxml2-2.9.14/include/libxml/xmlversion.h.in",
22 "${target_gen_dir}/libxml2-2.9.14/DOCBparser.c",
23 "${target_gen_dir}/libxml2-2.9.14/HTMLparser.c",
24 "${target_gen_dir}/libxml2-2.9.14/HTMLtree.c",
25 "${target_gen_dir}/libxml2-2.9.14/SAX.c",
26 "${target_gen_dir}/libxml2-2.9.14/SAX2.c",
27 "${target_gen_dir}/libxml2-2.9.14/buf.c",
28 "${target_gen_dir}/libxml2-2.9.14/c14n.c",
[all …]
/third_party/lame/
DBUILD.gn6 # http://www.apache.org/licenses/LICENSE-2.0
20 "-O2",
21 "-Wall",
22 "-Wno-sign-compare",
23 "-Wimplicit-function-declaration",
24 "-Wno-parentheses",
25 "-Wno-string-conversion",
26 "-Wno-string-plus-int",
27 "-Wno-asm-operand-widths",
28 "-Wno-pointer-sign",
[all …]
/third_party/mesa3d/.gitlab-ci/build/
Dgitlab-ci.yml2 .build-common:
3 extends: .build-rules
10 - _build/meson-logs/*.txt
11 - _build/meson-logs/strace
12 - shader-db
15 .build-linux:
16 extends: .build-common
23 - !reference [default, before_script]
24 - export PATH="/usr/lib/ccache:$PATH"
25 - export CCACHE_BASEDIR="$PWD"
[all …]
/third_party/alsa-utils/
DBUILD.gn6 # http://www.apache.org/licenses/LICENSE-2.0
22 "-Wno-sign-compare",
23 "-Wno-implicit-function-declaration",
24 "-Wno-parentheses",
25 "-Wno-string-conversion",
26 "-Wno-string-plus-int",
27 "-Wno-asm-operand-widths",
28 "-Wno-pointer-sign",
29 "-Wno-deprecated-declarations",
30 "-Wno-implicit-int",
[all …]
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-server/
Dmain.c2 * lws-minimal-secure-streams-server
4 * Written in 2010-2020 by Andy Green <andy@warmcat.com>
22 "\"schema-version\":" "1,"
39 * Need to be in order from root cert... notice sometimes as
44 * cross-signed by an IdenTrust intermediate that's widely
198 * using a 100-y self-signed tls cert
207 "\"mime\": \"Content-Type:\","
243 return -1; in smd_cb()
252 return -1; in smd_cb()
273 memset(&info, 0, sizeof info); /* otherwise uninitialized garbage */ in main()
[all …]
/third_party/protobuf/src/google/protobuf/
Dmessage_lite.h1 // Protocol Buffers - Google's data interchange format
3 // https://developers.google.com/protocol-buffers/
37 // and non-lite) protocol message objects.
94 // GOOGLE_CHECK-fail, because the full size_t resolution is still returned from
102 // directly on 64-bit platforms because it avoids making the compiler emit a
124 // 1. The object is "uninitialized" to begin with.
126 // uninitialized. After the call, the object becomes "initialized".
129 // After the call, the object becomes uninitialized.
140 void Destruct() { get_mutable()->~T(); } in Destruct()
183 // This interface is implemented by all protocol message objects. Non-lite
[all …]
/third_party/libsnd/
DNEWS.OLD1 Version 1.0.31 (2021-01-24)
38 * Fix memory leak in wav_read_smpl_chunk() function, credit to OSS-Fuzz.
39 * Fix aiff_read_header() memory leak(), credit to OSS-Fuzz.
40 * Fix leak in wav_read_header(), credit to OSS-Fuzz.
41 * Fix leak in wavlike_read_cart_chunk(), credit to OSS-Fuzz.
42 * Fix memory leak in wav_read_acid_chunk(), credit to OSS-Fuzz.
43 * Fix memory leak in aiff_read_basc_chunk(), credit to OSS-Fuzz.
44 * Fix memory leak in wavlike_read_peak_chunk(), credit to OSS-Fuzz.
45 * Fix memory leak in aiff_read_header(), credit to OSS-Fuzz.
46 * Fix use of uninitialized value in exif_subchunk_parse(), credit to OSS-Fuzz.
[all …]
/third_party/alsa-lib/
DBUILD.gn6 # http://www.apache.org/licenses/LICENSE-2.0
18 "//third_party/alsa-lib/include",
19 "//third_party/alsa-lib/include/sound",
20 "//third_party/alsa-lib/include/uapi",
21 "//third_party/alsa-lib/src/pcm",
22 "//third_party/alsa-lib/src/ucm",
23 "//third_party/alsa-lib/src/mixer",
24 "//third_party/alsa-lib/src/seq",
25 "//third_party/alsa-lib/src/hwdep",
26 "//third_party/alsa-lib/src/rawmidi",
[all …]
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-seq/
Dminimal-secure-streams.c2 * lws-minimal-secure-streams-seq
4 * Written in 2010-2020 by Andy Green <andy@warmcat.com>
14 * This is the "secure streams" api equivalent of minimal-http-client...
22 * ------ app ------ process
23 * ---- sequencer ---- process
24 * --- secure stream --- process
25 * ------- wsi ------- connection
27 * see minimal-secure-streams for a similar example without the sequencer.
39 "\"schema-version\":" "1,"
56 * Need to be in order from root cert... notice sometimes as
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_subtexture.txt25 This extension allows a contiguous portion of an already-existing
102 xoffset < -TEXTURE_BORDER
103 (xoffset + width) > (TEXTURE_WIDTH - TEXTURE_BORDER)
104 yoffset < -TEXTURE_BORDER
105 (yoffset + height) > (TEXTURE_HEIGHT - TEXTURE_BORDER)
106 zoffset < -TEXTURE_BORDER
107 (zoffset + depth) > (TEXTURE_DEPTH_EXT - TEXTURE_BORDER)
129 -----------
131 It is sometimes useful to define the parameters of a texture image
140 It is permissible to use such an uninitialized texture image, the
[all …]
/third_party/openGLES/extensions/EXT/
DEXT_subtexture.txt25 This extension allows a contiguous portion of an already-existing
102 xoffset < -TEXTURE_BORDER
103 (xoffset + width) > (TEXTURE_WIDTH - TEXTURE_BORDER)
104 yoffset < -TEXTURE_BORDER
105 (yoffset + height) > (TEXTURE_HEIGHT - TEXTURE_BORDER)
106 zoffset < -TEXTURE_BORDER
107 (zoffset + depth) > (TEXTURE_DEPTH_EXT - TEXTURE_BORDER)
129 -----------
131 It is sometimes useful to define the parameters of a texture image
140 It is permissible to use such an uninitialized texture image, the
[all …]
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
DDepthStencilLoadOpTests.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
173 // Check that clearing a non-zero mip level works at all.
175 // TODO(crbug.com/dawn/838): Sampling from the non-zero mip does not work. in TEST_P()
178 // TODO(crbug.com/dawn/838): Copying from the non-zero mip here sometimes returns uninitialized in TEST_P()
193 // TODO(crbug.com/dawn/838): Sampling from the non-zero mip does not work. in TEST_P()
213 // TODO(crbug.com/dawn/838): Sampling from the non-zero mip does not work. in TEST_P()
/third_party/skia/src/core/
DSkArenaAlloc.h4 * Use of this source code is governed by a BSD-style license that can be
28 // much unused slop, particularly on Android. Instead we'll follow a Fibonacci-like
46 SkASSERT_RELEASE(fBlockUnitSize < std::min(kMaxSize, (1u << 26) - 1));
68 // (optional) user-provided block of memory, and when that's exhausted it allocates on the heap,
70 // fits in the user-provided block, SkArenaAlloc never uses the heap, and if it fits in
84 // If the program only sometimes allocates memory, use the following pattern.
98 // typical per block overhead of 8 bytes. For non-POD objects there is a per item overhead of 4
99 // bytes. For arrays of non-POD objects there is a per array overhead of typically 8 bytes. There
100 // is an addition overhead when switching from POD data to non-POD data of typically 8 bytes.
103 // recursion of the RunDtorsOnBlock to be limited to O(log size-of-memory). Block size grow using
[all …]
DSkScalerContext.h4 * Use of this source code is governed by a BSD-style license that can be
48 * To allow this to be forward-declared, it must be its own typename, rather
67 //These describe the parameters to create (uniquely identify) the pre-blend.
94 return SkIntToScalar(fContrast) / ((1 << 8) - 1); in getContrast()
98 fContrast = SkScalarRoundToInt(c * ((1 << 8) - 1)); in setContrast()
152 /** The kind of scale which will be applied by the underlying port (pre-matrix). */
169 * hinting, and sometimes true for other properties as well.
171 * The second (optional) decomposition is of 'remaining' into a non-rotational part
220 // TODO: rename SkScalerContextEffects -> SkStrikeEffects
305 /** Get the associated gamma lookup table. The 'data' pointer must point to pre-allocated
[all …]
/third_party/libuv/src/win/
Dprocess-stdio.c29 #include "handle-inl.h"
70 * the parent process. Don't check for errors - the stdio handles may not be
78 /* Make the windows stdio handles non-inheritable. */ in uv_disable_stdio_inheritance()
91 /* Make inherited CRT FDs non-inheritable. */ in uv_disable_stdio_inheritance()
102 /* _get_osfhandle will sometimes return -2 in case of an error. This seems to in uv__duplicate_handle()
104 * NULL. Unfortunately DuplicateHandle will happily duplicate (HANDLE) -2, so in uv__duplicate_handle()
106 * Therefore we filter out known-invalid handles here. */ in uv__duplicate_handle()
109 handle == (HANDLE) -2) { in uv__duplicate_handle()
134 if (fd == -1) { in uv__duplicate_fd()
176 count = options->stdio_count; in uv__stdio_create()
[all …]
/third_party/musl/
DWHATSNEW1 0.5.0 - initial release
5 0.5.9 - signal ABI bugfix, various cleanup and fixes:
25 many internal improvements have been made to the syscall-related code
30 0.6.0 - x86_64 port, various important bugs fixed
48 0.7.0 - major improvements to posix conformance and completeness
61 malloc(0) now returns a non-null pointer.
64 hanging), and non-default-type mutex behavior.
67 libgcc with dwarf2 unwind support, and possibly other low-level tools.
69 improved musl-gcc compiler wrapper.
76 0.7.1 - improvements to completeness, bug fixes
[all …]
/third_party/googletest/docs/
Dfaq.md7 [the `DISABLED_` prefix](advanced.md#temporarily-disabling-tests), in addition
13 1. any identifier that starts with an `_` followed by an upper-case letter, and
25 1. If `TestSuiteName` starts with an `_` followed by an upper-case letter (say,
36 (Actually, `TestSuiteName` can start with `_` -- as long as the `_` isn't
37 followed by an upper-case letter. But that's getting complicated. So for
68 Due to some peculiarity of C++, it requires some non-trivial template meta
72 error-prone than necessary).
97 … interface satisfy some common requirements. Should I use typed tests or value-parameterized tests?
100 value-parameterized tests can get it done. It's really up to you the user to
109 * Value-parameterized tests can be easier to write if you need different code
[all …]
/third_party/skia/third_party/externals/angle2/include/platform/
DFeaturesGL.h3 // Use of this source code is governed by a BSD-style license that can be
25 // round-to-nearest is used (see "Conversion from Floating-Point to Framebuffer Fixed-Point" in
27 // framebuffer formats that have 1-bit alpha, work around this by using higher precision formats
31 "Issue with 1-bit alpha framebuffer formats", &members};
34 // returns GL_FRAMEBUFFER_UNSUPPORTED. Work around this by using a known color-renderable
53 // On Mac some GLSL constructs involving do-while loops cause GPU hangs, such as the following:
56 // i --;
59 // Work around this by rewriting the do-while to use another GLSL construct (block + while)
62 "Some GLSL constructs involving do-while loops cause GPU hangs", &members,
66 // Work aronud this by replace gl_VertexID with (gl_VertexID - angle_BaseVertex) when
[all …]
/third_party/ffmpeg/libavutil/
Dmem.h18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
42 * program. For example, the computing-heavy components like video decoding and
70 * // The default-alignment equivalent would be
145 * Function attribute denoting a malloc-like function.
147 …://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-g_t_0040code_007bmalloc_007d-f…
168 …cc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-g_t_0040code_007balloc_005fsize_00…
185 * All memory allocation functions have a built-in upper limit of `INT_MAX`
261 * @return Pointer to a newly-reallocated block or `NULL` if the block
298 * - It takes two size arguments and allocates `nelem * elsize` bytes,
300 * - It frees the input block in case of failure, thus avoiding the memory
[all …]
/third_party/mesa3d/src/gallium/drivers/panfrost/
Dpan_resource.c4 * Copyright (C) 2014-2017 Broadcom
5 * Copyright (C) 2018-2019 Alyssa Rosenzweig
35 #include "drm-uapi/drm_fourcc.h"
67 assert(whandle->type == WINSYS_HANDLE_TYPE_FD); in panfrost_resource_from_handle()
73 prsc = &rsc->base; in panfrost_resource_from_handle()
77 pipe_reference_init(&prsc->reference, 1); in panfrost_resource_from_handle()
78 prsc->screen = pscreen; in panfrost_resource_from_handle()
80 uint64_t mod = whandle->modifier == DRM_FORMAT_MOD_INVALID ? in panfrost_resource_from_handle()
81 DRM_FORMAT_MOD_LINEAR : whandle->modifier; in panfrost_resource_from_handle()
83 panfrost_translate_texture_dimension(templat->target); in panfrost_resource_from_handle()
[all …]
/third_party/tzdata/
Dprivate.h9 ** 1996-06-05 by Arthur David Olson.
24 support for C99-and-later callers; however, C89 support can trigger
25 latent bugs in C99-and-later callers. These macros are obsolescent,
29 support (ELS) is scheduled to end on 2028-06-30. */
51 # define static_assert(cond) extern int static_assert_check[(cond) ? 1 : -1]
58 ** To do this, compile with -DUSE_LTZ=0 and link without the tz library.
65 #define GRANDPARENTED "Local time zone must be set--see zic manual page"
69 ** You can override these in your C compiler options, e.g. '-DHAVE_GETTEXT=1'.
81 /* _Generic is buggy in pre-4.9 GCC. */
157 /* Enable strtoimax on pre-C99 Solaris 11. */
[all …]
/third_party/pcre2/pcre2/maint/
DManyConfigTests9 # While debugging, it is sometimes useful to be able to cut out some of the
13 # -noasan skip the test that uses -fsanitize=address
14 # -nousan skip the test that uses -fsanitize=undefined
15 # -nodebug skip the test that uses --enable-debug
16 # -nojit skip all JIT tests
17 # -nojitmain skip non-valgrind JIT tests
18 # -nojitvalgrind skip JIT tests with valgrind
19 # -nomain skip all the main (non-JIT) set of tests
20 # -nomainvalgrind skip the main (non-JIT) valgrind tests
21 # -notmp skip the tests in a temporary directory
[all …]

1234567