| /third_party/openssl/test/recipes/30-test_evp_data/ |
| D | evppkey_ecx.txt | 2 # Copyright 2001-2020 The OpenSSL Project Authors. All Rights Reserved. 21 PrivateKey=Alice-25519 22 -----BEGIN PRIVATE KEY----- 24 -----END PRIVATE KEY----- 26 PublicKey=Alice-25519-PUBLIC 27 -----BEGIN PUBLIC KEY----- 29 -----END PUBLIC KEY----- 31 PrivPubKeyPair = Alice-25519:Alice-25519-PUBLIC 33 PrivateKey=Bob-25519 34 -----BEGIN PRIVATE KEY----- [all …]
|
| /third_party/iptables/iptables/ |
| D | xtables-monitor.8.in | 1 .TH XTABLES\-MONITOR 8 "" "@PACKAGE_STRING@" "@PACKAGE_STRING@" 3 xtables-monitor \(em show changes to rule set and trace-events 5 \fBxtables\-monitor\fP [\fB\-t\fP] [\fB\-e\fP] [\fB\-4\fP|\fB|\-6\fB] 10 .B xtables-monitor 13 .B xtables-monitor 14 will run until the user aborts execution, typically by using CTRL-C. 17 \fB\-e\fP, \fB\-\-event\fP 23 \fB\-t\fP, \fB\-\-trace\fP 27 \fB\-4\fP 28 Restrict output to IPv4. [all …]
|
| /third_party/mbedtls/include/mbedtls/ |
| D | psa_util.h | 8 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later 42 * \param output The buffer to fill. It must have room for 44 * \param output_size The number of bytes to write to \p output. 46 * large. It is guaranteed to accept any output size 58 unsigned char *output, 94 * \param bits The bit-length of a private key on \p curve. 146 /** Convert an ECDSA signature from raw format to DER ASN.1 format. 149 * \param raw Buffer that contains the signature in raw format. 150 * \param raw_len Length of \p raw in bytes. This must be 153 * output. It can overlap with raw buffer. [all …]
|
| D | rsa.h | 4 * \brief This file provides an API for the RSA public-key cryptosystem. 6 * The RSA public-key cryptosystem is defined in <em>Public-Key 8 * and <em>Public-Key Cryptography Standards (PKCS) #1 v2.1: 14 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later 33 #define MBEDTLS_ERR_RSA_BAD_INPUT_DATA -0x4080 35 #define MBEDTLS_ERR_RSA_INVALID_PADDING -0x4100 37 #define MBEDTLS_ERR_RSA_KEY_GEN_FAILED -0x4180 39 #define MBEDTLS_ERR_RSA_KEY_CHECK_FAILED -0x4200 41 #define MBEDTLS_ERR_RSA_PUBLIC_FAILED -0x4280 43 #define MBEDTLS_ERR_RSA_PRIVATE_FAILED -0x4300 [all …]
|
| /third_party/mindspore/mindspore-src/source/mindspore/lite/tools/converter/micro/coder/generator/component/ |
| D | train_component.cc | 8 * http://www.apache.org/licenses/LICENSE-2.0 24 const char micro_model_run_step_state[] = R"RAW( 28 )RAW"; 35 ofs << R"RAW( in CodeMSModelSetTrainModeCommon() 41 if (micro_model->set_train_mode == NULL) { in CodeMSModelSetTrainModeCommon() 44 return micro_model->set_train_mode(model, train); in CodeMSModelSetTrainModeCommon() 46 )RAW"; in CodeMSModelSetTrainModeCommon() 50 std::vector<Tensor *> train_outputs = ctx->graph_train_outputs(); in CodeMSModelSetTrainMode() 51 std::vector<Tensor *> eval_outputs = ctx->graph_eval_outputs(); in CodeMSModelSetTrainMode() 57 …ofs << " output_tensors[" << index << "]->type = " << EnumNameMSDataType(tensor->data_type()) <… in CodeMSModelSetTrainMode() [all …]
|
| /third_party/iptables/iptables/tests/shell/testcases/nft-only/ |
| D | 0008-basechain-policy_0 | 3 [[ $XT_MULTI == *xtables-nft-multi ]] || { echo "skip $XT_MULTI"; exit 0; } 4 set -e 6 $XT_MULTI iptables -t raw -P OUTPUT DROP 8 # make sure iptables-nft-restore can correctly handle basechain policies when 9 # they aren't set with --noflush 11 $XT_MULTI iptables-restore --noflush <<EOF 12 *raw 13 :OUTPUT - [0:0] 14 :PREROUTING - [0:0] 15 :neutron-linuxbri-OUTPUT - [0:0] [all …]
|
| /third_party/iptables/iptables/tests/shell/testcases/firewalld-restore/ |
| D | 0001-firewalld_0 | 3 $XT_MULTI iptables -w -L -n > /dev/null || exit 1 4 $XT_MULTI iptables -w2 -L -n > /dev/null || exit 1 6 echo -n '#foo' | $XT_MULTI iptables-restore -w || exit 1 9 for table in security raw mangle nat filter;do 10 $XT_MULTI iptables -w2 -t $table -L -n > /dev/null 13 $XT_MULTI iptables -w2 -p icmp --help | grep -q 'Valid ICMP Types' || exit 1 15 cat <<EOF | $XT_MULTI iptables-restore -w -n 17 -F 18 -X 19 -Z [all …]
|
| /third_party/zlib/examples/ |
| D | fitblk.c | 1 /* fitblk.c: example of fitting compressed output to a specified size 2 Not copyrighted -- provided to the public domain 8 Use fixed-size, stack-allocated raw buffers 18 nearly the requested output block size. The first pass generates 19 enough deflate blocks to produce output to fill the requested 20 output size plus a specified excess amount (see the EXCESS define 39 before filling the requested output size, then that compressed 76 unsigned char raw[RAWLEN]; in partcompress() local 80 def->avail_in = fread(raw, 1, RAWLEN, in); in partcompress() 83 def->next_in = raw; in partcompress() [all …]
|
| /third_party/mbedtls/library/ |
| D | psa_util.c | 6 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later 349 unsigned char *output, in mbedtls_psa_get_random() argument 358 psa_status_t status = psa_generate_random(output, output_size); in mbedtls_psa_get_random() 371 * \brief Convert a single raw coordinate to DER ASN.1 format. The output der 374 * \param raw_buf Buffer containing the raw coordinate to be 379 * \param der_buf_end End of the buffer used to store the DER output. 385 * \return MBEDTLS_ERR_ASN1_INVALID_DATA if the input raw 388 * \warning Raw and der buffer must not be overlapping. 403 --raw_len; in convert_raw_to_der_single_int() 410 /* Copy the raw coordinate to the end of der_buf. */ in convert_raw_to_der_single_int() [all …]
|
| /third_party/rust/rust/src/tools/miri/tests/pass/tree_borrows/ |
| D | unique.rs | 2 //@compile-flags: -Zmiri-tree-borrows -Zmiri-tag-gc=0 3 //@[uniq]compile-flags: -Zmiri-unique-is-unique 21 let raw = &mut *base as *mut u8; in main() localVariable 22 name!(raw); in main() 26 let uniq = Unique::new_unchecked(raw); in main() 28 // With `-Zmiri-unique-is-unique`, `Unique::as_ptr` (which is called by in main() 36 // (We name it twice so that we have an indicator in the output of in main() 38 // If the output shows in main() 40 // |- <XYZ: uniq> in main() 41 // '- <XYZ: uniq> in main() [all …]
|
| /third_party/vk-gl-cts/external/vulkancts/vkscserver/ |
| D | vksSerializerVKSC.hpp | 4 /*------------------------------------------------------------------------- 6 * -------------------- 14 * http://www.apache.org/licenses/LICENSE-2.0 22 *-------------------------------------------------------------------------*/ 36 s32 raw = v; in SerializeEnum() local 37 serializer.Serialize(raw); in SerializeEnum() 44 s32 raw; in SerializeEnum() local 45 serializer.Serialize(raw); in SerializeEnum() 46 v = static_cast<ENUM>(raw); in SerializeEnum() 123 string output = json::writeJSON_VkDeviceObjectReservationCreateInfo(v); in SerializeItem() local [all …]
|
| /third_party/rust/rust/tests/ui/asm/aarch64/ |
| D | bad-options.stderr | 2 --> $DIR/bad-options.rs:8:18 8 --> $DIR/bad-options.rs:10:18 13 error: asm with the `pure` option must have at least one output 14 --> $DIR/bad-options.rs:10:18 19 error: asm with the `pure` option must have at least one output 20 --> $DIR/bad-options.rs:13:33 26 --> $DIR/bad-options.rs:15:20 32 --> $DIR/bad-options.rs:22:20 35 | ^^^^^^^^^^^^ ---------------- clobber_abi 39 error: expected one of `)`, `att_syntax`, or `raw`, found `nomem` [all …]
|
| /third_party/ncurses/man/ |
| D | curs_inopts.3x | 3 .\" Copyright 2018-2023,2024 Thomas E. Dickey * 4 .\" Copyright 1998-2016,2017 Free Software Foundation, Inc. * 32 .TH curs_inopts 3X 2024-04-13 "ncurses @NCURSES_MAJOR@.@NCURSES_MINOR@" "Library calls" 63 \fB\%raw\fP, 66 \fB\%typeahead\fP \- 87 \fBint raw(void); 112 Window-specific settings are not automatically applied to new or derived 122 erase/kill character-processing 136 Note that \fB\%cbreak\fP overrides \fBraw\fP. 155 The \fB\%halfdelay\fP routine is used for half-delay mode, [all …]
|
| /third_party/flatbuffers/grpc/src/compiler/ |
| D | cpp_generator.cc | 21 return method->ClientStreaming() && !method->ServerStreaming(); in ClientOnlyStreaming() 25 return !method->ClientStreaming() && method->ServerStreaming(); in ServerOnlyStreaming() 58 if (s[s.size() - 1] != '/') { vars["l"] += '/'; } in PrintIncludes() 63 printer->Print(vars, "#include $l$$h$$r$\n"); in PrintIncludes() 71 grpc::string output; in GetHeaderPrologue() local 73 // Scope the output stream so it closes and finalizes output to the string. in GetHeaderPrologue() 74 auto printer = file->CreatePrinter(&output); in GetHeaderPrologue() 77 vars["filename"] = file->filename(); in GetHeaderPrologue() 78 vars["filename_identifier"] = FilenameIdentifier(file->filename()); in GetHeaderPrologue() 79 vars["filename_base"] = file->filename_without_ext(); in GetHeaderPrologue() [all …]
|
| /third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
| D | enum-default-bitfield.rs | 10 type Output = Self; typedef 12 fn bitor(self, other: Self) -> Self { in bitor() 23 type Output = Self; typedef 25 fn bitand(self, other: Self) -> Self { in bitand() 37 pub struct foo__bindgen_ty_1(pub ::std::os::raw::c_uint); 40 ["Size of foo"][::std::mem::size_of::<foo>() - 4usize]; 41 ["Alignment of foo"][::std::mem::align_of::<foo>() - 4usize]; 42 ["Offset of field: foo::member"][::std::mem::offset_of!(foo, member) - 0usize]; 45 fn default() -> Self { in default() 60 type Output = Self; typedef [all …]
|
| /third_party/mindspore/mindspore-src/source/mindspore/ccsrc/minddata/dataset/core/ |
| D | global_context.h | 2 * Copyright 2019-2021 Huawei Technologies Co., Ltd 8 * http://www.apache.org/licenses/LICENSE-2.0 48 static constexpr int kMaxSize = -1; 53 // - creates the single version of the GlobalContext for the first time and returns it 55 // - returns the already existing single instance of the GlobalContext 63 // @param out - The output stream to write output to 66 // << Stream output operator overload 68 // @param out - reference to the output stream being overloaded 69 // @param g_c - reference to the GlobalContext to display 70 // @return - the output stream must be returned [all …]
|
| /third_party/parse5/packages/parse5-html-rewriting-stream/lib/ |
| D | index.ts | 10 } from 'parse5-sax-parser'; 14 * Streaming [SAX](https://en.wikipedia.org/wiki/Simple_API_for_XML)-style HTML rewriter. 17 …* The rewriter uses the raw source representation of tokens if they are not modified by the user. … 18 …* HTML is not affected by parser error-recovery mechanisms as in a classical parsing-serialization… 23 * const RewritingStream = require('parse5-html-rewriting-stream'); 48 * rewriter.on('text', (_, raw) => { 49 * // Use the raw representation of text without HTML entities decoding 50 * rewriter.emitRaw(`<i>${raw}</i>`); 54 * // Assumes response is UTF-8. 77 const start = location.startOffset - droppedBufferSize; [all …]
|
| /third_party/skia/m133/third_party/externals/libpng/contrib/pngminus/ |
| D | png2pnm.c | 2 * png2pnm.c --- conversion from PNG-file to PGM/PPM-file 3 * copyright (C) 1999-2019 by Willem van Schaik <willem at schaik dot com> 30 BOOL raw, BOOL alpha); 33 BOOL raw, BOOL alpha); 46 BOOL raw = TRUE; in main() local 53 if (argv[argi][0] == '-') in main() 58 raw = FALSE; in main() 61 raw = TRUE; in main() 70 fprintf (stderr, "Error: cannot create alpha-channel file %s\n", in main() 120 if ((raw) && (fp_wr == stdout)) in main() [all …]
|
| /third_party/lame/doc/man/ |
| D | lame.1 | 3 lame \- create mp3 audio files 12 To read from stdin, use "\-" for <infile>. 13 To write to stdout, use "\-" for <outfile>. 17 .B \-r 18 Assume the input file is raw pcm. 22 with a bitwidth of 16 and stored in little-endian. 24 .B \-r, 31 .B \-x 32 Swap bytes in the input file (or output file when using 33 .B \-\-decode). [all …]
|
| /third_party/rust/rust/tests/ui/asm/x86_64/ |
| D | bad-options.stderr | 2 --> $DIR/bad-options.rs:8:18 8 --> $DIR/bad-options.rs:10:18 13 error: asm with the `pure` option must have at least one output 14 --> $DIR/bad-options.rs:10:18 19 error: asm with the `pure` option must have at least one output 20 --> $DIR/bad-options.rs:13:33 26 --> $DIR/bad-options.rs:15:20 32 --> $DIR/bad-options.rs:22:20 35 | ^^^^^^^^^^^^ ---------------- clobber_abi 40 --> $DIR/bad-options.rs:24:20 [all …]
|
| /third_party/python/Modules/_io/ |
| D | bufferedio.c | 2 An implementation of Buffered I/O as defined by PEP 3116 - "New I/O" 26 /*[clinic end generated code: output=da39a3ee5e6b4b0d input=59460b9c5639984d]*/ 39 "BlockingIOError if the underlying raw stream is in non-blocking\n" 40 "mode and not ready; unlike their raw counterparts, they will never\n" 56 data = _PyObject_CallMethod(self, attr, "n", buffer->len); in _bufferediobase_readinto_generic() 67 if (len > buffer->len) { in _bufferediobase_readinto_generic() 71 buffer->len, len); in _bufferediobase_readinto_generic() 75 memcpy(buffer->buf, PyBytes_AS_STRING(data), len); in _bufferediobase_readinto_generic() 90 /*[clinic end generated code: output=8c8cda6684af8038 input=00a6b9a38f29830a]*/ in _io__BufferedIOBase_readinto_impl() 103 /*[clinic end generated code: output=358623e4fd2b69d3 input=ebad75b4aadfb9be]*/ in _io__BufferedIOBase_readinto1_impl() [all …]
|
| /third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
| D | WireFormatTest.java | 1 // Protocol Buffers - Google's data interchange format 4 // Use of this source code is governed by a BSD-style 6 // https://developers.google.com/open-source/licenses/bsd 110 // in case writeTo(OutputStream output) invokes getSerializedSize(); in testSerializationPackedWithoutGetSerializedSize() 154 ByteArrayOutputStream output = new ByteArrayOutputStream(); in testSerializeDelimited() local 155 TestUtil.getAllSet().writeDelimitedTo(output); in testSerializeDelimited() 156 output.write(12); in testSerializeDelimited() 157 TestUtil.getPackedSet().writeDelimitedTo(output); in testSerializeDelimited() 158 output.write(34); in testSerializeDelimited() 160 ByteArrayInputStream input = new ByteArrayInputStream(output.toByteArray()); in testSerializeDelimited() [all …]
|
| /third_party/mesa3d/src/nouveau/compiler/ |
| D | meson.build | 2 # SPDX-License-Identifier: MIT 4 '-Aclippy::identity_op', 5 '-Aclippy::len_zero', 6 '-Aclippy::manual_range_contains', 8 '-Aclippy::needless_range_loop', 9 '-Aclippy::redundant_field_names', 10 '-Aclippy::upper_case_acronyms', 11 '-Aclippy::vec_box', 12 '-Aclippy::write_with_newline', 13 # warns about public function might dereference a raw pointer, but nothing is [all …]
|
| /third_party/grpc/src/compiler/ |
| D | cpp_generator.cc | 9 * http://www.apache.org/licenses/LICENSE-2.0 36 return method->ClientStreaming() && !method->ServerStreaming(); in ClientOnlyStreaming() 40 return !method->ClientStreaming() && method->ServerStreaming(); in ServerOnlyStreaming() 76 if (search_path[search_path.size() - 1] != '/') { in PrintIncludes() 83 printer->Print(vars, "#include $l$$h$$r$\n"); in PrintIncludes() 89 std::string output; in GetHeaderPrologue() local 91 // Scope the output stream so it closes and finalizes output to the string. in GetHeaderPrologue() 92 auto printer = file->CreatePrinter(&output); in GetHeaderPrologue() 95 vars["filename"] = file->filename(); in GetHeaderPrologue() 96 vars["filename_identifier"] = FilenameIdentifier(file->filename()); in GetHeaderPrologue() [all …]
|
| /third_party/skia/third_party/externals/icu/source/i18n/ |
| D | vzone.h | 5 * Copyright (C) 2009-2016, International Business Machines Corporation and 54 * @param status Output param to filled in with a success or an error. 109 * Gets the RFC2445 LAST-MODIFIED property value. When a vzone instance 111 * LAST-MODIFIED property value in the data. Otherwise, the initial value 121 * Sets the RFC2445 LAST-MODIFIED property value. 123 * @param lastModified The LAST-MODIFIED date. 131 * @param result Output param to filled in with the VTIMEZONE data. 132 * @param resultLength, length of the result output 133 * @param status Output param to filled in with a success or an error. 143 * @param result Output param to filled in with the VTIMEZONE data. [all …]
|