/external/angle/scripts/ |
D | vk_mandatory_format_support_capture_to_json.js | 3 * Use of this source code is governed by a BSD-style license that can be 17 // Map all features to indexes of squares. 18 $("#features-formats-mandatory-features-subbyte td").each(function() { 22 indexToFeatureMap[index--] = $(this).text(); 28 ["features-formats-mandatory-features-subbyte", 29 "features-formats-mandatory-features-2byte", 30 "features-formats-mandatory-features-4byte", 31 "features-formats-mandatory-features-10bit", 32 "features-formats-mandatory-features-16bit", 33 "features-formats-mandatory-features-32bit", [all …]
|
/external/e2fsprogs/tests/u_revert_upgrade_to_64bitmcsum/ |
D | script | 2 if test -x $RESIZE2FS_EXE -a -x $E2UNDO_EXE; then 4 TDB_FILE=${TMPDIR:-/tmp}/resize2fs-$(basename $TMPFILE).e2undo 6 rm -f $TDB_FILE >/dev/null 2>&1 19 …features = has_journal,extent,huge_file,flex_bg,uninit_bg,dir_nlink,extra_isize,sparse_super,filet… 32 echo mke2fs -q -F -o Linux -T ext4h -O ^metadata_csum,^64bit -E lazy_itable_init=1 -b 4096 -z $TDB_… 33 MKE2FS_CONFIG=$CONF $MKE2FS -q -F -o Linux -T ext4h -O ^metadata_csum,^64bit -E lazy_itable_init=1 … 36 features="$($DUMPE2FS -h $TMPFILE 2> /dev/null | grep 'Filesystem features:')" 37 if [ "$(echo "${features}" | grep "metadata_csum" -c)" -gt 0 ] || [ "$(echo "${features}" | grep 64… 38 echo "FS features: ${features}" >> $OUT 42 $FSCK -f -n $TMPFILE >> $OUT 2>&1 || fail=1 [all …]
|
/external/cpu_features/test/ |
D | cpuinfo_arm_test.cc | 7 // http://www.apache.org/licenses/LICENSE-2.0 30 EXPECT_TRUE(info.features.vfp); // triggered by vfpv3 in TEST() 31 EXPECT_TRUE(info.features.vfpv3); // triggered by neon in TEST() 32 EXPECT_TRUE(info.features.neon); in TEST() 33 EXPECT_TRUE(info.features.aes); in TEST() 34 EXPECT_TRUE(info.features.crc32); in TEST() 36 EXPECT_FALSE(info.features.vfpv4); in TEST() 37 EXPECT_FALSE(info.features.iwmmxt); in TEST() 38 EXPECT_FALSE(info.features.crunch); in TEST() 39 EXPECT_FALSE(info.features.thumbee); in TEST() [all …]
|
/external/swiftshader/src/Vulkan/ |
D | VkPhysicalDevice.cpp | 7 // http://www.apache.org/licenses/LICENSE-2.0 37 static const VkPhysicalDeviceFeatures features{ in getFeatures() local 99 return features; in getFeatures() 103 static void getPhysicalDeviceSamplerYcbcrConversionFeatures(T *features) in getPhysicalDeviceSamplerYcbcrConversionFeatures() argument 105 features->samplerYcbcrConversion = VK_TRUE; in getPhysicalDeviceSamplerYcbcrConversionFeatures() 109 static void getPhysicalDevice16BitStorageFeatures(T *features) in getPhysicalDevice16BitStorageFeatures() argument 111 features->storageBuffer16BitAccess = VK_FALSE; in getPhysicalDevice16BitStorageFeatures() 112 features->storageInputOutput16 = VK_FALSE; in getPhysicalDevice16BitStorageFeatures() 113 features->storagePushConstant16 = VK_FALSE; in getPhysicalDevice16BitStorageFeatures() 114 features->uniformAndStorageBuffer16BitAccess = VK_FALSE; in getPhysicalDevice16BitStorageFeatures() [all …]
|
/external/e2fsprogs/tests/u_revert_64bitmcsum_onefile/ |
D | script | 2 if test -x $RESIZE2FS_EXE -a -x $E2UNDO_EXE; then 4 TDB_FILE=${TMPDIR:-/tmp}/resize2fs-$(basename $TMPFILE).e2undo 6 rm -f $TDB_FILE >/dev/null 2>&1 19 …features = has_journal,extent,huge_file,flex_bg,uninit_bg,dir_nlink,extra_isize,sparse_super,filet… 32 echo mke2fs -q -F -o Linux -T ext4h -O ^metadata_csum,^64bit -E lazy_itable_init=1 -b 4096 -z $TDB_… 33 MKE2FS_CONFIG=$CONF $MKE2FS -q -F -o Linux -T ext4h -O ^metadata_csum,^64bit -E lazy_itable_init=1 … 36 features="$($DUMPE2FS -h $TMPFILE 2> /dev/null | grep 'Filesystem features:')" 37 if [ "$(echo "${features}" | grep "metadata_csum" -c)" -gt 0 ] || [ "$(echo "${features}" | grep 64… 38 echo "FS features: ${features}" >> $OUT 42 $FSCK -f -n $TMPFILE >> $OUT 2>&1 || fail=1 [all …]
|
/external/e2fsprogs/tests/u_onefile_bad/ |
D | script | 2 if test -x $RESIZE2FS_EXE -a -x $E2UNDO_EXE; then 4 TDB_FILE=${TMPDIR:-/tmp}/resize2fs-$(basename $TMPFILE).e2undo 6 rm -f $TDB_FILE >/dev/null 2>&1 19 …features = has_journal,extent,huge_file,flex_bg,uninit_bg,dir_nlink,extra_isize,sparse_super,filet… 32 echo mke2fs -q -F -o Linux -T ext4h -O ^metadata_csum,^64bit -E lazy_itable_init=1 -b 4096 -z $TDB_… 33 MKE2FS_CONFIG=$CONF $MKE2FS -q -F -o Linux -T ext4h -O ^metadata_csum,^64bit -E lazy_itable_init=1 … 36 features="$($DUMPE2FS -h $TMPFILE 2> /dev/null | grep 'Filesystem features:')" 37 if [ "$(echo "${features}" | grep "metadata_csum" -c)" -gt 0 ] || [ "$(echo "${features}" | grep 64… 38 echo "FS features: ${features}" >> $OUT 42 $FSCK -f -n $TMPFILE >> $OUT 2>&1 || fail=1 [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | GCNProcessors.td | 1 //===-- GCNProcessors.td - GCN Processor definitions ----------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 15 def : ProcessorModel<"generic-hsa", NoSchedModel, 19 //===------------------------------------------------------------===// 21 //===------------------------------------------------------------===// 24 FeatureISAVersion6_0_0.Features 28 FeatureISAVersion6_0_0.Features 32 FeatureISAVersion6_0_1.Features 36 FeatureISAVersion6_0_1.Features [all …]
|
/external/deqp/android/cts/master/vk-incremental-deqp/ |
D | api.txt | 1 dEQP-VK.api.version_check.version 2 dEQP-VK.api.version_check.entry_points 3 dEQP-VK.api.driver_properties.driver_id_match 4 dEQP-VK.api.driver_properties.name_is_not_empty 5 dEQP-VK.api.driver_properties.name_zero_terminated 6 dEQP-VK.api.driver_properties.info_zero_terminated 7 dEQP-VK.api.smoke.create_sampler 8 dEQP-VK.api.smoke.create_shader 9 dEQP-VK.api.smoke.triangle 10 dEQP-VK.api.smoke.asm_triangle [all …]
|
/external/e2fsprogs/tests/u_revert_all_onefile/ |
D | script | 2 if test -x $RESIZE2FS_EXE -a -x $E2UNDO_EXE; then 4 TDB_FILE=${TMPDIR:-/tmp}/resize2fs-$(basename $TMPFILE).e2undo 6 rm -f $TDB_FILE >/dev/null 2>&1 19 …features = has_journal,extent,huge_file,flex_bg,uninit_bg,dir_nlink,extra_isize,sparse_super,filet… 32 echo mke2fs -q -F -o Linux -T ext4h -O ^metadata_csum,^64bit -E lazy_itable_init=1 -b 4096 -z $TDB_… 33 MKE2FS_CONFIG=$CONF $MKE2FS -q -F -o Linux -T ext4h -O ^metadata_csum,^64bit -E lazy_itable_init=1 … 36 features="$($DUMPE2FS -h $TMPFILE 2> /dev/null | grep 'Filesystem features:')" 37 if [ "$(echo "${features}" | grep "metadata_csum" -c)" -gt 0 ] || [ "$(echo "${features}" | grep 64… 38 echo "FS features: ${features}" >> $OUT 42 $FSCK -f -n $TMPFILE >> $OUT 2>&1 || fail=1 [all …]
|
/external/angle/include/platform/ |
D | vk_features.json | 4 "Use of this source code is governed by a BSD-style license that can be", 7 "vk_features.json: Optional features for the Vulkan renderer." 9 "features": [ array 12 "category": "Features", 21 "category": "Features", 29 "category": "Features", 63 "category": "Features", 71 "category": "Features", 79 "category": "Features", 87 "category": "Features", [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
D | ELFObjectFile.cpp | 1 //===- ELFObjectFile.cpp - ELF object file implementation -----------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 98 SubtargetFeatures Features; in getMIPSFeatures() local 105 Features.AddFeature("mips2"); in getMIPSFeatures() 108 Features.AddFeature("mips3"); in getMIPSFeatures() 111 Features.AddFeature("mips4"); in getMIPSFeatures() 114 Features.AddFeature("mips5"); in getMIPSFeatures() 117 Features.AddFeature("mips32"); in getMIPSFeatures() [all …]
|
/external/libaom/libaom/av1/encoder/ |
D | partition_strategy.c | 35 int mi_row, int mi_col, BLOCK_SIZE bsize, float *features, 87 default: assert(0 && "Invalid bsize"); return -1; in convert_bsize_to_idx() 108 const float *features, in write_features_to_file() argument 122 fprintf(pfile, "%.6f", features[i]); in write_features_to_file() 123 if (i < feature_size - 1) fprintf(pfile, ","); in write_features_to_file() 131 // -- add support for hdres 132 // -- add support for pruning rectangular partitions 133 // -- use reconstructed pixels instead of source pixels for padding 134 // -- use chroma pixels in addition to luma pixels 139 assert(cm->seq_params->sb_size >= BLOCK_64X64 && in av1_intra_mode_cnn_partition() [all …]
|
/external/deqp/android/cts/master/src/ |
D | vk-incremental-deqp.txt | 2 dEQP-VK.info.build 3 dEQP-VK.info.device 4 dEQP-VK.info.platform 5 dEQP-VK.info.memory_limits 6 dEQP-VK.info.physical_devices 7 dEQP-VK.info.physical_device_groups 8 dEQP-VK.info.instance_layers 9 dEQP-VK.info.instance_extensions 10 dEQP-VK.info.device_features 11 dEQP-VK.info.device_properties [all …]
|
/external/rust/crates/serde_json/.github/workflows/ |
D | ci.yml | 9 RUSTFLAGS: -Dwarnings 14 runs-on: ${{matrix.os}}-latest 16 fail-fast: false 20 - uses: actions/checkout@v2 21 - uses: dtolnay/rust-toolchain@nightly 22 - run: cargo test 23 - run: cargo test --features preserve_order --tests -- --skip ui --exact 24 - run: cargo test --features float_roundtrip --tests -- --skip ui --exact 25 - run: cargo test --features arbitrary_precision --tests -- --skip ui --exact 26 - run: cargo test --features float_roundtrip,arbitrary_precision --tests -- --skip ui --exact [all …]
|
/external/rust/crates/vulkano/src/device/ |
D | features.rs | 3 // <LICENSE-APACHE or 4 // https://www.apache.org/licenses/LICENSE-2.0> or the MIT 5 // license <LICENSE-MIT or https://opensource.org/licenses/MIT>, 13 macro_rules! features { macro 24 /// Represents all the features that are available on a physical device or enabled on 33 /// use vulkano::device::Features; 35 /// let minimal_features = Features { 37 /// .. Features::none() 40 /// let optimal_features = vulkano::device::Features { 43 /// .. Features::none() [all …]
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | parse_single_example_op_test.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 40 features = lambda d: feature_pb2.Features(feature=d) function 115 for k, f in kwargs["features"].items(): 149 "features": { 183 original = example(features=features({"c": feature()})) 187 "features": input_features, 196 "features": input_features, 202 original = example(features=features({ 203 "a": float_feature([-1, -1]), 211 "features": { [all …]
|
/external/iperf3/src/ |
D | iperf_util.c | 13 * acting on its behalf a paid-up, nonexclusive, irrevocable, 19 * and others acting on its behalf a paid-up, nonexclusive, 68 iperf_errexit(NULL, "error - failed to open %s: %s\n", in readentropy() 74 iperf_errexit(NULL, "error - failed to read %s: %s\n", in readentropy() 121 for (pos = 0; pos < (COOKIE_SIZE - 1); pos++) { in make_cookie() 122 out[pos] = rndchars[out[pos] % (sizeof(rndchars) - 1)]; in make_cookie() 161 d = tv->tv_sec + tv->tv_usec / 1000000; in timeval_to_double() 169 if ( tv0->tv_sec == tv1->tv_sec && tv0->tv_usec == tv1->tv_usec ) in timeval_equals() 180 time1 = tv0->tv_sec + (tv0->tv_usec / 1000000.0); in timeval_diff() 181 time2 = tv1->tv_sec + (tv1->tv_usec / 1000000.0); in timeval_diff() [all …]
|
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/ |
D | parse_example_dataset_test.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 47 features = lambda d: feature_pb2.Features(feature=d) function 173 original = example(features=features({"c": feature()})) 190 example(features=features({ 192 })), example(features=features({ 193 "a": float_feature([-1, -1]), 207 original = [example(features=features({"a": float_feature([1, 1, 3]),})),] 219 example(features=features({ 222 example(features=features({ 225 example(features=features({ [all …]
|
/external/rust/crates/grpcio/.github/workflows/ |
D | ci.yml | 7 - master 9 - cron: '0 22 * * *' 13 …# Some of the bindgen tests generate "deref-nullptr" warnings, see https://github.com/rust-lang/ru… 14 RUSTFLAGS: "--deny=warnings --allow deref-nullptr" 18 Linux-Format: 19 name: Linux-Format 20 runs-on: ubuntu-latest 22 - uses: actions/checkout@v2 23 - run: sudo apt-get install -y clang-tidy-9 24 … - run: sudo update-alternatives --install /usr/bin/clang-tidy clang-tidy /usr/bin/clang-tidy-9 100 [all …]
|
/external/mesa3d/src/freedreno/vulkan/ |
D | tu_device.c | 61 return -1; in tu_device_get_cache_uuid() 65 snprintf((char *) uuid + 6, VK_UUID_SIZE - 10, "tu"); in tu_device_get_cache_uuid() 75 memset(device->name, 0, sizeof(device->name)); in tu_physical_device_init() 76 sprintf(device->name, "FD%d", device->gpu_id); in tu_physical_device_init() 78 device->limited_z24s8 = (device->gpu_id == 630); in tu_physical_device_init() 80 switch (device->gpu_id) { in tu_physical_device_init() 86 freedreno_dev_info_init(&device->info, device->gpu_id); in tu_physical_device_init() 90 "device %s is unsupported", device->name); in tu_physical_device_init() 93 if (tu_device_get_cache_uuid(device->gpu_id, device->cache_uuid)) { in tu_physical_device_init() 103 disk_cache_format_hex_id(buf, device->cache_uuid, VK_UUID_SIZE * 2); in tu_physical_device_init() [all …]
|
/external/rust/crates/combine/ |
D | Cargo.toml.orig | 6 description = "Fast parser combinators on arbitrary streams with zero-copy support." 15 categories = ["parsing", "no-std"] 22 all-features = true 23 rustdoc-args = ["--cfg", "docsrs"] 31 memchr = { version = "2.2", default-features = false } 32 pin-project-lite = { version = "0.2", optional = true } 33 # Future proofing so that tokio-0.3, tokio-0.1 etc can be supported 34 tokio-02-dep = { version = "0.2.3", package = "tokio", features = ["io-util"], default-features = f… 35 tokio-03-dep = { version = "0.3", package = "tokio", default-features = false, optional = true } 36 tokio-dep = { version = "1", package = "tokio", default-features = false, optional = true } [all …]
|
D | ci.sh | 1 #!/bin/bash -x 2 set -ex 6 cargo "$@" check --no-default-features 9 cargo "$@" test --all-features 10 cargo "$@" test --all-features --examples 12 cargo "$@" test --bench json --bench http -- --test 13 cargo "$@" check --bench mp4 --features mp4 15 cargo "$@" build --no-default-features --features alloc 16 cargo "$@" test --no-default-features --features alloc --examples 18 cargo "$@" build --no-default-features [all …]
|
/external/llvm/lib/Support/ |
D | Host.cpp | 1 //===-- Host.cpp - Implement OS Host Concept --------------------*- C++ -*-===// 8 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 25 // Include the platform-specific parts of this class. 42 #define DEBUG_TYPE "host-detection" 44 //===----------------------------------------------------------------------===// 48 //===----------------------------------------------------------------------===// 62 return -1; in readCpuInfo() 67 return -1; in readCpuInfo() 172 /// getX86CpuIDAndInfo - Execute the specified cpuid and return the 4 values in [all …]
|
/external/tensorflow/tensorflow/core/example/ |
D | feature_util.cc | 7 http://www.apache.org/licenses/LICENSE-2.0 28 bool HasFeature<>(const std::string& key, const Features& features) { in HasFeature() argument 29 return (features.feature().find(key) != features.feature().end()); in HasFeature() 34 const Features& features) { in HasFeature() argument 35 auto it = features.feature().find(key); in HasFeature() 36 return (it != features.feature().end()) && in HasFeature() 37 (it->second.kind_case() == Feature::KindCase::kInt64List); in HasFeature() 41 bool HasFeature<float>(const std::string& key, const Features& features) { in HasFeature() argument 42 auto it = features.feature().find(key); in HasFeature() 43 return (it != features.feature().end()) && in HasFeature() [all …]
|
/external/jackson-annotations/docs/javadoc/2.8/com/fasterxml/jackson/annotation/class-use/ |
D | JsonFormat.Features.html | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dt… 2 <!-- NewPage --> 5 <!-- Generated by javadoc (version 1.7.0_79) on Thu Jul 07 10:49:28 PDT 2016 --> 6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 7 <title>Uses of Class com.fasterxml.jackson.annotation.JsonFormat.Features (Jackson-annotations 2.8.… 8 <meta name="date" content="2016-07-07"> 12 <script type="text/javascript"><!-- 13 if (location.href.indexOf('is-external=true') == -1) { 14 …t.title="Uses of Class com.fasterxml.jackson.annotation.JsonFormat.Features (Jackson-annotations 2… 16 //--> [all …]
|