Home
last modified time | relevance | path

Searched refs:bound (Results 1 – 25 of 554) sorted by relevance

12345678910>>...23

/openbmc/qemu/tests/tcg/cris/bare/
H A Dcheck_boundc.s8 bound.d 2,r3
18 bound.d 0xffff,r3
33 bound.w 2,r3
63 bound.b 2,r3
68 bound.b 0xff,r3
73 bound.b 0xff,r3
78 bound.b 0xff,r3
83 bound.b 0xff,r3
88 bound.b 0x89,r3
92 bound.w 0,r3
[all …]
H A Dcheck_boundr.s8 bound.d r4,r3
14 bound.d r4,r3
20 bound.d r4,r3
26 bound.d r4,r3
32 bound.d r4,r3
38 bound.w r4,r3
44 bound.w r4,r3
49 bound.w r3,r3
55 bound.w r4,r3
61 bound.w r4,r3
[all …]
/openbmc/phosphor-health-monitor/
H A Dhealth_metric.cpp114 auto bound = std::get<Bound>(key); in initProperties() local
124 threshold->second.emplace(bound, value.value); in initProperties()
130 bool didThresholdViolate(ThresholdIntf::Bound bound, double thresholdValue, in didThresholdViolate() argument
133 switch (bound) in didThresholdViolate()
145 error("Invalid threshold bound {BOUND}", "BOUND", bound); in didThresholdViolate()
151 void HealthMetric::checkThreshold(Type type, Bound bound, MValue value) in checkThreshold() argument
153 auto threshold = std::make_tuple(type, bound); in checkThreshold()
156 if (thresholds.contains(type) && thresholds[type].contains(bound)) in checkThreshold()
160 thresholds[type][bound] = thresholdValue; in checkThreshold()
163 if (didThresholdViolate(bound, thresholdValue, value.current)) in checkThreshold()
[all …]
/openbmc/linux/drivers/net/wireless/mediatek/mt76/mt7603/
H A Ddebugfs.c76 int bound[3], i, range; in mt7603_ampdu_stat_show() local
79 for (i = 0; i < ARRAY_SIZE(bound); i++) in mt7603_ampdu_stat_show()
80 bound[i] = MT_AGG_ASRCR_RANGE(range, i) + 1; in mt7603_ampdu_stat_show()
82 seq_printf(file, "Length: %8d | ", bound[0]); in mt7603_ampdu_stat_show()
83 for (i = 0; i < ARRAY_SIZE(bound) - 1; i++) in mt7603_ampdu_stat_show()
85 bound[i], bound[i + 1]); in mt7603_ampdu_stat_show()
87 for (i = 0; i < ARRAY_SIZE(bound); i++) in mt7603_ampdu_stat_show()
/openbmc/linux/drivers/net/wireless/mediatek/mt76/
H A Dmt792x_debugfs.c11 int bound[15], range[4], i; in mt792x_ampdu_stat_read_phy() local
22 for (i = 0; i < ARRAY_SIZE(bound); i++) in mt792x_ampdu_stat_read_phy()
23 bound[i] = MT_MIB_ARNCR_RANGE(range[i / 4], i % 4) + 1; in mt792x_ampdu_stat_read_phy()
27 seq_printf(file, "Length: %8d | ", bound[0]); in mt792x_ampdu_stat_read_phy()
28 for (i = 0; i < ARRAY_SIZE(bound) - 1; i++) in mt792x_ampdu_stat_read_phy()
29 seq_printf(file, "%3d %3d | ", bound[i] + 1, bound[i + 1]); in mt792x_ampdu_stat_read_phy()
32 for (i = 0; i < ARRAY_SIZE(bound); i++) in mt792x_ampdu_stat_read_phy()
/openbmc/phosphor-dbus-monitor/src/test/yaml/conditiongentest/
H A Dtest.yaml46 bound: 115
57 bound: 115
76 bound: 115
87 bound: 115
104 bound: 45
113 bound: 45
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Sensor/Threshold/
H A DHardShutdown.interface.yaml27 The upper bound of the shutdown threshold. A value of 'NaN' is used
33 The lower bound of the shutdown threshold. A value of 'NaN' is used
38 True if the sensor value has exceeded the defined bound. False if the
39 sensor value has not exceeded the defined bound.
46 True if the sensor value has exceeded the defined bound. False if the
47 sensor value has not exceeded the defined bound.
H A DWarning.interface.yaml26 The upper bound of the warning threshold. A value of 'NaN' is used to
32 The lower bound of the warning threshold. A value of 'NaN' is used to
37 True if the sensor value has exceeded the defined bound. False if the
38 sensor value has not exceeded the defined bound.
45 True if the sensor value has exceeded the defined bound. False if the
46 sensor value has not exceeded the defined bound.
H A DPerformanceLoss.interface.yaml26 The upper bound of the warning threshold. A value of 'NaN' is used to
32 The lower bound of the warning threshold. A value of 'NaN' is used to
37 True if the sensor value has exceeded the defined bound. False if the
38 sensor value has not exceeded the defined bound.
46 True if the sensor value has exceeded the defined bound. False if the
47 sensor value has not exceeded the defined bound.
H A DCritical.interface.yaml26 The upper bound of the critical threshold. A value of 'NaN' is used
32 The lower bound of the critical threshold. A value of 'NaN' is used
37 True if the sensor value has exceeded the defined bound. False if the
38 sensor value has not exceeded the defined bound.
45 True if the sensor value has exceeded the defined bound. False if the
46 sensor value has not exceeded the defined bound.
H A DSoftShutdown.interface.yaml26 The upper bound of the soft shutdown threshold. A value of 'NaN' is
32 The lower bound of the soft shutdown threshold. A value of 'NaN' is
37 True if the sensor value has exceeded the defined bound. False if the
38 sensor value has not exceeded the defined bound.
45 True if the sensor value has exceeded the defined bound. False if the
46 sensor value has not exceeded the defined bound.
/openbmc/linux/drivers/gpu/drm/
H A Ddrm_agpsupport.c218 entry->bound = 0; in drm_legacy_agp_alloc()
275 if (!entry || !entry->bound) in drm_legacy_agp_unbind()
279 entry->bound = 0; in drm_legacy_agp_unbind()
311 if (!entry || entry->bound) in drm_legacy_agp_bind()
317 entry->bound = dev->agp->base + (page << PAGE_SHIFT); in drm_legacy_agp_bind()
319 dev->agp->base, entry->bound); in drm_legacy_agp_bind()
352 if (entry->bound) in drm_legacy_agp_free()
437 if (entry->bound) in drm_legacy_agp_clear()
H A Ddrm_memory.c75 if (agpmem->bound <= offset in agp_remap()
76 && (agpmem->bound + (agpmem->pages << PAGE_SHIFT)) >= in agp_remap()
92 phys_page_map = (agpmem->memory->pages + (offset - agpmem->bound) / PAGE_SIZE); in agp_remap()
/openbmc/openbmc/meta-ibm/recipes-phosphor/dbus/fan-policy/swift/
H A Dfan-errors.yaml380 bound: true
393 bound: false
407 bound: true
434 bound: true
461 bound: true
488 bound: true
502 bound: true
603 bound: true
617 bound: true
630 bound: true
[all …]
/openbmc/openbmc/meta-ibm/recipes-phosphor/dbus/fan-policy/witherspoon/
H A Dfan-errors.yaml381 bound: true
394 bound: false
410 bound: true
439 bound: true
466 bound: true
493 bound: true
507 bound: true
608 bound: true
622 bound: true
635 bound: true
[all …]
/openbmc/phosphor-dbus-monitor/src/example/
H A Dtest.yaml335 bound: 115
348 bound: 115
361 bound: 115
373 bound: 115
385 bound: 115
397 bound: 115
409 bound: 115
421 bound: 115
433 bound: 115
445 bound: 115
[all …]
/openbmc/linux/drivers/base/
H A Dcomponent.c58 bool bound; member
68 bool bound; member
93 dev_name(m->parent), m->bound ? "bound" : "not bound"); in component_devices_show()
102 component ? (component->bound ? "bound" : "not bound") : "not registered"); in component_devices_show()
258 adev->bound = true; in try_to_bring_up_aggregate_device()
268 if (!adev->bound) { in try_to_bring_up_masters()
280 if (adev->bound) { in take_down_aggregate_device()
283 adev->bound = false; in take_down_aggregate_device()
575 WARN_ON(!component->bound); in component_unbind()
579 component->bound = false; in component_unbind()
[all …]
/openbmc/linux/Documentation/userspace-api/media/rc/
H A Dlirc-set-rec-carrier-range.rst13 LIRC_SET_REC_CARRIER_RANGE - Set lower bound of the carrier used to modulate
41 <LIRC_SET_REC_CARRIER_RANGE>` with the lower bound first and later call
42 :ref:`LIRC_SET_REC_CARRIER <LIRC_SET_REC_CARRIER>` with the upper bound.
/openbmc/u-boot/arch/arm/cpu/armv7/
H A Dsyslib.c31 u32 bound) in wait_on_value() argument
39 if (i == bound) in wait_on_value()
/openbmc/linux/tools/perf/tests/shell/lib/
H A Dperf_metric_validation.py88 def get_bound_value (bound, initval, ridx): argument
90 if isinstance(bound, int) or isinstance(bound, float):
91 val = bound
92 elif isinstance(bound, str):
93 if bound == '':
95 elif bound in alias:
99 elif bound.replace('.', '1').isdigit():
100 val = float(bound)
102 print("Wrong bound: {0}".format(bound))
104 print("Wrong bound: {0}".format(bound))
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Sensor/
H A DThreshold.errors.yaml3 description: Sensor device has exceeded its upper bound.
7 description: Sensor device has exceeded its lower bound.
/openbmc/linux/net/can/
H A Draw.c85 int bound; member
289 if (ro->bound) { in raw_notify()
298 ro->bound = 0; in raw_notify()
396 if (ro->bound) { in raw_release()
409 ro->bound = 0; in raw_release()
475 if (ro->bound) { in raw_bind()
487 ro->bound = 1; in raw_bind()
568 if (ro->bound && dev) { in raw_setsockopt()
577 if (ro->bound) { in raw_setsockopt()
628 if (ro->bound && dev) { in raw_setsockopt()
[all …]
/openbmc/u-boot/arch/arm/mach-omap2/am33xx/
H A Dclock.c121 u32 bound = LDELAY; in wait_for_clk_enable() local
128 if (--bound == 0) { in wait_for_clk_enable()
149 u32 bound = LDELAY; in wait_for_clk_disable() local
155 if (--bound == 0) { in wait_for_clk_disable()
/openbmc/libpldm/src/transport/
H A Daf-mctp.c39 bool bound; member
147 if (af_mctp->bound && hdr->request) { in pldm_transport_af_mctp_recv()
195 if (af_mctp->bound && !hdr->request) { in pldm_transport_af_mctp_send()
256 af_mctp->bound = false; in pldm_transport_af_mctp_init()
326 transport->bound = true; in pldm_transport_af_mctp_bind()
/openbmc/linux/drivers/net/ethernet/marvell/prestera/
H A Dprestera_matchall.c47 if (!block->mall.bound) in prestera_mall_prio_get()
107 block->mall.bound = true; in prestera_mall_replace()
126 block->mall.bound = false; in prestera_mall_destroy()

12345678910>>...23