Home
last modified time | relevance | path

Searched refs:spec (Results 251 - 275 of 1361) sorted by relevance

1...<<11121314151617181920>>...55

/third_party/node/tools/gyp/pylib/gyp/
H A Dxcode_ninja.py137 def IsValidTargetForWrapper(target_extras, executable_target_pattern, spec):
145 spec: Specifications for target.
147 target_name = spec.get("target_name")
153 if int(spec.get("mac_xctest_bundle", 0)) != 0 or (
154 spec.get("type", "") == "executable"
155 and spec.get("product_extension", "") != "bundle"
213 spec = target_dicts[old_qualified_target]
214 if IsValidTargetForWrapper(target_extras, executable_target_pattern, spec):
216 target_name = spec.get("target_name")
221 new_target_dicts[new_target_name] = _TargetFromSpec(spec, param
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dxcode_ninja.py137 def IsValidTargetForWrapper(target_extras, executable_target_pattern, spec):
145 spec: Specifications for target.
147 target_name = spec.get("target_name")
153 if int(spec.get("mac_xctest_bundle", 0)) != 0 or (
154 spec.get("type", "") == "executable"
155 and spec.get("product_extension", "") != "bundle"
213 spec = target_dicts[old_qualified_target]
214 if IsValidTargetForWrapper(target_extras, executable_target_pattern, spec):
216 target_name = spec.get("target_name")
221 new_target_dicts[new_target_name] = _TargetFromSpec(spec, param
[all...]
/third_party/skia/third_party/externals/dawn/generator/templates/dawn_native/
H A Dwebgpu_absl_format.cpp30 const absl::FormatConversionSpec& spec, in AbslFormatConvert()
43 const absl::FormatConversionSpec& spec, in AbslFormatConvert()
56 const absl::FormatConversionSpec& spec, in AbslFormatConvert()
73 const absl::FormatConversionSpec& spec, in AbslFormatConvert()
90 const absl::FormatConversionSpec& spec, in AbslFormatConvert()
111 const absl::FormatConversionSpec& spec, in AbslFormatConvert()
143 const absl::FormatConversionSpec& spec,
171 const absl::FormatConversionSpec& spec,
194 const absl::FormatConversionSpec& spec,
29 AbslFormatConvert(const Color* value, const absl::FormatConversionSpec& spec, absl::FormatSink* s) AbslFormatConvert() argument
42 AbslFormatConvert(const Extent3D* value, const absl::FormatConversionSpec& spec, absl::FormatSink* s) AbslFormatConvert() argument
55 AbslFormatConvert(const Origin3D* value, const absl::FormatConversionSpec& spec, absl::FormatSink* s) AbslFormatConvert() argument
72 AbslFormatConvert(const DeviceBase* value, const absl::FormatConversionSpec& spec, absl::FormatSink* s) AbslFormatConvert() argument
89 AbslFormatConvert(const ApiObjectBase* value, const absl::FormatConversionSpec& spec, absl::FormatSink* s) AbslFormatConvert() argument
110 AbslFormatConvert(const TextureViewBase* value, const absl::FormatConversionSpec& spec, absl::FormatSink* s) AbslFormatConvert() argument
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fTextureFormatTests.cpp171 tcu::TextureFormatInfo spec = tcu::getTextureFormatInfo(m_texture->getRefTexture().getFormat()); in init() local
175 tcu::fillWithComponentGradients(m_texture->getRefTexture().getLevel(0), spec.valueMin, spec.valueMax); in init()
213 tcu::TextureFormatInfo spec = tcu::getTextureFormatInfo(m_texture->getRefTexture().getFormat()); in testLayerFace() local
220 renderParams.colorScale = spec.lookupScale; in testLayerFace()
221 renderParams.colorBias = spec.lookupBias; in testLayerFace()
318 tcu::TextureFormatInfo spec = tcu::getTextureFormatInfo(fmt); in init() local
319 tcu::Vec4 colorA (spec.valueMin.x(), spec.valueMax.y(), spec in init()
364 tcu::TextureFormatInfo spec = tcu::getTextureFormatInfo(effectiveRefTexture.getFormat()); iterate() local
[all...]
/third_party/vk-gl-cts/modules/gles2/performance/
H A Des2pDrawCallBatchingTests.cpp85 DrawCallBatchingTest (Context& context, const char* name, const char* description, const TestSpec& spec);
149 DrawCallBatchingTest::DrawCallBatchingTest (Context& context, const char* name, const char* description, const TestSpec& spec) in DrawCallBatchingTest() argument
157 , m_spec (spec) in DrawCallBatchingTest()
931 string specToName (const DrawCallBatchingTest::TestSpec& spec) in specToName() argument
935 DE_ASSERT(!spec.useStaticBuffer || spec.staticAttributeCount > 0); in specToName()
936 DE_ASSERT(!spec.useDynamicBuffer|| spec.dynamicAttributeCount > 0); in specToName()
938 if (spec.staticAttributeCount > 0) in specToName()
939 stream << spec in specToName()
955 specToDescrpition(const DrawCallBatchingTest::TestSpec& spec) specToDescrpition() argument
1056 DrawCallBatchingTest::TestSpec spec; init() local
[all...]
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/
H A DNumberingScheme.java335 FormatSpec spec = formats.get(fid); in checkUnambiguousIdd()
338 if (spec.nationalPrefixOptional()) { in checkUnambiguousIdd()
341 } else if (spec.national().hasNationalPrefix()) { in checkUnambiguousIdd()
408 FormatSpec spec = formats.get(id); in checkFormatConsistency()
411 "[%s] format specifier '%s' not assigned to any range: %s", cc, id, spec); in checkFormatConsistency()
412 checkFormatLengths(cc, spec, assigned); in checkFormatConsistency()
413 checkLocalFormatLengths(cc, formatTable, spec, assigned); in checkFormatConsistency()
414 carrierTemplatesExist |= spec.carrier().isPresent(); in checkFormatConsistency()
416 spec.national().hasNationalPrefix() in checkFormatConsistency()
417 || spec in checkFormatConsistency()
440 checkFormatLengths(DigitSequence cc, FormatSpec spec, RangeTree assigned) checkFormatLengths() argument
457 checkLocalFormatLengths( DigitSequence cc, RangeTable formatTable, FormatSpec spec, RangeTree assigned) checkLocalFormatLengths() argument
[all...]
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fTextureFormatTests.cpp114 tcu::TextureFormatInfo spec = tcu::getTextureFormatInfo(fmt); in init() local
120 << ",\n fill with " << formatGradient(&spec.valueMin, &spec.valueMax) << " gradient" in init()
127 tcu::fillWithComponentGradients(m_texture->getRefTexture().getLevel(0), spec.valueMin, spec.valueMax); in init()
148 tcu::TextureFormatInfo spec = tcu::getTextureFormatInfo(m_texture->getRefTexture().getFormat()); in iterate() local
157 renderParams.colorScale = spec.lookupScale; in iterate()
158 renderParams.colorBias = spec.lookupBias; in iterate()
260 tcu::TextureFormatInfo spec = tcu::getTextureFormatInfo(fmt); in init() local
269 << ",\n fill with " << formatGradient(&spec in init()
324 tcu::TextureFormatInfo spec = tcu::getTextureFormatInfo(m_texture->getRefTexture().getFormat()); testFace() local
[all...]
/third_party/skia/third_party/externals/angle2/samples/shader_translator/
H A Dshader_translator.cpp88 ShShaderSpec spec = SH_GLES2_SPEC; in main() local
126 spec = SH_GLES3_1_SPEC; in main()
130 spec = SH_GLES3_SPEC; in main()
135 spec = SH_GLES2_SPEC; in main()
141 spec = SH_WEBGL3_SPEC; in main()
145 spec = SH_WEBGL2_SPEC; in main()
149 spec = SH_WEBGL_SPEC; in main()
153 spec = SH_WEBGL_SPEC; in main()
160 spec = SH_GL_COMPATIBILITY_SPEC; in main()
164 spec in main()
[all...]
/third_party/skia/third_party/externals/angle2/src/tests/compiler_tests/
H A DExpressionLimit_test.cpp259 ShShaderSpec spec = SH_WEBGL_SPEC; in TEST_F() local
261 ShHandle vertexCompiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, spec, output, &resources); in TEST_F()
281 ShShaderSpec spec = SH_WEBGL_SPEC; in TEST_F() local
283 ShHandle vertexCompiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, spec, output, &resources); in TEST_F()
306 ShShaderSpec spec = SH_WEBGL_SPEC; in TEST_F() local
308 ShHandle vertexCompiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, spec, output, &resources); in TEST_F()
328 ShShaderSpec spec = SH_WEBGL_SPEC; in TEST_F() local
330 ShHandle vertexCompiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, spec, output, &resources); in TEST_F()
350 ShShaderSpec spec = SH_WEBGL_SPEC; in TEST_F() local
352 ShHandle vertexCompiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, spec, outpu in TEST_F()
553 ShShaderSpec spec = SH_WEBGL_SPEC; TEST_F() local
575 ShShaderSpec spec = SH_WEBGL2_SPEC; TEST_F() local
598 ShShaderSpec spec = SH_WEBGL_SPEC; TEST_F() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/
H A DvktShaderLibrary.cpp154 string genVertexShader (const ShaderCaseSpecification& spec) in genVertexShader() argument
160 res << glu::getGLSLVersionDeclaration(spec.targetVersion) << "\n"; in genVertexShader()
169 for (size_t ndx = 0; ndx < spec.values.inputs.size(); ndx++) in genVertexShader()
171 const Value& val = spec.values.inputs[ndx]; in genVertexShader()
191 for (size_t ndx = 0; ndx < spec.values.inputs.size(); ndx++) in genVertexShader()
193 const Value& val = spec.values.inputs[ndx]; in genVertexShader()
238 string genFragmentShader (const ShaderCaseSpecification& spec) in genFragmentShader() argument
244 shader << glu::getGLSLVersionDeclaration(spec.targetVersion) << "\n"; in genFragmentShader()
253 genCompareFunctions(shader, spec.values, false); in genFragmentShader()
257 for (size_t ndx = 0; ndx < spec in genFragmentShader()
290 specializeVertexShader(const ShaderCaseSpecification& spec, const string& src) specializeVertexShader() argument
371 specializeFragmentShader(const ShaderCaseSpecification& spec, const string& src) specializeFragmentShader() argument
702 getShaderStages(const ShaderCaseSpecification& spec) getShaderStages() argument
738 PipelineProgram(Context& context, const ShaderCaseSpecification& spec) PipelineProgram() argument
1286 ShaderCaseInstance(Context& context, const ShaderCaseSpecification& spec) ShaderCaseInstance() argument
1685 ShaderCase(tcu::TestContext& testCtx, const string& name, const ShaderCaseSpecification& spec) ShaderCase() argument
1758 createCase(const string& name, const std::string& description, const ShaderCaseSpecification& spec) createCase() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/
H A DvktShaderLibrary.cpp154 string genVertexShader (const ShaderCaseSpecification& spec) in genVertexShader() argument
160 res << glu::getGLSLVersionDeclaration(spec.targetVersion) << "\n"; in genVertexShader()
169 for (size_t ndx = 0; ndx < spec.values.inputs.size(); ndx++) in genVertexShader()
171 const Value& val = spec.values.inputs[ndx]; in genVertexShader()
191 for (size_t ndx = 0; ndx < spec.values.inputs.size(); ndx++) in genVertexShader()
193 const Value& val = spec.values.inputs[ndx]; in genVertexShader()
238 string genFragmentShader (const ShaderCaseSpecification& spec) in genFragmentShader() argument
244 shader << glu::getGLSLVersionDeclaration(spec.targetVersion) << "\n"; in genFragmentShader()
253 genCompareFunctions(shader, spec.values, false); in genFragmentShader()
257 for (size_t ndx = 0; ndx < spec in genFragmentShader()
290 specializeVertexShader(const ShaderCaseSpecification& spec, const string& src) specializeVertexShader() argument
371 specializeFragmentShader(const ShaderCaseSpecification& spec, const string& src) specializeFragmentShader() argument
702 getShaderStages(const ShaderCaseSpecification& spec) getShaderStages() argument
738 PipelineProgram(Context& context, const ShaderCaseSpecification& spec) PipelineProgram() argument
1286 ShaderCaseInstance(Context& context, const ShaderCaseSpecification& spec) ShaderCaseInstance() argument
1685 ShaderCase(tcu::TestContext& testCtx, const string& name, const string& description, const ShaderCaseSpecification& spec) ShaderCase() argument
1757 createCase(const string& name, const string& description, const ShaderCaseSpecification& spec) createCase() argument
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlx5/core/
H A Den_arfs.c449 struct mlx5_flow_spec *spec; in arfs_add_rule() local
453 spec = kvzalloc(sizeof(*spec), GFP_KERNEL); in arfs_add_rule()
454 if (!spec) { in arfs_add_rule()
458 spec->match_criteria_enable = MLX5_MATCH_OUTER_HEADERS; in arfs_add_rule()
459 MLX5_SET_TO_ONES(fte_match_param, spec->match_criteria, in arfs_add_rule()
461 MLX5_SET(fte_match_param, spec->match_value, outer_headers.ethertype, in arfs_add_rule()
471 MLX5_SET_TO_ONES(fte_match_param, spec->match_criteria, in arfs_add_rule()
473 MLX5_SET_TO_ONES(fte_match_param, spec->match_criteria, in arfs_add_rule()
475 MLX5_SET(fte_match_param, spec in arfs_add_rule()
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/mellanox/mlx5/core/
H A Den_arfs.c512 struct mlx5_flow_spec *spec; in arfs_add_rule() local
516 spec = kvzalloc(sizeof(*spec), GFP_KERNEL); in arfs_add_rule()
517 if (!spec) { in arfs_add_rule()
522 spec->match_criteria_enable = MLX5_MATCH_OUTER_HEADERS; in arfs_add_rule()
523 MLX5_SET_TO_ONES(fte_match_param, spec->match_criteria, in arfs_add_rule()
525 MLX5_SET(fte_match_param, spec->match_value, outer_headers.ethertype, in arfs_add_rule()
537 MLX5_SET_TO_ONES(fte_match_param, spec->match_criteria, in arfs_add_rule()
539 MLX5_SET_TO_ONES(fte_match_param, spec->match_criteria, in arfs_add_rule()
541 MLX5_SET(fte_match_param, spec in arfs_add_rule()
[all...]
/kernel/linux/linux-5.10/sound/firewire/motu/
H A Dmotu-stream.c40 if ((motu->spec->flags & SND_MOTU_SPEC_RX_MIDI_2ND_Q) || in keep_resources()
41 (motu->spec->flags & SND_MOTU_SPEC_RX_MIDI_3RD_Q)) in keep_resources()
47 if ((motu->spec->flags & SND_MOTU_SPEC_TX_MIDI_2ND_Q) || in keep_resources()
48 (motu->spec->flags & SND_MOTU_SPEC_TX_MIDI_3RD_Q)) in keep_resources()
117 if (motu->spec->flags & SND_MOTU_SPEC_TX_MIDI_2ND_Q) { in snd_motu_stream_cache_packet_formats()
120 } else if (motu->spec->flags & SND_MOTU_SPEC_TX_MIDI_3RD_Q) { in snd_motu_stream_cache_packet_formats()
125 if (motu->spec->flags & SND_MOTU_SPEC_RX_MIDI_2ND_Q) { in snd_motu_stream_cache_packet_formats()
128 } else if (motu->spec->flags & SND_MOTU_SPEC_RX_MIDI_3RD_Q) { in snd_motu_stream_cache_packet_formats()
204 if (motu->spec->tx_fixed_pcm_chunks[0] == motu->tx_packet_formats.pcm_chunks[0]) in ensure_packet_formats()
206 if (motu->spec in ensure_packet_formats()
[all...]
/kernel/linux/linux-6.6/sound/soc/intel/catpt/
H A Ddevice.c138 const struct catpt_spec *spec = cdev->spec; in catpt_register_board() local
142 mach = snd_soc_acpi_find_machine(spec->machines); in catpt_register_board()
213 const struct catpt_spec *spec) in catpt_dev_init()
216 cdev->spec = spec; in catpt_dev_init()
231 catpt_sram_init(&cdev->dram, spec->host_dram_offset, in catpt_dev_init()
233 catpt_sram_init(&cdev->iram, spec->host_iram_offset, in catpt_dev_init()
239 const struct catpt_spec *spec; in catpt_acpi_probe() local
260 spec in catpt_acpi_probe()
212 catpt_dev_init(struct catpt_dev *cdev, struct device *dev, const struct catpt_spec *spec) catpt_dev_init() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DSymbolTable.h100 template <Spec spec, int version, Shader shaders, size_t extensionIndex, typename T>
104 constexpr SymbolRule(Spec spec,
110 constexpr SymbolRule(Spec spec,
133 constexpr SymbolRule::SymbolRule(Spec spec, in SymbolRule() argument
138 : mIsDesktop(spec == Spec::GLSL ? 1u : 0u), in SymbolRule()
146 constexpr SymbolRule::SymbolRule(Spec spec, in SymbolRule() argument
151 : mIsDesktop(spec == Spec::GLSL ? 1u : 0u), in SymbolRule()
159 template <Spec spec, int version, Shader shaders, size_t extensionIndex, typename T>
166 return SymbolRule(spec, version, shaders, extensionIndex, value); in Get()
324 ShShaderSpec spec,
[all...]
/third_party/python/Lib/
H A Dimp.py168 spec = util.spec_from_file_location(name, pathname, loader=loader)
170 module = _exec(spec, sys.modules[name])
172 module = _load(spec)
188 spec = util.spec_from_file_location(name, pathname, loader=loader)
190 module = _exec(spec, sys.modules[name])
192 module = _load(spec)
212 spec = util.spec_from_file_location(name, path,
215 return _exec(spec, sys.modules[name])
217 return _load(spec)
341 spec
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/mellanox/mlx5/core/en/
H A Dtc_priv.h39 struct mlx5_flow_spec spec; member
118 struct mlx5_flow_spec *spec,
126 u8 mlx5e_tc_get_ip_version(struct mlx5_flow_spec *spec, bool outer);
131 struct mlx5_flow_spec *spec,
193 struct mlx5_flow_spec *spec);
209 void *mlx5e_get_match_headers_value(u32 flags, struct mlx5_flow_spec *spec);
210 void *mlx5e_get_match_headers_criteria(u32 flags, struct mlx5_flow_spec *spec);
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
H A DvktSpvAsmNonSemanticInfoTests.cpp63 ComputeShaderSpec spec; in getComputeShaderSpec() local
64 spec.extensions.push_back("VK_KHR_shader_non_semantic_info"); in getComputeShaderSpec()
65 spec.inputs.push_back(BufferSp(new Float32Buffer(inoutFloats))); in getComputeShaderSpec()
66 spec.inputs.push_back(Resource(BufferSp(new Int32Buffer(inputInts)), vk::VK_DESCRIPTOR_TYPE_STORAGE_IMAGE)); in getComputeShaderSpec()
67 spec.outputs.push_back(BufferSp(new Float32Buffer(inoutFloats))); in getComputeShaderSpec()
68 spec.numWorkGroups = tcu::IVec3(numElements, 1, 1); in getComputeShaderSpec()
69 return spec; in getComputeShaderSpec()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/
H A DvktSpvAsmNonSemanticInfoTests.cpp63 ComputeShaderSpec spec; in getComputeShaderSpec() local
64 spec.extensions.push_back("VK_KHR_shader_non_semantic_info"); in getComputeShaderSpec()
65 spec.inputs.push_back(BufferSp(new Float32Buffer(inoutFloats))); in getComputeShaderSpec()
66 spec.inputs.push_back(Resource(BufferSp(new Int32Buffer(inputInts)), vk::VK_DESCRIPTOR_TYPE_STORAGE_IMAGE)); in getComputeShaderSpec()
67 spec.outputs.push_back(BufferSp(new Float32Buffer(inoutFloats))); in getComputeShaderSpec()
68 spec.numWorkGroups = tcu::IVec3(numElements, 1, 1); in getComputeShaderSpec()
69 return spec; in getComputeShaderSpec()
/kernel/linux/linux-5.10/sound/usb/caiaq/
H A Ddevice.c159 memcpy(&cdev->spec, buf+1, sizeof(struct caiaq_device_spec)); in usb_ep1_command_reply_dispatch()
160 cdev->spec.fw_version = le16_to_cpu(cdev->spec.fw_version); in usb_ep1_command_reply_dispatch()
161 dev_dbg(dev, "device spec (firmware %d): audio: %d in, %d out, " in usb_ep1_command_reply_dispatch()
163 cdev->spec.fw_version, in usb_ep1_command_reply_dispatch()
164 cdev->spec.num_analog_audio_in, in usb_ep1_command_reply_dispatch()
165 cdev->spec.num_analog_audio_out, in usb_ep1_command_reply_dispatch()
166 cdev->spec.num_midi_in, in usb_ep1_command_reply_dispatch()
167 cdev->spec.num_midi_out, in usb_ep1_command_reply_dispatch()
168 cdev->spec in usb_ep1_command_reply_dispatch()
[all...]
/kernel/linux/linux-6.6/crypto/asymmetric_keys/
H A Dasymmetric_type.c313 const char *spec = match_data->raw_data; in asymmetric_key_match_preparse() local
318 if (!spec || !*spec) in asymmetric_key_match_preparse()
320 if (spec[0] == 'i' && in asymmetric_key_match_preparse()
321 spec[1] == 'd' && in asymmetric_key_match_preparse()
322 spec[2] == ':') { in asymmetric_key_match_preparse()
323 id = spec + 3; in asymmetric_key_match_preparse()
325 } else if (spec[0] == 'e' && in asymmetric_key_match_preparse()
326 spec[1] == 'x' && in asymmetric_key_match_preparse()
327 spec[ in asymmetric_key_match_preparse()
[all...]
/kernel/linux/linux-6.6/sound/usb/caiaq/
H A Ddevice.c145 memcpy(&cdev->spec, buf+1, sizeof(struct caiaq_device_spec)); in usb_ep1_command_reply_dispatch()
146 cdev->spec.fw_version = le16_to_cpu(cdev->spec.fw_version); in usb_ep1_command_reply_dispatch()
147 dev_dbg(dev, "device spec (firmware %d): audio: %d in, %d out, " in usb_ep1_command_reply_dispatch()
149 cdev->spec.fw_version, in usb_ep1_command_reply_dispatch()
150 cdev->spec.num_analog_audio_in, in usb_ep1_command_reply_dispatch()
151 cdev->spec.num_analog_audio_out, in usb_ep1_command_reply_dispatch()
152 cdev->spec.num_midi_in, in usb_ep1_command_reply_dispatch()
153 cdev->spec.num_midi_out, in usb_ep1_command_reply_dispatch()
154 cdev->spec in usb_ep1_command_reply_dispatch()
[all...]
/third_party/python/Tools/c-analyzer/c_common/
H A Dtables.py299 def _normalize_colspec(spec):
300 if len(spec) == 1:
301 raw, = spec
304 if len(spec) == 4:
305 label, field, width, fmt = spec
309 label, field, fmt = spec
334 spec = _parse_colspec(raw)
336 spec = _normalize_colspec(raw)
337 if spec is None:
338 raise ValueError(f'unsupported column spec {ra
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlx5/core/en/
H A Dtc_tun_vxlan.c46 struct mlx5_flow_spec *spec, in mlx5e_tc_tun_parse_udp_ports_vxlan()
53 err = mlx5e_tc_tun_parse_udp_ports(priv, spec, f, headers_c, headers_v); in mlx5e_tc_tun_parse_udp_ports_vxlan()
104 struct mlx5_flow_spec *spec, in mlx5e_tc_tun_parse_vxlan()
114 misc_c = MLX5_ADDR_OF(fte_match_param, spec->match_criteria, misc_parameters); in mlx5e_tc_tun_parse_vxlan()
115 misc_v = MLX5_ADDR_OF(fte_match_param, spec->match_value, misc_parameters); in mlx5e_tc_tun_parse_vxlan()
141 spec->match_criteria_enable |= MLX5_MATCH_MISC_PARAMETERS; in mlx5e_tc_tun_parse_vxlan()
45 mlx5e_tc_tun_parse_udp_ports_vxlan(struct mlx5e_priv *priv, struct mlx5_flow_spec *spec, struct flow_cls_offload *f, void *headers_c, void *headers_v) mlx5e_tc_tun_parse_udp_ports_vxlan() argument
103 mlx5e_tc_tun_parse_vxlan(struct mlx5e_priv *priv, struct mlx5_flow_spec *spec, struct flow_cls_offload *f, void *headers_c, void *headers_v) mlx5e_tc_tun_parse_vxlan() argument

Completed in 18 milliseconds

1...<<11121314151617181920>>...55