Home
last modified time | relevance | path

Searched refs:visit (Results 1 – 25 of 140) sorted by relevance

123456

/openbmc/openbmc/poky/bitbake/lib/
H A Dcodegen.py77 generator.visit(node)
112 self.visit(stmt)
133 self.visit(arg)
136 self.visit(default)
148 self.visit(decorator)
157 self.visit(target)
159 self.visit(node.value)
163 self.visit(node.target)
165 self.visit(node.value)
179 self.visit(item)
[all …]
/openbmc/phosphor-fan-presence/control/json/utils/
H A Dmodifier.cpp102 return val - std::visit(ToTypeVisitor<double>(), arg); in operator ()()
107 return val - std::visit(ToTypeVisitor<int32_t>(), arg); in operator ()()
112 return val - std::visit(ToTypeVisitor<int64_t>(), arg); in operator ()()
228 if (val < std::visit(ToTypeVisitor<double>(), rangeValue.first)) in operator ()()
241 if (val < std::visit(ToTypeVisitor<int32_t>(), rangeValue.first)) in operator ()()
253 if (val < std::visit(ToTypeVisitor<int64_t>(), rangeValue.first)) in operator ()()
266 std::visit(ToTypeVisitor<std::string>(), rangeValue.first)) in operator ()()
323 return std::visit(*_operator, val); in doOp()
/openbmc/qemu/qapi/
H A Dmeson.build7 'qapi-visit-core.c',
79 'qapi-visit.h', 'qapi-visit.c',
88 'qapi-builtin-types.c', 'qapi-builtin-visit.c',
89 'qapi-builtin-types.h', 'qapi-builtin-visit.h',
99 'qapi-visit-@0@.c'.format(module),
100 'qapi-visit-@0@.h'.format(module),
/openbmc/qemu/tests/
H A Dmeson.build7 'qapi-builtin-visit.c',
8 'qapi-builtin-visit.h',
27 'test-qapi-visit-sub-sub-module.c',
28 'test-qapi-visit-sub-sub-module.h',
29 'test-qapi-visit.c',
30 'test-qapi-visit.h',
/openbmc/phosphor-pid-control/dbus/
H A Ddbusconfiguration.cpp285 std::visit(VariantToDoubleVisitor(), zone.at(attributeName)); in getCycleTimeSetting()
316 info.setpoint = std::visit(VariantToDoubleVisitor(), in populatePidInfo()
324 failsafepercent = std::visit(VariantToDoubleVisitor(), in populatePidInfo()
366 info.pidInfo.proportionalCoeff = std::visit( in populatePidInfo()
368 info.pidInfo.integralCoeff = std::visit( in populatePidInfo()
371 info.pidInfo.feedFwdOffset = std::visit( in populatePidInfo()
373 info.pidInfo.feedFwdGain = std::visit( in populatePidInfo()
375 info.pidInfo.integralLimit.max = std::visit( in populatePidInfo()
377 info.pidInfo.integralLimit.min = std::visit( in populatePidInfo()
379 info.pidInfo.outLim.max = std::visit(VariantToDoubleVisitor(), in populatePidInfo()
[all …]
H A Ddbushelper.cpp125 prop->max = std::visit(VariantToDoubleVisitor(), findMax->second); in getProperties()
129 prop->min = std::visit(VariantToDoubleVisitor(), findMin->second); in getProperties()
132 prop->value = std::visit(VariantToDoubleVisitor(), propMap["Value"]); in getProperties()
/openbmc/linux/drivers/net/ethernet/chelsio/
H A DKconfig31 For general information about Chelsio and our products, visit
34 For customer support, please visit our customer support page at
58 For general information about Chelsio and our products, visit
61 For customer support, please visit our customer support page at
81 For general information about Chelsio and our products, visit
84 For customer support, please visit our customer support page at
122 For general information about Chelsio and our products, visit
125 For customer support, please visit our customer support page at
/openbmc/dbus-sensors/src/
H A DThresholds.cpp75 if (std::visit(VariantToStringVisitor(), labelFind->second) != in parseThresholdsFromConfig()
93 (std::visit(VariantToIntVisitor(), indexFind->second) != in parseThresholdsFromConfig()
105 std::visit(VariantToDoubleVisitor(), hysteresisFind->second); in parseThresholdsFromConfig()
119 std::visit(VariantToUnsignedIntVisitor(), severityFind->second); in parseThresholdsFromConfig()
122 std::visit(VariantToStringVisitor(), directionFind->second); in parseThresholdsFromConfig()
131 double val = std::visit(VariantToDoubleVisitor(), valueFind->second); in parseThresholdsFromConfig()
165 std::visit(VariantToStringVisitor(), labelFind->second); in persistThreshold()
181 unsigned int severity = std::visit( in persistThreshold()
185 std::visit(VariantToStringVisitor(), directionFind->second); in persistThreshold()
/openbmc/qemu/scripts/qapi/
H A Devents.py189 visit = self._module_basename('qapi-visit', name)
200 events=events, visit=visit,
250 schema.visit(vis)
H A Dschema.py110 def visit(self, visitor: QAPISchemaVisitor) -> None: member in QAPISchemaEntity
310 def visit(self, visitor: QAPISchemaVisitor) -> None: member in QAPISchemaModule
314 entity.visit(visitor)
322 def visit(self, visitor: QAPISchemaVisitor) -> None: member in QAPISchemaInclude
323 super().visit(visitor)
407 def visit(self, visitor: QAPISchemaVisitor) -> None: member in QAPISchemaBuiltinType
408 super().visit(visitor)
456 def visit(self, visitor: QAPISchemaVisitor) -> None: member in QAPISchemaEnumType
457 super().visit(visitor)
508 def visit(self, visitor: QAPISchemaVisitor) -> None: member in QAPISchemaArrayType
[all …]
H A Dcommands.py318 visit = self._module_basename('qapi-visit', name)
329 commands=commands, visit=visit))
418 schema.visit(vis)
H A Dvisit.py358 visit = self._module_basename('qapi-visit', name)
364 visit=visit))
430 schema.visit(vis)
/openbmc/dbus-sensors/src/adc/
H A DADCSensorMain.cpp157 unsigned int number = std::visit( in createSensors()
223 std::visit(VariantToIntVisitor(), findCPU->second); in createSensors()
251 scaleFactor = std::visit(VariantToFloatVisitor(), in createSensors()
275 std::string gpioName = std::visit( in createSensors()
283 std::visit(VariantToStringVisitor(), in createSensors()
294 setupTime = std::visit(VariantToFloatVisitor(), in createSensors()
/openbmc/qemu/tests/include/
H A Dmeson.build9 'test-qapi-visit-sub-module.c',
10 'test-qapi-visit-sub-module.h',
/openbmc/dbus-sensors/src/external/
H A DExternalSensorMain.cpp203 std::visit(VariantToDoubleVisitor(), minFound->second); in createSensors()
219 std::visit(VariantToDoubleVisitor(), maxFound->second); in createSensors()
233 timeoutSecs = std::visit(VariantToDoubleVisitor(), in createSensors()
255 std::visit(VariantToStringVisitor(), nameFound->second); in createSensors()
271 std::visit(VariantToStringVisitor(), unitsFound->second); in createSensors()
/openbmc/linux/drivers/scsi/csiostor/
H A DKconfig11 For general information about Chelsio and our products, visit
14 For customer support, please visit our customer support page at
/openbmc/linux/drivers/crypto/chelsio/
H A DKconfig14 For general information about Chelsio and our products, visit
17 For customer support, please visit our customer support page at
/openbmc/linux/drivers/infiniband/hw/cxgb4/
H A DKconfig12 For general information about Chelsio and our products, visit
15 For customer support, please visit our customer support page at
/openbmc/openbmc/poky/scripts/lib/recipetool/
H A Dcreate_buildsys_python.py1011 visitor.visit(parsed)
1044 call = LiteralAstTransform().visit(node)
1062 def visit(self, node): member in LiteralAstTransform
1066 return ast.NodeTransformer.visit(self, node)
1080 new_value = dict((kw.arg, self.visit(kw.value)) for kw in value)
1082 new_value = [self.visit(i) for i in value]
1084 new_value = self.visit(value)
1095 return tuple(self.visit(v) for v in node.elts)
1098 return [self.visit(v) for v in node.elts]
1101 return set(self.visit(v) for v in node.elts)
[all …]
/openbmc/qemu/tests/unit/
H A Dtest-visitor-serialization.c85 static void dealloc_helper(void *native_in, VisitorFunc visit, Error **errp) in dealloc_helper() argument
89 visit(v, &native_in, errp); in dealloc_helper()
280 VisitorFunc visit, Error **errp);
282 VisitorFunc visit, Error **errp);
926 VisitorFunc visit, Error **errp) in qmp_serialize() argument
931 visit(d->qov, &native_in, errp); in qmp_serialize()
936 VisitorFunc visit, Error **errp) in qmp_deserialize() argument
951 visit(d->qiv, native_out, errp); in qmp_deserialize()
970 VisitorFunc visit, Error **errp) in string_serialize() argument
975 visit(d->sov, &native_in, errp); in string_serialize()
[all …]
/openbmc/linux/arch/arm64/kvm/hyp/
H A Dpgtable.c177 enum kvm_pgtable_walk_flags visit) in kvm_pgtable_visitor_cb() argument
183 return walker->cb(ctx, visit); in kvm_pgtable_visitor_cb()
347 enum kvm_pgtable_walk_flags visit) in leaf_walker() argument
461 enum kvm_pgtable_walk_flags visit) in hyp_map_walker() argument
508 enum kvm_pgtable_walk_flags visit) in hyp_unmap_walker() argument
582 enum kvm_pgtable_walk_flags visit) in hyp_free_walker() argument
1027 enum kvm_pgtable_walk_flags visit) in stage2_map_walker() argument
1031 switch (visit) { in stage2_map_walker()
1098 enum kvm_pgtable_walk_flags visit) in stage2_unmap_walker() argument
1165 enum kvm_pgtable_walk_flags visit) in stage2_attr_walker() argument
[all …]
/openbmc/openbmc/poky/scripts/lib/checklayer/cases/
H A Dbsp.py114 def visit(task): function
118 visit(dep)
126 visit(task)
/openbmc/qemu/docs/devel/
H A Dlockcnt.rst90 - A new visit cannot be started while the counter is zero and the
130 during the visit any other thread will see a nonzero value for
154 inefficiencies; for example, a visit can never start if the counter is
156 which in principle need not block a visit of the data structure.
171 concurrent with a visit to the list of bottom halves; 2) it only has
210 is zero (i.e. there is no concurrent visit). Because ``qemu_lockcnt_inc``
221 If an object has to be freed right after a visit, you can combine
/openbmc/linux/Documentation/kbuild/
H A DKconfig.select-break17 # visit the dependencies of the select target (in this case B). And since
18 # Kconfig does not visit the dependencies, it breaks the dependencies of B
/openbmc/dbus-sensors/src/intel-cpu/
H A DIntelCPUSensor.hpp79 std::visit(VariantToStringVisitor(), findName->second); in cpuIsPresent()
92 std::visit(VariantToStringVisitor(), findPolarity->second)) in cpuIsPresent()

123456