Home
last modified time | relevance | path

Searched full:features (Results 1 – 25 of 4903) sorted by relevance

12345678910>>...197

/third_party/vk-gl-cts/external/vulkancts/scripts/src/
Dmandatory_features.txt2 // It contains list of mandatory features required to
9 VkPhysicalDeviceFeatures FEATURES ( robustBufferAccess ) REQUIREMENTS ()
10 VkPhysicalDeviceFeatures FEATURES ( shaderSampledImageArrayDynamicIndexing ) REQUIREMENT…
11 VkPhysicalDeviceFeatures FEATURES ( shaderStorageBufferArrayDynamicIndexing ) REQUIREMENT…
12 VkPhysicalDevice8BitStorageFeaturesKHR FEATURES ( storageBuffer8BitAccess ) REQUIREMENTS…
13 VkPhysicalDeviceVulkan11Features FEATURES ( multiview ) REQUIREMENTS ( "ApiVersion(…
14 VkPhysicalDeviceMultiviewFeatures FEATURES ( multiview ) REQUIREMENTS ( "ApiVersion…
15 VkPhysicalDeviceMultiviewFeatures FEATURES ( multiview ) REQUIREMENTS ( VK_KHR_mult…
16 VkPhysicalDeviceVariablePointersFeatures FEATURES ( variablePointersStorageBuffer ) REQUIR…
17 VkPhysicalDeviceDescriptorIndexingFeaturesEXT FEATURES ( shaderUniformTexelBufferArrayDynamicInd…
[all …]
/third_party/gstreamer/gstreamer/gst/
Dgstcapsfeatures.c24 * @short_description: A set of features in caps
28 * for additional features for a specific #GstStructure. Caps structures with
29 * the same name but with a non-equal set of caps features are not compatible.
30 * If a pad supports multiple sets of features it has to add multiple equal
41 * Examples for caps features would be the requirement of a specific #GstMemory
42 * types or the requirement of having a specific #GstMeta on the buffer. Features
78 #define IS_MUTABLE(features) \ argument
79 (!features->parent_refcount || \
80 g_atomic_int_get (features->parent_refcount) == 1)
89 GST_DEBUG_CATEGORY_INIT (gst_caps_features_debug, "caps-features", 0, in _priv_gst_caps_features_initialize()
[all …]
/third_party/skia/third_party/externals/angle2/scripts/
Dvk_mandatory_format_support_capture_to_json.js17 // Map all features to indexes of squares.
18 $("#features-formats-mandatory-features-subbyte td").each(function() {
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",
34 "features-formats-mandatory-features-64bit",
35 "features-formats-mandatory-features-depth-stencil",
[all …]
/third_party/flutter/skia/third_party/externals/angle2/scripts/
Dvk_mandatory_format_support_capture_to_json.js17 // Map all features to indexes of squares.
18 $("#features-formats-mandatory-features-subbyte td").each(function() {
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",
34 "features-formats-mandatory-features-64bit",
35 "features-formats-mandatory-features-depth-stencil",
[all …]
/third_party/rust/crates/num-traits/ci/
Dtest_full.sh30 FEATURES=()
31 check_version 1.26 && FEATURES+=(i128)
32 check_version 1.27 && FEATURES+=(libm)
33 echo "Testing supported features: ${FEATURES[*]}"
42 cargo build --no-default-features
43 cargo test --no-default-features
46 for feature in ${FEATURES[*]}; do
47 cargo build --no-default-features --features="std $feature"
48 cargo test --no-default-features --features="std $feature"
50 cargo build --no-default-features --features="$feature"
[all …]
/third_party/vk-gl-cts/build/external/vulkancts/framework/vulkan/
DvkDeviceFeatureTest.inl7 static const Feature features[] = variable
15 …checkFeatures(vkp, instance, instanceDriver, physicalDevice, 4, features, supportedFeatures, queue…
20 static const Feature features[] = variable
27 …checkFeatures(vkp, instance, instanceDriver, physicalDevice, 3, features, supportedFeatures, queue…
32 static const Feature features[] = variable
38 …checkFeatures(vkp, instance, instanceDriver, physicalDevice, 2, features, supportedFeatures, queue…
43 static const Feature features[] = variable
48 …checkFeatures(vkp, instance, instanceDriver, physicalDevice, 1, features, supportedFeatures, queue…
53 static const Feature features[] = variable
58 …checkFeatures(vkp, instance, instanceDriver, physicalDevice, 1, features, supportedFeatures, queue…
[all …]
/third_party/rust/crates/clap/
DCargo.toml44 features = ["unstable-doc"]
49 features = ["unstable-doc"]
62 [features]
91 # In-work features
116 trycmd = { version = "0.14.9", default-features = false, features = ["color-auto", "diff", "example…
125 required-features = ["derive"]
129 required-features = ["cargo"]
133 required-features = ["derive"]
137 required-features = ["cargo"]
141 required-features = ["derive"]
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DGCNProcessors.td24 FeatureISAVersion6_0_0.Features
28 FeatureISAVersion6_0_0.Features
32 FeatureISAVersion6_0_1.Features
36 FeatureISAVersion6_0_1.Features
40 FeatureISAVersion6_0_1.Features
44 FeatureISAVersion6_0_1.Features
48 FeatureISAVersion6_0_1.Features
56 FeatureISAVersion7_0_0.Features
60 FeatureISAVersion7_0_0.Features
64 FeatureISAVersion7_0_1.Features
[all …]
/third_party/skia/src/core/
DSkCpu.cpp37 uint32_t features = 0; in read_cpu_features() local
43 if (abcd[3] & (1<<25)) { features |= SkCpu:: SSE1; } in read_cpu_features()
44 if (abcd[3] & (1<<26)) { features |= SkCpu:: SSE2; } in read_cpu_features()
45 if (abcd[2] & (1<< 0)) { features |= SkCpu:: SSE3; } in read_cpu_features()
46 if (abcd[2] & (1<< 9)) { features |= SkCpu::SSSE3; } in read_cpu_features()
47 if (abcd[2] & (1<<19)) { features |= SkCpu::SSE41; } in read_cpu_features()
48 if (abcd[2] & (1<<20)) { features |= SkCpu::SSE42; } in read_cpu_features()
52 if (abcd[2] & (1<<28)) { features |= SkCpu:: AVX; } in read_cpu_features()
53 if (abcd[2] & (1<<29)) { features |= SkCpu::F16C; } in read_cpu_features()
54 if (abcd[2] & (1<<12)) { features |= SkCpu:: FMA; } in read_cpu_features()
[all …]
DSkCpu.h59 uint32_t features = gCachedFeatures; in Supports() local
65 features |= SSE1; in Supports()
68 features |= SSE2; in Supports()
71 features |= SSE3; in Supports()
74 features |= SSSE3; in Supports()
77 features |= SSE41; in Supports()
80 features |= SSE42; in Supports()
83 features |= AVX; in Supports()
87 features |= AVX2; in Supports()
90 features |= (AVX512F | AVX512DQ | AVX512CD | AVX512BW | AVX512VL); in Supports()
[all …]
/third_party/flutter/skia/src/core/
DSkCpu.cpp47 uint32_t features = 0; in read_cpu_features() local
53 if (abcd[3] & (1<<25)) { features |= SkCpu:: SSE1; } in read_cpu_features()
54 if (abcd[3] & (1<<26)) { features |= SkCpu:: SSE2; } in read_cpu_features()
55 if (abcd[2] & (1<< 0)) { features |= SkCpu:: SSE3; } in read_cpu_features()
56 if (abcd[2] & (1<< 9)) { features |= SkCpu::SSSE3; } in read_cpu_features()
57 if (abcd[2] & (1<<19)) { features |= SkCpu::SSE41; } in read_cpu_features()
58 if (abcd[2] & (1<<20)) { features |= SkCpu::SSE42; } in read_cpu_features()
62 if (abcd[2] & (1<<28)) { features |= SkCpu:: AVX; } in read_cpu_features()
63 if (abcd[2] & (1<<29)) { features |= SkCpu::F16C; } in read_cpu_features()
64 if (abcd[2] & (1<<12)) { features |= SkCpu:: FMA; } in read_cpu_features()
[all …]
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
DVkPhysicalDevice.cpp37 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()
118 static void getPhysicalDeviceVariablePointersFeatures(T *features) in getPhysicalDeviceVariablePointersFeatures() argument
[all …]
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/vulkan/
Dgstvkphysicaldevice.c304 VkPhysicalDeviceFeatures * features) in dump_features10() argument
307 DEBUG_BOOL_STRUCT ("support for", features, robustBufferAccess); in dump_features10()
308 DEBUG_BOOL_STRUCT ("support for", features, fullDrawIndexUint32); in dump_features10()
309 DEBUG_BOOL_STRUCT ("support for", features, imageCubeArray); in dump_features10()
310 DEBUG_BOOL_STRUCT ("support for", features, independentBlend); in dump_features10()
311 DEBUG_BOOL_STRUCT ("support for", features, geometryShader); in dump_features10()
312 DEBUG_BOOL_STRUCT ("support for", features, tessellationShader); in dump_features10()
313 DEBUG_BOOL_STRUCT ("support for", features, sampleRateShading); in dump_features10()
314 DEBUG_BOOL_STRUCT ("support for", features, sampleRateShading); in dump_features10()
315 DEBUG_BOOL_STRUCT ("support for", features, dualSrcBlend); in dump_features10()
[all …]
/third_party/rust/crates/syn/.github/workflows/
Dci.yml24 - run: cargo test --all-features --release --tests
55 - run: cargo check ${{env.target}} --no-default-features
57 - run: cargo check ${{env.target}} --features full
58 - run: cargo check ${{env.target}} --features 'fold visit visit-mut'
59 - run: cargo check ${{env.target}} --features 'full fold visit visit-mut'
60 - run: cargo check ${{env.target}} --no-default-features --features derive
61 - run: cargo check ${{env.target}} --no-default-features --features 'derive parsing'
62 - run: cargo check ${{env.target}} --no-default-features --features 'derive printing'
63 … - run: cargo check ${{env.target}} --no-default-features --features 'proc-macro parsing printing'
64 - run: cargo check ${{env.target}} --no-default-features --features full
[all …]
/third_party/rust/crates/syn/
Dsyn.json6 "features": { object
25 "features": { object
55 "features": { object
100 "features": { object
117 "features": { object
143 "features": { object
174 "features": { object
325 "features": { object
345 "features": { object
363 "features": { object
[all …]
/third_party/node/deps/zlib/
Darm_features.c1 /* arm_features.c -- ARM processor features detection.
20 #include <cpu-features.h>
25 #include <zircon/features.h>
57 * See http://bit.ly/2CcoEsr for run-time detection of ARM features and also
63 uint64_t features = android_getCpuFeatures(); in _arm_check_features() local
64 arm_cpu_enable_crc32 = !!(features & ANDROID_CPU_ARM64_FEATURE_CRC32); in _arm_check_features()
65 arm_cpu_enable_pmull = !!(features & ANDROID_CPU_ARM64_FEATURE_PMULL); in _arm_check_features()
67 uint64_t features = android_getCpuFeatures(); in _arm_check_features()
68 arm_cpu_enable_crc32 = !!(features & ANDROID_CPU_ARM_FEATURE_CRC32); in _arm_check_features()
69 arm_cpu_enable_pmull = !!(features & ANDROID_CPU_ARM_FEATURE_PMULL); in _arm_check_features()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/MCTargetDesc/
DAVRELFStreamer.cpp12 static unsigned getEFlagsForFeatureSet(const FeatureBitset &Features) { in getEFlagsForFeatureSet() argument
16 if (Features[AVR::ELFArchAVR1]) in getEFlagsForFeatureSet()
18 else if (Features[AVR::ELFArchAVR2]) in getEFlagsForFeatureSet()
20 else if (Features[AVR::ELFArchAVR25]) in getEFlagsForFeatureSet()
22 else if (Features[AVR::ELFArchAVR3]) in getEFlagsForFeatureSet()
24 else if (Features[AVR::ELFArchAVR31]) in getEFlagsForFeatureSet()
26 else if (Features[AVR::ELFArchAVR35]) in getEFlagsForFeatureSet()
28 else if (Features[AVR::ELFArchAVR4]) in getEFlagsForFeatureSet()
30 else if (Features[AVR::ELFArchAVR5]) in getEFlagsForFeatureSet()
32 else if (Features[AVR::ELFArchAVR51]) in getEFlagsForFeatureSet()
[all …]
/third_party/rust/crates/log/.github/workflows/
Dmain.yml40 - run: cargo test --verbose --no-default-features
41 - run: cargo test --verbose --all-features
42 - run: cargo test --verbose --features serde
43 - run: cargo test --verbose --features std
44 - run: cargo test --verbose --features kv_unstable
45 - run: cargo test --verbose --features kv_unstable_sval
46 - run: cargo test --verbose --features kv_unstable_serde
47 …- run: cargo test --verbose --features "kv_unstable kv_unstable_std kv_unstable_sval kv_unstable_s…
63 features:
72 - run: cargo build --verbose -Z avoid-dev-deps --features kv_unstable
[all …]
/third_party/rust/crates/nom/.github/workflows/
Dci.yml23 features:
28 features: ''
30 features: '--features "std"'
32 features: '--no-default-features'
34 features: '--no-default-features --features "alloc"'
36 features: ''
38 features: '--no-default-features'
40 features: '--no-default-features --features "alloc"'
60 args: --verbose ${{ matrix.features }}
66 args: --verbose ${{ matrix.features }}
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DELFObjectFile.cpp98 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()
120 Features.AddFeature("mips64"); in getMIPSFeatures()
123 Features.AddFeature("mips32r2"); in getMIPSFeatures()
126 Features.AddFeature("mips64r2"); in getMIPSFeatures()
129 Features.AddFeature("mips32r6"); in getMIPSFeatures()
[all …]
/third_party/skia/third_party/externals/zlib/
Dcpu_features.c1 /* cpu_features.c -- Processor features detection.
39 #include <cpu-features.h>
44 #include <zircon/features.h>
62 // features are known at build time, so don't call it.
94 * See http://bit.ly/2CcoEsr for run-time detection of ARM features and also
100 uint64_t features = android_getCpuFeatures(); in _cpu_check_features() local
101 arm_cpu_enable_crc32 = !!(features & ANDROID_CPU_ARM64_FEATURE_CRC32); in _cpu_check_features()
102 arm_cpu_enable_pmull = !!(features & ANDROID_CPU_ARM64_FEATURE_PMULL); in _cpu_check_features()
104 uint64_t features = android_getCpuFeatures(); in _cpu_check_features()
105 arm_cpu_enable_crc32 = !!(features & ANDROID_CPU_ARM_FEATURE_CRC32); in _cpu_check_features()
[all …]
/third_party/rust/crates/nom/
DCargo.toml31 [features]
39 default-features = false
43 default-features = false
50 features = ["alloc", "std", "docsrs"]
51 all-features = true
63 required-features = ["alloc"]
76 required-features = ["alloc"]
80 required-features = ["alloc"]
84 required-features = ["alloc"]
91 required-features = ["alloc"]
[all …]
/third_party/json/doc/mkdocs/
Dmkdocs.yml24 features:
38 - Features:
39 - features/arbitrary_types.md
41 - features/binary_formats/index.md
42 - features/binary_formats/bson.md
43 - features/binary_formats/cbor.md
44 - features/binary_formats/messagepack.md
45 - features/binary_formats/ubjson.md
46 - features/binary_values.md
47 - features/comments.md
[all …]
/third_party/python/Lib/xml/dom/
Ddomreg.py32 def _good_enough(dom, features): argument
33 "_good_enough(dom, features) -> Return 1 if the dom offers the features"
34 for f,v in features:
39 def getDOMImplementation(name=None, features=()): argument
40 """getDOMImplementation(name = None, features = ()) -> DOM implementation.
49 be found, raise an ImportError. The features list must be a sequence
64 # order, returning the one that has the required features
65 if isinstance(features, str):
66 features = _parse_feature_string(features)
69 if _good_enough(dom, features):
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/tests/egl_tests/
DEGLFeatureControlTest.cpp93 angle::FeatureList features = display->getFeatures(); in TEST_P() local
94 for (size_t i = 0; i < features.size(); i++) in TEST_P()
96 EXPECT_STREQ(features[i]->name, eglQueryStringiANGLE(mDisplay, EGL_FEATURE_NAME_ANGLE, i)); in TEST_P()
97 EXPECT_STREQ(FeatureCategoryToString(features[i]->category), in TEST_P()
99 EXPECT_STREQ(features[i]->description, in TEST_P()
101 EXPECT_STREQ(features[i]->bug, eglQueryStringiANGLE(mDisplay, EGL_FEATURE_BUG_ANGLE, i)); in TEST_P()
102 EXPECT_STREQ(FeatureStatusToString(features[i]->enabled), in TEST_P()
108 // Ensure eglQueryDisplayAttribANGLE returns the correct number of features when queried with
121 // Submit a list of features to override when creating the display with eglGetPlatformDisplay, and
122 // ensure that the features are correctly overridden.
[all …]

12345678910>>...197