Home
last modified time | relevance | path

Searched refs:toCheck (Results 1 – 12 of 12) sorted by relevance

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmUtils.cpp55 const vk::VkPhysicalDeviceFeatures& toCheck, in isCoreFeaturesSupported() argument
60 IS_CORE_FEATURE_AVAILABLE(toCheck, availableFeatures, robustBufferAccess) in isCoreFeaturesSupported()
61 IS_CORE_FEATURE_AVAILABLE(toCheck, availableFeatures, fullDrawIndexUint32) in isCoreFeaturesSupported()
62 IS_CORE_FEATURE_AVAILABLE(toCheck, availableFeatures, imageCubeArray) in isCoreFeaturesSupported()
63 IS_CORE_FEATURE_AVAILABLE(toCheck, availableFeatures, independentBlend) in isCoreFeaturesSupported()
64 IS_CORE_FEATURE_AVAILABLE(toCheck, availableFeatures, geometryShader) in isCoreFeaturesSupported()
65 IS_CORE_FEATURE_AVAILABLE(toCheck, availableFeatures, tessellationShader) in isCoreFeaturesSupported()
66 IS_CORE_FEATURE_AVAILABLE(toCheck, availableFeatures, sampleRateShading) in isCoreFeaturesSupported()
67 IS_CORE_FEATURE_AVAILABLE(toCheck, availableFeatures, dualSrcBlend) in isCoreFeaturesSupported()
68 IS_CORE_FEATURE_AVAILABLE(toCheck, availableFeatures, logicOp) in isCoreFeaturesSupported()
[all …]
DvktSpvAsmUtils.hpp258 bool isVulkanFeaturesSupported(const Context& context, const VulkanFeatures& toCheck, const char** …
274 const vk::VkPhysicalDeviceFloatControlsProperties& toCheck,
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/
DvktSpvAsmUtils.cpp55 const vk::VkPhysicalDeviceFeatures& toCheck, in isCoreFeaturesSupported() argument
60 IS_CORE_FEATURE_AVAILABLE(toCheck, availableFeatures, robustBufferAccess) in isCoreFeaturesSupported()
61 IS_CORE_FEATURE_AVAILABLE(toCheck, availableFeatures, fullDrawIndexUint32) in isCoreFeaturesSupported()
62 IS_CORE_FEATURE_AVAILABLE(toCheck, availableFeatures, imageCubeArray) in isCoreFeaturesSupported()
63 IS_CORE_FEATURE_AVAILABLE(toCheck, availableFeatures, independentBlend) in isCoreFeaturesSupported()
64 IS_CORE_FEATURE_AVAILABLE(toCheck, availableFeatures, geometryShader) in isCoreFeaturesSupported()
65 IS_CORE_FEATURE_AVAILABLE(toCheck, availableFeatures, tessellationShader) in isCoreFeaturesSupported()
66 IS_CORE_FEATURE_AVAILABLE(toCheck, availableFeatures, sampleRateShading) in isCoreFeaturesSupported()
67 IS_CORE_FEATURE_AVAILABLE(toCheck, availableFeatures, dualSrcBlend) in isCoreFeaturesSupported()
68 IS_CORE_FEATURE_AVAILABLE(toCheck, availableFeatures, logicOp) in isCoreFeaturesSupported()
[all …]
DvktSpvAsmUtils.hpp258 bool isVulkanFeaturesSupported(const Context& context, const VulkanFeatures& toCheck, const char** …
274 const vk::VkPhysicalDeviceFloatControlsProperties& toCheck,
/third_party/skia/third_party/externals/angle2/src/feature_support_util/
Dfeature_support_util.cpp145 bool match(const StringPart &toCheck) const in match()
147 return (mWildcard || toCheck.mWildcard || (toCheck.mPart == mPart)); in match()
173 bool match(const IntegerPart &toCheck) const in match()
175 return (mWildcard || toCheck.mWildcard || (toCheck.mPart == mPart)); in match()
197 bool match(const T &toCheck) const in match()
200 if (mWildcard || toCheck.mWildcard) in match()
207 if (it.match(toCheck)) in match()
216 bool match(const ListOf<T> &toCheck) const in match()
219 if (mWildcard || toCheck.mWildcard) in match()
225 for (const T &it : toCheck.mList) in match()
[all …]
/third_party/skia/third_party/externals/icu/patches/
Disvalidenum.patch6 inline int32_t contains(T toCheck) const { return get(toCheck); }
8 inline int32_t get(T toCheck) const { return (fBools & flag(toCheck))?1:0; }
9 - inline UBool isValidEnum(T toCheck) const { return (toCheck>=minValue&&toCheck<limitValue); }
10 + inline UBool isValidEnum(T toCheck) const { return ((uint32_t)toCheck>=minValue&&(uint32_t)to…
/third_party/skia/third_party/externals/icu/source/common/unicode/
Denumset.h43 inline int32_t contains(T toCheck) const { return get(toCheck); } in contains() argument
45 inline int32_t get(T toCheck) const { return (fBools & flag(toCheck))?1:0; } in get() argument
46 …inline UBool isValidEnum(T toCheck) const { return ((uint32_t)toCheck>=minValue&&(uint32_t)toChec… in isValidEnum() argument
59 inline uint32_t flag(T toCheck) const { return (1<<(toCheck-minValue)); } in flag() argument
/third_party/node/deps/icu-small/source/common/unicode/
Denumset.h43 inline int32_t contains(T toCheck) const { return get(toCheck); } in contains() argument
45 inline int32_t get(T toCheck) const { return (fBools & flag(toCheck))?1:0; } in get() argument
46 inline UBool isValidEnum(T toCheck) const { return (toCheck>=minValue&&toCheck<limitValue); } in isValidEnum() argument
59 inline uint32_t flag(T toCheck) const { return (1<<(toCheck-minValue)); } in flag() argument
/third_party/icu/icu4c/source/common/unicode/
Denumset.h43 inline int32_t contains(T toCheck) const { return get(toCheck); } in contains() argument
45 inline int32_t get(T toCheck) const { return (fBools & flag(toCheck))?1:0; } in get() argument
46 inline UBool isValidEnum(T toCheck) const { return (toCheck>=minValue&&toCheck<limitValue); } in isValidEnum() argument
59 inline uint32_t flag(T toCheck) const { return (1<<(toCheck-minValue)); } in flag() argument
/third_party/node/deps/npm/node_modules/node-gyp/lib/
Dfind-python.js72 const toCheck = (() => {
149 for (const check of toCheck) {
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/
DvktShaderBuiltinPrecisionTests.cpp139 void areFeaturesSupported (const Context& context, deUint32 toCheck) in areFeaturesSupported() argument
141 if (toCheck == PRECISION_TEST_FEATURES_NONE) return; in areFeaturesSupported()
145 …if ((toCheck & PRECISION_TEST_FEATURES_16BIT_BUFFER_ACCESS) != 0 && extensionFeatures.storageBuffe… in areFeaturesSupported()
148 …if ((toCheck & PRECISION_TEST_FEATURES_16BIT_UNIFORM_AND_STORAGE_BUFFER_ACCESS) != 0 && extensionF… in areFeaturesSupported()
151 …if ((toCheck & PRECISION_TEST_FEATURES_16BIT_PUSH_CONSTANT) != 0 && extensionFeatures.storagePushC… in areFeaturesSupported()
154 …if ((toCheck & PRECISION_TEST_FEATURES_16BIT_INPUT_OUTPUT) != 0 && extensionFeatures.storageInputO… in areFeaturesSupported()
157 …if ((toCheck & PRECISION_TEST_FEATURES_16BIT_SHADER_FLOAT) != 0 && context.getShaderFloat16Int8Fea… in areFeaturesSupported()
160 …if ((toCheck & PRECISION_TEST_FEATURES_64BIT_SHADER_FLOAT) != 0 && context.getDeviceFeatures().sha… in areFeaturesSupported()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderBuiltinPrecisionTests.cpp139 void areFeaturesSupported (const Context& context, deUint32 toCheck) in areFeaturesSupported() argument
141 if (toCheck == PRECISION_TEST_FEATURES_NONE) return; in areFeaturesSupported()
145 …if ((toCheck & PRECISION_TEST_FEATURES_16BIT_BUFFER_ACCESS) != 0 && extensionFeatures.storageBuffe… in areFeaturesSupported()
148 …if ((toCheck & PRECISION_TEST_FEATURES_16BIT_UNIFORM_AND_STORAGE_BUFFER_ACCESS) != 0 && extensionF… in areFeaturesSupported()
151 …if ((toCheck & PRECISION_TEST_FEATURES_16BIT_PUSH_CONSTANT) != 0 && extensionFeatures.storagePushC… in areFeaturesSupported()
154 …if ((toCheck & PRECISION_TEST_FEATURES_16BIT_INPUT_OUTPUT) != 0 && extensionFeatures.storageInputO… in areFeaturesSupported()
157 …if ((toCheck & PRECISION_TEST_FEATURES_16BIT_SHADER_FLOAT) != 0 && context.getShaderFloat16Int8Fea… in areFeaturesSupported()
160 …if ((toCheck & PRECISION_TEST_FEATURES_64BIT_SHADER_FLOAT) != 0 && context.getDeviceFeatures().sha… in areFeaturesSupported()