Home
last modified time | relevance | path

Searched refs:supported_ (Results 1 – 19 of 19) sorted by relevance

/third_party/node/deps/v8/src/codegen/
Dcpu-features.h107 return supported_; in SupportedFeatures()
111 return (supported_ & (1u << f)) != 0; in IsSupported()
114 static void SetSupported(CpuFeature f) { supported_ |= 1u << f; } in SetSupported()
115 static void SetUnsupported(CpuFeature f) { supported_ &= ~(1u << f); } in SetUnsupported()
143 static unsigned supported_; variable
Dassembler.cc226 unsigned CpuFeatures::supported_ = 0; member in v8::internal::CpuFeatures
Dexternal-reference.cc1059 return ExternalReference(&CpuFeatures::supported_); in cpu_features()
/third_party/node/deps/v8/src/codegen/s390/
Dassembler-s390.cc171 supported_ |= CpuFeaturesImpliedByCompiler(); in ProbeImpl()
209 supported_ |= (1u << DISTINCT_OPS); in ProbeImpl()
213 supported_ |= (1u << GENERAL_INSTR_EXT); in ProbeImpl()
217 supported_ |= (1u << FLOATING_POINT_EXT); in ProbeImpl()
222 supported_ |= (1u << VECTOR_FACILITY); in ProbeImpl()
227 supported_ |= (1u << VECTOR_ENHANCE_FACILITY_1); in ProbeImpl()
232 supported_ |= (1u << VECTOR_ENHANCE_FACILITY_2); in ProbeImpl()
236 supported_ |= (1u << MISC_INSTR_EXT2); in ProbeImpl()
241 supported_ |= (1u << DISTINCT_OPS); in ProbeImpl()
243 supported_ |= (1u << GENERAL_INSTR_EXT); in ProbeImpl()
[all …]
/third_party/node/deps/v8/src/codegen/ppc/
Dassembler-ppc.cc66 supported_ |= CpuFeaturesImpliedByCompiler(); in ProbeImpl()
75 supported_ |= (1u << PPC_10_PLUS); in ProbeImpl()
82 supported_ |= (1u << PPC_9_PLUS); in ProbeImpl()
84 supported_ |= (1u << PPC_10_PLUS); in ProbeImpl()
87 supported_ |= (1u << PPC_9_PLUS); in ProbeImpl()
89 supported_ |= (1u << PPC_8_PLUS); in ProbeImpl()
91 supported_ |= (1u << PPC_7_PLUS); in ProbeImpl()
93 supported_ |= (1u << PPC_6_PLUS); in ProbeImpl()
101 if (supported_ & (1u << PPC_10_PLUS)) supported_ |= (1u << PPC_9_PLUS); in ProbeImpl()
102 if (supported_ & (1u << PPC_9_PLUS)) supported_ |= (1u << PPC_8_PLUS); in ProbeImpl()
[all …]
/third_party/node/deps/v8/src/compiler/
Dmachine-operator.h30 : supported_(supported), op_(op) {} in OptionalOperator()
32 bool IsSupported() const { return supported_; } in IsSupported()
35 DCHECK(supported_); in op()
43 bool supported_;
/third_party/node/deps/v8/src/codegen/mips/
Dassembler-mips.cc73 supported_ |= CpuFeaturesImpliedByCompiler(); in ProbeImpl()
82 supported_ |= 1u << FPU; in ProbeImpl()
85 supported_ |= 1u << FP64FPU; in ProbeImpl()
87 supported_ |= 1u << MIPS_SIMD; in ProbeImpl()
91 supported_ |= 1u << FP64FPU; in ProbeImpl()
96 if (cpu.has_fpu()) supported_ |= 1u << FPU; in ProbeImpl()
98 if (cpu.is_fp64_mode()) supported_ |= 1u << FP64FPU; in ProbeImpl()
100 supported_ |= 1u << FP64FPU; in ProbeImpl()
103 supported_ |= 1u << MIPS_SIMD; in ProbeImpl()
105 if (cpu.has_msa()) supported_ |= 1u << MIPS_SIMD; in ProbeImpl()
[all …]
/third_party/vk-gl-cts/modules/egl/
DteglGetFrameTimestampsTests.cpp162 TimestampInfo(bool required_, bool supported_, size_t supportedIndex_) in TimestampInfo()
164 , supported(supported_) in TimestampInfo()
/third_party/node/deps/v8/src/codegen/mips64/
Dassembler-mips64.cc73 supported_ |= CpuFeaturesImpliedByCompiler(); in ProbeImpl()
82 supported_ |= 1u << FPU; in ProbeImpl()
84 supported_ |= 1u << MIPS_SIMD; in ProbeImpl()
89 if (cpu.has_fpu()) supported_ |= 1u << FPU; in ProbeImpl()
91 supported_ |= 1u << MIPS_SIMD; in ProbeImpl()
93 if (cpu.has_msa()) supported_ |= 1u << MIPS_SIMD; in ProbeImpl()
/third_party/node/deps/v8/src/codegen/arm64/
Dassembler-arm64.cc91 supported_ |= CpuFeaturesFromCompiler(); in ProbeImpl()
92 supported_ |= CpuFeaturesFromTargetOS(); in ProbeImpl()
101 supported_ |= SimulatorFeaturesFromCommandLine(); in ProbeImpl()
112 supported_ |= CpuFeaturesFromCompiler(); in ProbeImpl()
113 supported_ |= runtime; in ProbeImpl()
/third_party/node/deps/v8/src/codegen/loong64/
Dassembler-loong64.cc23 supported_ |= 1u << FPU; in ProbeImpl()
31 supported_ |= 1u << FPU; in ProbeImpl()
/third_party/node/deps/v8/src/codegen/arm/
Dassembler-arm.cc209 supported_ |= command_line & CpuFeaturesFromCompiler(); in ProbeImpl()
215 supported_ |= command_line; in ProbeImpl()
238 supported_ |= command_line & CpuFeaturesFromCompiler(); in ProbeImpl()
239 supported_ |= command_line & runtime; in ProbeImpl()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/
DvktBindingValveMutableTests.cpp1539 explicit DescriptorSetLayoutResult (LayoutSupported supported_) in DescriptorSetLayoutResult()
1540 : supported (supported_) in DescriptorSetLayoutResult()
DvktBindingMutableTests.cpp1616 explicit DescriptorSetLayoutResult (LayoutSupported supported_) in DescriptorSetLayoutResult()
1617 : supported (supported_) in DescriptorSetLayoutResult()
/third_party/node/deps/v8/src/codegen/riscv64/
Dassembler-riscv64.cc69 supported_ |= CpuFeaturesImpliedByCompiler(); in ProbeImpl()
74 if (cpu.has_fpu()) supported_ |= 1u << FPU; in ProbeImpl()
75 if (cpu.has_rvv()) supported_ |= 1u << RISCV_SIMD; in ProbeImpl()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/binding_model/
DvktBindingMutableTests.cpp1616 explicit DescriptorSetLayoutResult (LayoutSupported supported_) in DescriptorSetLayoutResult()
1617 : supported (supported_) in DescriptorSetLayoutResult()
/third_party/node/doc/api/
Dhttp2.md3167 methods or state, and those _are not supported_ as it is a completely
/third_party/skia/third_party/externals/swiftshader/include/vulkan/
Dvulkan_structs.hpp17842 …VULKAN_HPP_CONSTEXPR DescriptorSetLayoutSupport( VULKAN_HPP_NAMESPACE::Bool32 supported_ = {} ) VU… in DescriptorSetLayoutSupport()
17843 : supported( supported_ )
/third_party/vulkan-headers/include/vulkan/
Dvulkan_structs.hpp22683 …VULKAN_HPP_CONSTEXPR DescriptorSetLayoutSupport( VULKAN_HPP_NAMESPACE::Bool32 supported_ = {}, voi… in DescriptorSetLayoutSupport()
22685 , supported( supported_ )