Home
last modified time | relevance | path

Searched +full:- +full:- +full:output +full:- +full:format (Results 1 – 25 of 1201) sorted by relevance

12345678910>>...49

/third_party/alsa-lib/src/
Doutput.c2 * \file output.c
3 * \brief Generic stdio-like output interface
4 * \author Abramo Bagnara <abramo@alsa-project.org>
7 * Generic stdio-like output interface
10 * Output object
11 * Copyright (c) 2000 by Abramo Bagnara <abramo@alsa-project.org>
26 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
38 int (*close)(snd_output_t *output);
39 int (*print)(snd_output_t *output, const char *format, va_list args);
40 int (*puts)(snd_output_t *output, const char *str);
[all …]
/third_party/skia/m133/third_party/externals/icu/source/test/testdata/
Dnumberformattestspecification.txt3 // Copyright (C) 2015-2016, International Business Machines
9 // per-test field names, and finally the test specific field values, 1 test
16 // P = Properties-based ICU4J (bypasses DecimalFormat wrapper)
18 // For more information on the format of this file, including all the available
20 // https://docs.google.com/document/d/1T2P0p953_Lh1pRwo-5CuPVrHlIBa_wcXElG-Hhg_WHM/edit?usp=sharing
23 set locale ar-EG
24 set pattern +0;-#
26 format output breaks
28 -6 \u061C-\u0666 K
32 set format 1234.567
[all …]
/third_party/openssl/test/recipes/
D80-test_cms.t2 # Copyright 2015-2023 The OpenSSL Project Authors. All Rights Reserved.
35 my @legacyprov = ("-provider-path", $provpath,
36 "-provider", "default",
37 "-provider", "legacy" );
38 my @defaultprov = ("-provider-path", $provpath,
39 "-provider", "default");
44 my $datadir = srctop_dir("test", "recipes", "80-test_cms_data");
45 my $smdir = srctop_dir("test", "smime-certs");
58 @config = ( "-config", srctop_file("test", "fips-and-base.cnf") );
63 my @prov = ("-provider-path", $provpath,
[all …]
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/minddata/dataset/kernels/image/dvpp/utils/
DDvppCommon.cc2 * Copyright 2020-2023 Huawei Technologies Co., Ltd
8 * http://www.apache.org/licenses/LICENSE-2.0
32 constexpr int32_t kTimeLimit = -1;
76 // channelId: 0-15 in InitVdec()
104 MS_LOG(ERROR) << "Failed to set vdec output format, ret = " << ret << "."; in InitVdec()
179 RELEASE_DVPP_DATA(cropImage_->data); in ReleaseDvppBuffer()
182 RELEASE_DVPP_DATA(resizedImage_->data); in ReleaseDvppBuffer()
185 RELEASE_DVPP_DATA(decodedImage_->data); in ReleaseDvppBuffer()
188 RELEASE_DVPP_DATA(inputImage_->data); in ReleaseDvppBuffer()
191 RELEASE_DVPP_DATA(encodedImage_->data); in ReleaseDvppBuffer()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DMsgPackWriter.h1 //===- MsgPackWriter.h - Simple MsgPack writer ------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
17 /// raw_ostream output = GetOutputStream();
18 /// msgpack::Writer MPWriter(output);
26 //===----------------------------------------------------------------------===//
39 /// Writes MessagePack objects to an output stream, one at a time.
48 /// \param OS stream to output MessagePack objects to.
55 /// Write a \em Nil to the output stream.
57 /// The output will be the \em nil format.
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Dsubstitute.h8 // https://www.apache.org/licenses/LICENSE-2.0
16 // -----------------------------------------------------------------------------
18 // -----------------------------------------------------------------------------
21 // substitutions using a format string with positional notation:
24 // Unlike printf-style format specifiers, `Substitute()` functions do not need
26 // following the format string, such as strings, string_views, ints,
30 // `Substitute()` does not allow you to specify *how* to format a value, beyond
31 // the default conversion to string. For example, you cannot format an integer
34 // The format string uses positional identifiers indicated by a dollar sign ($)
36 // use at that location within the format string.
[all …]
/third_party/protobuf/third_party/abseil-cpp/absl/strings/
Dsubstitute.h8 // https://www.apache.org/licenses/LICENSE-2.0
16 // -----------------------------------------------------------------------------
18 // -----------------------------------------------------------------------------
21 // substitutions using a format string with positional notation:
24 // Unlike printf-style format specifiers, `Substitute()` functions do not need
26 // following the format string, such as strings, string_views, ints,
30 // `Substitute()` does not allow you to specify *how* to format a value, beyond
31 // the default conversion to string. For example, you cannot format an integer
34 // The format string uses positional identifiers indicated by a dollar sign ($)
36 // use at that location within the format string.
[all …]
/third_party/rust/rust/tests/run-pass-valgrind/unsized-locals/
Dby-value-trait-objects-rust-call2.rs6 type Output; typedef
7 extern "rust-call" fn call_once(self, args: Args) -> Self::Output; in call_once() argument
13 type Output = String; typedef
14 extern "rust-call" fn call_once(self, (s1, s2): (String, Box<str>)) -> Self::Output { in call_once() argument
17 format!("hello") in call_once()
24 type Output = String; typedef
25 extern "rust-call" fn call_once(self, (s1, s2): (String, Box<str>)) -> Self::Output { in call_once() argument
28 format!("{}", self.0) in call_once()
35 type Output = String; typedef
36 extern "rust-call" fn call_once(self, (s1, s2): (String, Box<str>)) -> Self::Output { in call_once() argument
[all …]
Dby-value-trait-objects-rust-call.rs6 type Output; typedef
7 extern "rust-call" fn call_once(self, args: Args) -> Self::Output; in call_once() argument
13 type Output = String; typedef
14 extern "rust-call" fn call_once(self, (): ()) -> Self::Output { in call_once() argument
15 format!("hello") in call_once()
22 type Output = String; typedef
23 extern "rust-call" fn call_once(self, (): ()) -> Self::Output { in call_once() argument
24 format!("{}", self.0) in call_once()
31 type Output = String; typedef
32 extern "rust-call" fn call_once(self, (): ()) -> Self::Output { in call_once() argument
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/
Dnumberformattestspecification.txt3 // Copyright (C) 2015-2016, International Business Machines
9 // per-test field names, and finally the test specific field values, 1 test
16 // P = Properties-based ICU4J (bypasses DecimalFormat wrapper)
18 // For more information on the format of this file, including all the available
20 // https://docs.google.com/document/d/1T2P0p953_Lh1pRwo-5CuPVrHlIBa_wcXElG-Hhg_WHM/edit?usp=sharing
23 set locale ar-EG
24 set pattern +0;-#
26 format output breaks
28 -6 \u061C-\u0666 K
32 set format 1234.567
[all …]
/third_party/icu/icu4c/source/test/testdata/
Dnumberformattestspecification.txt3 // Copyright (C) 2015-2016, International Business Machines
9 // per-test field names, and finally the test specific field values, 1 test
16 // P = Properties-based ICU4J (bypasses DecimalFormat wrapper)
18 // For more information on the format of this file, including all the available
20 // https://docs.google.com/document/d/1T2P0p953_Lh1pRwo-5CuPVrHlIBa_wcXElG-Hhg_WHM/edit?usp=sharing
23 set locale ar-EG
24 set pattern +0;-#
26 format output breaks
28 -6 \u061C-\u0666 K
32 set format 1234.567
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/resources/ohos/global/icu/dev/data/
Dnumberformattestspecification.txt3 // Copyright (C) 2015-2016, International Business Machines
9 // per-test field names, and finally the test specific field values, 1 test
16 // P = Properties-based ICU4J (bypasses DecimalFormat wrapper)
18 // For more information on the format of this file, including all the available
20 // https://docs.google.com/document/d/1T2P0p953_Lh1pRwo-5CuPVrHlIBa_wcXElG-Hhg_WHM/edit?usp=sharing
23 set locale ar-EG
24 set pattern +0;-#
26 format output breaks
28 -6 \u061C-\u0666 K
32 set format 1234.567
[all …]
/third_party/skia/third_party/externals/libjpeg-turbo/
Ddjpeg.13 djpeg \- decompress a JPEG file to an image file
17 and produces an image file on the standard output. PBMPLUS (PPM/PGM), BMP,
18 GIF, or Targa output format can be selected.
21 .B \-grayscale
23 .B \-gray
28 .B \-BMP
37 .BI \-colors " N"
39 the output image, so that it can be displayed on a colormapped display or
40 stored in a colormapped file format. For example, if you have an 8-bit
43 .BI \-quantize " N"
[all …]
/third_party/openGLES/extensions/QCOM/
DQCOM_motion_estimation.txt49 output texture containing the corresponding motion vectors.
55 uint output);
59 uint output,
74--------- ---- ----------- ------------- -----------
84 uint output);
88 uint output,
93 the <output> texture.
96 the underlying format contain a luminance plane. The <ref> and <target> dimension must
100 The resulting motion vectors are stored in a 2D texture <output> of the format GL_RGBA16F,
101 ready to be used by other application shaders and stages. While <output> can have multiple
[all …]
/third_party/skia/m133/third_party/externals/libwebp/man/
Ddwebp.11 .\" Hey, EMACS: -*- nroff -*-
4 dwebp \- decompress a WebP file to an image file
19 .B \-h
22 .B \-version
25 .BI \-o " string
26 Specify the name of the output file (as PNG format by default).
27 Using "-" as output name will direct output to 'stdout'.
29 .BI \-\- " string
31 file starts with an '\-' for instance. This option must appear \fBlast\fP.
32 Any other options afterward will be ignored. If the input file is "\-",
[all …]
/third_party/skia/third_party/externals/libwebp/man/
Ddwebp.11 .\" Hey, EMACS: -*- nroff -*-
4 dwebp \- decompress a WebP file to an image file
19 .B \-h
22 .B \-version
25 .BI \-o " string
26 Specify the name of the output file (as PNG format by default).
27 Using "-" as output name will direct output to 'stdout'.
29 .BI \-\- " string
31 file starts with an '\-' for instance. This option must appear \fBlast\fP.
32 Any other options afterward will be ignored. If the input file is "\-",
[all …]
/third_party/bounds_checking_function/src/
Dsnprintf_s.c2 * Copyright (c) Huawei Technologies Co., Ltd. 2014-2021. All rights reserved.
8 * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
12 * Create: 2014-02-25
21 * except for the parameter destMax/count and the explicit runtime-constraints violation
24 * and output according to the corresponding format specification in format.
29 * strDest Storage location for the output.
30 * destMax The size of the storage location for output. Size
33 * format Format-control string.
36 * <OUTPUT PARAMETERS>
41 * return -1 if an error occurs.
[all …]
/third_party/skia/m133/third_party/externals/icu/source/i18n/unicode/
Dnumfmt.h5 * Copyright (C) 1997-2016, International Business Machines Corporation and others.
39 #include "unicode/format.h"
69 * NumberFormat helps you to format and parse numbers for any locale.
71 * for decimal points, thousands-separators, or even the particular
72 * decimal digits used, or whether the number format is even decimal.
74 * To format a number for the current Locale, use one of the static
88 * nf->format(myNumber, myString);
96 * the format and use it multiple times so that the system doesn't
103 * for (int32_t number: {123, 3333, -1234567}) {
104 * nf->format(number, myString);
[all …]
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
Dnumfmt.h5 * Copyright (C) 1997-2016, International Business Machines Corporation and others.
39 #include "unicode/format.h"
69 * NumberFormat helps you to format and parse numbers for any locale.
71 * for decimal points, thousands-separators, or even the particular
72 * decimal digits used, or whether the number format is even decimal.
74 * To format a number for the current Locale, use one of the static
88 * nf->format(myNumber, myString);
96 * the format and use it multiple times so that the system doesn't
103 * for (int32_t number: {123, 3333, -1234567}) {
104 * nf->format(number, myString);
[all …]
/third_party/icu/icu4c/source/i18n/unicode/
Dnumfmt.h5 * Copyright (C) 1997-2016, International Business Machines Corporation and others.
39 #include "unicode/format.h"
69 * NumberFormat helps you to format and parse numbers for any locale.
71 * for decimal points, thousands-separators, or even the particular
72 * decimal digits used, or whether the number format is even decimal.
74 * To format a number for the current Locale, use one of the static
88 * nf->format(myNumber, myString);
96 * the format and use it multiple times so that the system doesn't
103 * for (int32_t number: {123, 3333, -1234567}) {
104 * nf->format(number, myString);
[all …]
/third_party/mindspore/mindspore-src/source/tests/ut/python/dataset/
Dtest_minddataset_sampler.py1 # Copyright 2019-2022 Huawei Technologies Co., Ltd
7 # http://www.apache.org/licenses/LICENSE-2.0
33 file_name = os.environ.get('PYTEST_CURRENT_TEST').split(':')[-1].split(' ')[0]
34 paths = ["{}{}".format(file_name, str(x).rjust(1, '0'))
38 if os.path.exists("{}".format(x)):
39 os.remove("{}".format(x))
40 if os.path.exists("{}.db".format(x)):
41 os.remove("{}.db".format(x))
55 os.remove("{}".format(x))
56 os.remove("{}.db".format(x))
[all …]
/third_party/ffmpeg/doc/
Dffprobe.texi1 \input texinfo @c -*- texinfo -*-
2 @documentencoding UTF-8
21 human- and machine-readable fashion.
23 For example it can be used to check the format of the container used
24 by a multimedia stream and the format and type of each media stream
31 If no output is specified as output with @option{o} ffprobe will write
42 ffprobe output is designed to be easily parsable by a textual filter,
48 name. See the output of @option{sections}.
51 and printed in the corresponding "FORMAT", "STREAM" or "PROGRAM_STREAM"
59 @include fftools-common-opts.texi
[all …]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
Dsyncgenerator.py1 #!/usr/bin/python3 -i
3 # Copyright 2013-2024 The Khronos Group Inc.
5 # SPDX-License-Identifier: Apache-2.0
21 """SyncOutputGenerator - subclass of OutputGenerator.
25 ---- methods ----
26 SyncOutputGenerator(errFile, warnFile, diagFile) - args as for
28 ---- methods overriding base class ----
65 - directory - subdirectory to put file in
66 - basename - base name of the file
67 - contents - contents of the file (Asciidoc boilerplate aside)"""
[all …]
/third_party/mindspore/mindspore-src/source/third_party/securec/src/
Dsnprintf_s.c8 * http://www.apache.org/licenses/LICENSE-2.0
23 * except for the parameter destMax/count and the explicit runtime-constraints violation
26 * and output according to the corresponding format specification in format.
31 * strDest Storage location for the output.
32 * destMax The size of the storage location for output. Size
35 * format Format-control string.
38 * <OUTPUT PARAMETERS>
43 * return -1 if an error occurs.
44 * return -1 if count < destMax and the output string has been truncated
46 …* If there is a runtime-constraint violation, strDest[0] will be set to the '\0' when strDest and …
[all …]
/third_party/spirv-tools/
Dbuild_defs.bzl1 """Constants and macros for spirv-tools BUILD."""
4 "-DSPIRV_CHECK_CONTEXT",
5 "-DSPIRV_COLOR_TERMINAL",
9 "-DSPIRV_LINUX",
10 "-DSPIRV_TIMER_ENABLED",
11 "-fvisibility=hidden",
12 "-fno-exceptions",
13 "-fno-rtti",
14 "-Wall",
15 "-Wextra",
[all …]

12345678910>>...49