| /external/zstd/tests/cli-tests/compression/ |
| D | levels.sh | 3 set -e 4 set -v 6 datagen > file 9 zstd --fast=10 file -o file-f10.zst -q 10 zstd --fast=1 file -o file-f1.zst -q 11 zstd -1 file -o file-1.zst -q 12 zstd -19 file -o file-19.zst -q 14 zstd -t file-f10.zst file-f1.zst file-1.zst file-19.zst 16 cmp_size -lt file-19.zst file-1.zst 17 cmp_size -lt file-1.zst file-f1.zst [all …]
|
| D | levels.sh.stderr.exact | 2 datagen > file 5 zstd --fast=10 file -o file-f10.zst -q 6 zstd --fast=1 file -o file-f1.zst -q 7 zstd -1 file -o file-1.zst -q 8 zstd -19 file -o file-19.zst -q 10 zstd -t file-f10.zst file-f1.zst file-1.zst file-19.zst 13 cmp_size -lt file-19.zst file-1.zst 14 cmp_size -lt file-1.zst file-f1.zst 15 cmp_size -lt file-f1.zst file-f10.zst 18 zstd --fast file -f -q [all …]
|
| /external/e2fsprogs/lib/ext2fs/ |
| D | fileio.c | 2 * fileio.c --- Simple file I/O routines 6 * %Begin-Header% 7 * This file may be redistributed under the terms of the GNU Library 9 * %End-Header% 41 #define BMAP_BUFFER (file->buf + fs->blocksize) 47 ext2_file_t file; in ext2fs_file_open2() local 51 * Don't let caller create or open a file for writing if the in ext2fs_file_open2() 52 * filesystem is read-only. in ext2fs_file_open2() 55 !(fs->flags & EXT2_FLAG_RW)) in ext2fs_file_open2() 58 retval = ext2fs_get_mem(sizeof(struct ext2_file), &file); in ext2fs_file_open2() [all …]
|
| /external/python/cpython2/PC/VS8.0/ |
| D | _bsddb.vcproj | 1 <?xml version="1.0" encoding="Windows-1252"?> 6 ProjectGUID="{B4D38F3F-68FB-42EC-A45D-E00657BB3627}" 45 …AdditionalIncludeDirectories="..\..\..\db-4.7.25.0\build_windows,..\..\..\db-4.7.25.0\build_window… 108 …AdditionalIncludeDirectories="..\..\..\db-4.7.25.0\build_windows,..\..\..\db-4.7.25.0\build_window… 172 …AdditionalIncludeDirectories="..\..\..\db-4.7.25.0\build_windows,..\..\..\db-4.7.25.0\build_window… 236 …AdditionalIncludeDirectories="..\..\..\db-4.7.25.0\build_windows,..\..\..\db-4.7.25.0\build_window… 300 …AdditionalIncludeDirectories="..\..\..\db-4.7.25.0\build_windows,..\..\..\db-4.7.25.0\build_window… 364 …AdditionalIncludeDirectories="..\..\..\db-4.7.25.0\build_windows,..\..\..\db-4.7.25.0\build_window… 428 …AdditionalIncludeDirectories="..\..\..\db-4.7.25.0\build_windows,..\..\..\db-4.7.25.0\build_window… 492 …AdditionalIncludeDirectories="..\..\..\db-4.7.25.0\build_windows,..\..\..\db-4.7.25.0\build_window… [all …]
|
| D | _bsddb44.vcproj | 1 <?xml version="1.0" encoding="Windows-1252"?> 6 ProjectGUID="{62172C7D-B39E-409A-B352-370FF5098C19}" 45 AdditionalIncludeDirectories="..\..\..\db-4.4.20\build_win32;..\..\..\db-4.4.20\build_win32\.." 99 AdditionalIncludeDirectories="..\..\..\db-4.4.20\build_win32;..\..\..\db-4.4.20\build_win32\.." 154 AdditionalIncludeDirectories="..\..\..\db-4.4.20\build_win32;..\..\..\db-4.4.20\build_win32\.." 209 AdditionalIncludeDirectories="..\..\..\db-4.4.20\build_win32;..\..\..\db-4.4.20\build_win32\.." 263 AdditionalIncludeDirectories="..\..\..\db-4.4.20\build_win32;..\..\..\db-4.4.20\build_win32\.." 318 AdditionalIncludeDirectories="..\..\..\db-4.4.20\build_win32;..\..\..\db-4.4.20\build_win32\.." 372 AdditionalIncludeDirectories="..\..\..\db-4.4.20\build_win32;..\..\..\db-4.4.20\build_win32\.." 427 AdditionalIncludeDirectories="..\..\..\db-4.4.20\build_win32;..\..\..\db-4.4.20\build_win32\.." [all …]
|
| /external/angle/ |
| D | OWNERS | 1 # See https://chromium.googlesource.com/angle/angle/+/main/doc/ContributingCode.md#selecting-review… 4 # to this file should be done in the upstream ANGLE repository's main branch. 27 # The auto-roller can also modify autogenerated files, so we give it ownership 29 angle-autoroll@skia-public.iam.gserviceaccount.com 31 per-file AUTHORS=* 32 per-file CONTRIBUTORS=* 33 per-file DEPS=* 34 per-file WATCHLISTS=* 37 per-file build=* 38 per-file buildtools=* [all …]
|
| /external/llvm-libc/test/src/__support/File/ |
| D | platform_file_test.cpp | 1 //===-- Unittests for target platform file implementation -----------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 #include "src/__support/File/file.h" 14 using File = LIBC_NAMESPACE::File; typedef 15 constexpr char TEXT[] = "Hello, File"; 16 constexpr size_t TEXT_SIZE = sizeof(TEXT) - 1; // Ignore the null terminator 18 LIBC_INLINE File *openfile(const char *file_name, const char *mode) { in openfile() 25 File *file = openfile(FILENAME, "w"); in TEST() local 26 ASSERT_FALSE(file == nullptr); in TEST() [all …]
|
| /external/grpc-grpc/ |
| D | package.xml | 1 <?xml version="1.0" encoding="UTF-8"?> 2 …-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-… 10 <email>grpc-packages@google.com</email> 13 <date>2019-09-24</date> 25 - gRPC Core 1.63.1 update 29 <file baseinstalldir="/" name="config.m4" role="src" /> 30 <file baseinstalldir="/" name="config.w32" role="src" /> 31 <file baseinstalldir="/" name="src/php/README.md" role="src" /> 32 <file baseinstalldir="/" name="include/grpc/byte_buffer.h" role="src" /> 33 <file baseinstalldir="/" name="include/grpc/byte_buffer_reader.h" role="src" /> [all …]
|
| /external/rust/crates/grpcio-sys/grpc/ |
| D | package.xml | 1 <?xml version="1.0" encoding="UTF-8"?> 2 …-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-… 10 <email>grpc-packages@google.com</email> 13 <date>2019-09-24</date> 25 - gRPC Core 1.56.2 update 29 <file baseinstalldir="/" name="config.m4" role="src" /> 30 <file baseinstalldir="/" name="config.w32" role="src" /> 31 <file baseinstalldir="/" name="src/php/README.md" role="src" /> 32 <file baseinstalldir="/" name="include/grpc/byte_buffer.h" role="src" /> 33 <file baseinstalldir="/" name="include/grpc/byte_buffer_reader.h" role="src" /> [all …]
|
| /external/skia/resources/android_fonts/v17/ |
| D | fallback_fonts.xml | 1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 5 This file specifies the fonts, and the priority order, that will be searched for any 7 Each entry consists of a family tag and a list of files (file names) which support that 9 handle (the order is: regular, bold, italic, and bold-italic). The order in which the 10 families are listed in this file represents the order in which these fallback fonts 19 There is another optional file in /vendor/etc/fallback_fonts.xml. That file can be used to 21 fallback fonts. That file can also specify the order in which the fallback fonts should be 22 searched, to ensure that a vendor-provided font will be used before another fallback font 27 Language-specific ordering can be configured by adding a BCP 47-style "lang" attribute to [all …]
|
| /external/e2fsprogs/misc/ |
| D | tune2fs.8.in | 7 tune2fs \- adjust tunable file system parameters on ext2/ext3/ext4 file systems 11 .B \-l 14 .B \-c 15 .I max-mount-counts 18 .B \-e 19 .I errors-behavior 22 .B \-f 25 .B \-i 26 .I interval-between-checks 29 .B \-I [all …]
|
| D | fsck.8.in | 1 .\" -*- nroff -*- 3 .\" This file may be copied under the terms of the GNU Public License. 7 fsck \- check and repair a Linux file system 11 .B \-sAVRTMNP 14 .B \-C 20 .B \-t 24 [\-\-] [ 25 .B fs-specific-options 29 is used to check and optionally repair one or more Linux file systems. 36 UUID=8868abf6-88c5-4a83-98b8-bfc24057f7bd or LABEL=root). [all …]
|
| /external/mbedtls/docs/architecture/ |
| D | mbed-crypto-storage-specification.md | 5 Key storage was originally introduced in a product called Mbed Crypto, which was re-distributed via… 14 ----------------- 16 Tags: mbedcrypto-0.1.0b, mbedcrypto-0.1.0b2 23 * [PSA ITS](#file-namespace-on-its-for-0.1.0) 24 * [C stdio](#file-namespace-on-stdio-for-0.1.0) 28 * [Persistent transparent keys](#key-file-format-for-0.1.0) designated by a [slot number](#key-name… 29 * [Nonvolatile random seed](#nonvolatile-random-seed-file-format-for-0.1.0) on ITS only. 33 …olatile random seed file produced with Mbed OS 5.11.x and is upgraded to a later version of Mbed O… 35 We do not make any promises regarding key storage, or regarding the nonvolatile random seed file on… 39 …file whose name is constructed from the key identifier. The way in which the file name is construc… [all …]
|
| /external/openthread/third_party/mbedtls/repo/docs/architecture/ |
| D | mbed-crypto-storage-specification.md | 5 Key storage was originally introduced in a product called Mbed Crypto, which was re-distributed via… 14 ----------------- 16 Tags: mbedcrypto-0.1.0b, mbedcrypto-0.1.0b2 23 * [PSA ITS](#file-namespace-on-its-for-0.1.0) 24 * [C stdio](#file-namespace-on-stdio-for-0.1.0) 28 * [Persistent transparent keys](#key-file-format-for-0.1.0) designated by a [slot number](#key-name… 29 * [Nonvolatile random seed](#nonvolatile-random-seed-file-format-for-0.1.0) on ITS only. 33 …olatile random seed file produced with Mbed OS 5.11.x and is upgraded to a later version of Mbed O… 35 We do not make any promises regarding key storage, or regarding the nonvolatile random seed file on… 39 …file whose name is constructed from the key identifier. The way in which the file name is construc… [all …]
|
| /external/python/setuptools/docs/deprecated/distutils/ |
| D | sourcedist.rst | 1 .. _source-dist: 9 As shown in section :ref:`distutils-simple-example`, you use the :command:`sdist` command 15 or config file), :command:`sdist` creates the archive of the default format for 16 the current platform. The default format is a gzip'ed tar file 17 (:file:`.tar.gz`) on Unix, and ZIP file on Windows. 19 You can specify as many formats as you like using the :option:`!--formats` 22 python setup.py sdist --formats=gztar,zip 24 to create a gzipped tarball and a zip file. The available formats are: 26 +-----------+-------------------------+---------+ 29 | ``zip`` | zip file (:file:`.zip`) | (1),(3) | [all …]
|
| /external/emma/core/java12/com/vladium/util/ |
| D | Files.java | 5 * and is available at http://www.eclipse.org/legal/cpl-v10.html 12 import java.io.File; 22 // ---------------------------------------------------------------------------- 36 public static String [] readFileList (final File atfile) in readFileList() 80 * <li> if 'canonical'=false, the pathnames are compared as case-sensitive strings 86 * necessary for reproducing its behavior in Sun-compatible JVMs. 88 public static File [] pathToFiles (final String [] path, final boolean canonical) in pathToFiles() 96 final String separators = ",".concat (File.pathSeparator); in pathToFiles() 112 _result.add (new File (pathname)); in pathToFiles() 117 final File [] result = new File [_result.size ()]; in pathToFiles() [all …]
|
| /external/zstd/tests/cli-tests/decompression/ |
| D | pass-through.sh | 3 set -e 11 echo "some data" > file 15 zstd file 18 zstd -dc --pass-through 1 2 3 4 21 zstdcat file 22 "$ZSTD_SYMLINK_DIR/zcat" file 23 "$ZSTD_SYMLINK_DIR/gzcat" file 26 zstdcat file file.zst 27 zstdcat file.zst file 29 # Test --pass-through [all …]
|
| /external/lzma/CPP/7zip/Bundles/Alone/ |
| D | Alone.dsp | 1 # Microsoft Developer Studio Project File - Name="Alone" - Package Owner=<4> 2 # Microsoft Developer Studio Generated Build File, Format Version 6.00 7 CFG=Alone - Win32 DebugU 16 !MESSAGE NMAKE /f "Alone.mak" CFG="Alone - Win32 DebugU" 20 !MESSAGE "Alone - Win32 Release" (based on "Win32 (x86) Console Application") 21 !MESSAGE "Alone - Win32 Debug" (based on "Win32 (x86) Console Application") 22 !MESSAGE "Alone - Win32 ReleaseU" (based on "Win32 (x86) Console Application") 23 !MESSAGE "Alone - Win32 DebugU" (based on "Win32 (x86) Console Application") 33 !IF "$(CFG)" == "Alone - Win32 Release" 58 !ELSEIF "$(CFG)" == "Alone - Win32 Debug" [all …]
|
| /external/apache-commons-io/src/test/java/org/apache/commons/io/ |
| D | DirectoryWalkerTest.java | 3 * contributor license agreements. See the NOTICE file distributed with 5 * The ASF licenses this file to You under the Apache License, Version 2.0 6 * (the "License"); you may not use this file except in compliance with 9 * http://www.apache.org/licenses/LICENSE-2.0 25 import java.io.File; 44 * applying a file filter. 46 static class TestCancelWalker extends DirectoryWalker<File> { 56 protected List<File> find(final File startDirectory) throws IOException { in find() 57 final List<File> results = new ArrayList<>(); in find() 64 protected void handleCancelled(final File startDirectory, final Collection<File> results, in handleCancelled() [all …]
|
| /external/kmod/libkmod/ |
| D | libkmod-file.c | 2 * libkmod - interface to kernel module operations 4 * Copyright (C) 2011-2013 ProFUSION embedded systems 42 #include "libkmod-internal.h" 46 int (*load)(struct kmod_file *file); 47 void (*unload)(struct kmod_file *file); 70 static int zstd_read_block(struct kmod_file *file, size_t block_size, in zstd_read_block() argument 77 free((void *)input->src); in zstd_read_block() 78 input->src = malloc(block_size); in zstd_read_block() 79 if (input->src == NULL) { in zstd_read_block() 80 ret = -errno; in zstd_read_block() [all …]
|
| /external/sonic/ |
| D | wave.c | 4 This file is part of the Sonic Library. 6 This file is licensed under the Apache 2.0 license. 10 This file supports read/write wave files. 22 FILE* soundFile; 28 /* Write a string to a file. */ 29 static void writeBytes(waveFile file, void* bytes, int length) { in writeBytes() argument 32 if (file->failed) { in writeBytes() 35 bytesWritten = fwrite(bytes, sizeof(char), length, file->soundFile); in writeBytes() 37 fprintf(stderr, "Unable to write to output file"); in writeBytes() 38 file->failed = 1; in writeBytes() [all …]
|
| /external/trusty/arm-trusted-firmware/ |
| D | poetry.lock | 1 # This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. 6 description = "A configurable sidebar-enabled Sphinx theme" 8 python-versions = ">=3.6" 10 …{file = "alabaster-0.7.13-py3-none-any.whl", hash = "sha256:1ee19aca801bbabb5ba3f5f258e4422dfa86f8… 11 …{file = "alabaster-0.7.13.tar.gz", hash = "sha256:a27a4a084d5e690e16e01e03ad2b2e552c61a65469419b90… 19 python-versions = "*" 21 …{file = "anytree-2.8.0-py2.py3-none-any.whl", hash = "sha256:14c55ac77492b11532395049a03b773d14c7e… 22 …{file = "anytree-2.8.0.tar.gz", hash = "sha256:3f0f93f355a91bc3e6245319bf4c1d50e3416cc7a35cc1133c1… 29 dev = ["check-manifest"] 37 python-versions = ">=3.7" [all …]
|
| /external/libopus/celt/dump_modes/ |
| D | dump_modes.c | 2 Copyright (c) 2008-2009 Xiph.Org Foundation 3 Written by Jean-Marc Valin */ 9 - Redistributions of source code must retain the above copyright 12 - Redistributions in binary form must reproduce the above copyright 52 void dump_modes(FILE *file, CELTMode **modes, int nb_modes) in dump_modes() argument 56 fprintf(file, "/* The contents of this file was automatically generated by dump_modes.c\n"); in dump_modes() 57 fprintf(file, " with arguments:"); in dump_modes() 61 fprintf(file, " %d %d",mode->Fs,mode->shortMdctSize*mode->nbShortMdcts); in dump_modes() 63 fprintf(file, "\n It contains static definitions for some pre-defined modes. */\n"); in dump_modes() 64 fprintf(file, "#include \"modes.h\"\n"); in dump_modes() [all …]
|
| /external/aws-sdk-java-v2/codegen/src/test/java/software/amazon/awssdk/codegen/poet/ |
| D | ClientTestModels.java | 5 * You may not use this file except in compliance with the License. 10 * or in the "license" file accompanying this file. This file is distributed 18 import java.io.File; 38 …File serviceModel = new File(ClientTestModels.class.getResource("client/c2j/json/service-2.json").… in awsJsonServiceModels() 39 …File customizationModel = new File(ClientTestModels.class.getResource("client/c2j/json/customizati… in awsJsonServiceModels() 40 …File paginatorsModel = new File(ClientTestModels.class.getResource("client/c2j/json/paginators.jso… in awsJsonServiceModels() 51 …File serviceModel = new File(ClientTestModels.class.getResource("client/c2j/query-to-json-errorcod… in awsQueryCompatibleJsonServiceModels() 52 …File customizationModel = new File(ClientTestModels.class.getResource("client/c2j/query-to-json-er… in awsQueryCompatibleJsonServiceModels() 53 …File paginatorsModel = new File(ClientTestModels.class.getResource("client/c2j/query-to-json-error… in awsQueryCompatibleJsonServiceModels() 64 …File serviceModel = new File(ClientTestModels.class.getResource("client/c2j/json-bearer-auth/servi… in bearerAuthServiceModels() [all …]
|
| /external/python/cpython3/Doc/distutils/ |
| D | sourcedist.rst | 1 .. _source-dist: 9 As shown in section :ref:`distutils-simple-example`, you use the :command:`sdist` command 15 or config file), :command:`sdist` creates the archive of the default format for 16 the current platform. The default format is a gzip'ed tar file 17 (:file:`.tar.gz`) on Unix, and ZIP file on Windows. 19 You can specify as many formats as you like using the :option:`!--formats` 22 python setup.py sdist --formats=gztar,zip 24 to create a gzipped tarball and a zip file. The available formats are: 26 +-----------+-------------------------+-------------+ 29 | ``zip`` | zip file (:file:`.zip`) | (1),(3) | [all …]
|