Home
last modified time | relevance | path

Searched refs:initial (Results 1 – 25 of 363) sorted by relevance

12345678910>>...15

/openbmc/phosphor-pid-control/test/
H A Dpid_stepwisecontroller_unittest.cpp29 ec::StepwiseInfo initial; in TEST() local
30 initial.negativeHysteresis = 3.0; in TEST()
31 initial.positiveHysteresis = 2.0; in TEST()
32 initial.reading[0] = 20.0; in TEST()
33 initial.reading[1] = 30.0; in TEST()
34 initial.reading[2] = std::numeric_limits<double>::quiet_NaN(); in TEST()
35 initial.output[0] = 40.0; in TEST()
36 initial.output[1] = 60.0; in TEST()
37 initial.isCeiling = false; in TEST()
41 initial); in TEST()
[all …]
H A Dpid_thermalcontroller_unittest.cpp33 ec::pidinfo initial; in TEST() local
36 &z, "therm1", inputs, setpoint, initial, ThermalType::margin); in TEST()
49 ec::pidinfo initial; in TEST() local
54 &z, "therm1", inputs, setpoint, initial, ThermalType::margin); in TEST()
68 ec::pidinfo initial; in TEST() local
71 &z, "therm1", inputs, setpoint, initial, ThermalType::margin); in TEST()
87 ec::pidinfo initial; in TEST() local
90 &z, "therm1", inputs, setpoint, initial, ThermalType::margin); in TEST()
104 ec::pidinfo initial; in TEST() local
107 &z, "therm1", inputs, setpoint, initial, ThermalType::margin); in TEST()
[all …]
H A Dpid_fancontroller_unittest.cpp35 ec::pidinfo initial; in TEST() local
38 FanController::createFanPid(&z, "fan1", inputs, initial); in TEST()
50 ec::pidinfo initial; in TEST() local
53 FanController::createFanPid(&z, "fan1", inputs, initial); in TEST()
64 ec::pidinfo initial; in TEST() local
67 FanController::createFanPid(&z, "fan1", inputs, initial); in TEST()
82 ec::pidinfo initial; in TEST() local
85 FanController::createFanPid(&z, "fan1", inputs, initial); in TEST()
101 ec::pidinfo initial; in TEST() local
104 FanController::createFanPid(&z, "fan1", inputs, initial); in TEST()
[all …]
/openbmc/phosphor-pid-control/pid/
H A Dutil.cpp14 void initializePIDStruct(ec::pid_info_t* info, const ec::pidinfo& initial) in initializePIDStruct() argument
16 info->checkHysterWithSetpt = initial.checkHysterWithSetpt; in initializePIDStruct()
17 info->ts = initial.ts; in initializePIDStruct()
18 info->proportionalCoeff = initial.proportionalCoeff; in initializePIDStruct()
19 info->integralCoeff = initial.integralCoeff; in initializePIDStruct()
20 info->derivativeCoeff = initial.derivativeCoeff; in initializePIDStruct()
21 info->feedFwdOffset = initial.feedFwdOffset; in initializePIDStruct()
22 info->feedFwdGain = initial.feedFwdGain; in initializePIDStruct()
23 info->integralLimit.min = initial.integralLimit.min; in initializePIDStruct()
24 info->integralLimit.max = initial.integralLimit.max; in initializePIDStruct()
[all …]
H A Dstepwisecontroller.cpp72 const std::vector<std::string>& inputs, const ec::StepwiseInfo& initial) in createStepwiseController() argument
81 thermal->setStepwiseInfo(initial); in createStepwiseController()
H A Dthermalcontroller.cpp53 const ec::pidinfo& initial, const ThermalType& type) in createThermalPid() argument
66 initializePIDStruct(info, initial); in createThermalPid()
/openbmc/bmcweb/test/redfish-core/include/
H A Dredfish_aggregator_test.cpp90 std::string initial("/redfish/v1/" + std::string(root) + "/"); in TEST() local
91 std::string correct(initial + "asdfjkl_" + std::string(id)); in TEST()
92 initial += id; in TEST()
93 jsonRequest["@odata.id"] = initial; in TEST()
125 std::string initial("/redfish/v1/" + std::string(root) + "/"); in TEST() local
126 initial += id; in TEST()
127 jsonRequest["@odata.id"] = initial; in TEST()
129 EXPECT_EQ(jsonRequest["@odata.id"], initial); in TEST()
153 std::string initial("/redfish/v1/" + std::string(root)); in TEST() local
154 jsonRequest["@odata.id"] = initial; in TEST()
[all …]
/openbmc/qemu/tests/tcg/ppc64/
H A Dsignal_save_restore_xer.c24 uint64_t initial = XER_CA | XER_CA32, restored; in main() local
36 : "r" (initial)); in main()
38 assert(saved == initial); in main()
/openbmc/openbmc/meta-raspberrypi/recipes-devtools/python/rpi-gpio/
H A D0001-Remove-nested-functions.patch109 +static inline int setup_one(unsigned int *gpio, int channel, int pud, int direction, int initial) {
131 + if (direction == OUTPUT && (initial == LOW || initial == HIGH)) {
132 + output_gpio(*gpio, initial);
140 // python function setup(channel(s), direction, pull_up_down=PUD_OFF, initial=None)
145 int initial = -1;
146 static char *kwlist[] = {"channel", "direction", "pull_up_down", "initial", NULL};
171 - if (direction == OUTPUT && (initial == LOW || initial == HIGH)) {
172 - output_gpio(gpio, initial);
179 …!PyArg_ParseTupleAndKeywords(args, kwargs, "Oi|ii", kwlist, &chanlist, &direction, &pud, &initial))
186 + if (!setup_one(&gpio, channel, pud, direction, initial))
[all …]
/openbmc/qemu/docs/system/
H A Dmanaged-startup.rst11 - initial state (after reset/power on state)
12 - with direct kernel loading, the initial state could be amended to execute
14 - with incoming migration, initial state will be amended with the migrated
22 that affect initial VM creation (like: ``-smp``/``-m``/``-numa`` ...) or
24 allows pausing QEMU before the initial VM creation, in a "preconfig" state,
H A Digvm.rst6 allows the cryptographic measurement of initial guest state for Confidential
8 verify the initial state of a guest via a remote attestation.
47 IGVM files configure the initial state of the guest using a set of directives.
50 initial CPU state using IGVM for SEV is not possible. When an IGVM file contains
94 - Setting of the initial CPU state for the boot CPU and additional CPUs is
101 The initial state of guest CPUs can be defined in the IGVM file for AMD SEV-ES
123 defines initial CPU state, the GPA for each VMSA must match this hardcoded
/openbmc/openbmc/meta-facebook/meta-harma/recipes-phosphor/gpio/phosphor-gpio-monitor/
H A Dinitial-poweron-device.service6 ExecStart=/usr/libexec/phosphor-gpio-monitor/initial-poweron-device
8 SyslogIdentifier=initial-poweron-device
/openbmc/dbus-sensors/src/tests/
H A Dtest_MCTPReactor.cpp232 auto initial = std::make_shared<MockMCTPDevice>(); in TEST() local
233 EXPECT_CALL(*initial, describe()) in TEST()
235 EXPECT_CALL(*initial, setup(testing::_)) in TEST()
237 EXPECT_CALL(*initial, remove()).WillOnce(testing::Invoke([&]() { in TEST()
251 .WillOnce(testing::Return(initial)) in TEST()
252 .WillOnce(testing::Return(initial)) in TEST()
256 reactor->manageMCTPDevice("/test", initial); in TEST()
261 EXPECT_TRUE(testing::Mock::VerifyAndClearExpectations(initial.get())); in TEST()
/openbmc/openbmc/poky/meta/recipes-bsp/u-boot/
H A Du-boot.inc30 # Default name of u-boot initial env, but enable individual recipes to change
32 UBOOT_INITIAL_ENV ?= "${PN}-initial-env"
89 # Generate the uboot-initial-env
91 oe_runmake -C ${S} O=${B}/${config} u-boot-initial-env
92 cp ${B}/${config}/u-boot-initial-env ${B}/${config}/u-boot-initial-env-${type}
107 # Generate the uboot-initial-env
109 oe_runmake -C ${S} O=${B} u-boot-initial-env
199 # Install the uboot-initial-env
201 …install -D -m 644 ${B}/${config}/u-boot-initial-env-${type} ${D}/${sysconfdir}/${UBOOT_INITIAL_ENV…
212 # Install the uboot-initial-env
[all …]
/openbmc/telemetry/tests/src/
H A Dtest_labeled_tuple.cpp43 LabeledTestingTuple initial(double_value, string_value); in TEST_P() local
44 nlohmann::json serialized(initial); in TEST_P()
63 EXPECT_EQ(initial, deserialized); in TEST_P()
/openbmc/openbmc/poky/meta/recipes-devtools/gcc/
H A Dlibgcc-initial.inc5 # a non-threaded and non-shared compiler (gcc-cross-initial), then use
6 # that to build libgcc-initial which is used to build glibc which we can
17 # libgcc-initial and then later libgcc.
19 # libgcc-initial is tricky as we need to imitate the non-threaded and
25 # glibc will fail to link with libgcc-initial due to a missing "exception
H A Dlibgcc-initial_15.1.bb2 require libgcc-initial.inc
/openbmc/openbmc-test-automation/lib/
H A Dutils_files.py65 initial = file.readlines()
78 if len(initial) < min_file_byte_size:
81 if initial == final:
/openbmc/openbmc/poky/scripts/
H A Dtest-reexec77 bitbake $target -c cleansstate > $LOGS/initial.$target.$task
78 bitbake $target >> $LOGS/initial.$target.$task
79 clearsstate $target >> $LOGS/initial.$target.$task
/openbmc/openbmc/poky/meta/recipes-core/glibc/
H A Dglibc-tests.inc18 # remove the initial depends
19 DEPENDS:remove = "libgcc-initial"
/openbmc/openbmc/poky/meta/conf/distro/include/
H A Dtcmode-default.inc26 PREFERRED_VERSION_libgcc-initial ?= "${GCCVERSION}"
30 PREFERRED_VERSION_nativesdk-libgcc-initial ?= "${SDKGCCVERSION}"
/openbmc/qemu/tests/qemu-iotests/
H A D260.out6 initial bitmap: name=bitmap0 dirty-clusters=1
23 initial bitmap: name=bitmap0 dirty-clusters=1
40 initial bitmap: name=bitmap0 dirty-clusters=1
/openbmc/openbmc/poky/meta/files/common-licenses/
H A DQPL-1.014 …ed to - copyright, trademark notices and disclaimers, as released by the initial developer of the …
19initial developer of the Software to distribute your modification in future versions of the Softwa…
35 c. If the items are not available to the general public, and the initial developer of the Software …
39 In no event shall the initial developers or copyright holders be liable for any damages whatsoever,…
H A DQPL-1.0-INRIA-200428 initial developer of the Software, is distributed.
39 initial developer of the Software to distribute your
42 other license(s) of the initial developer.
82 initial developer of the Software requests a copy of the items,
87 In no event shall the initial developers or copyright holders be
/openbmc/u-boot/doc/
H A DREADME.arm645 The initial arm64 U-Boot port was developed before hardware was available,
15 classical firmware (like initial hardware setup, CPU errata workarounds
22 is used to encode the initial addend of rela to u-boot.bin. After running,

12345678910>>...15