Home
last modified time | relevance | path

Searched full:coefficient (Results 1 – 25 of 28) sorted by relevance

12

/openbmc/openbmc/meta-openembedded/meta-oe/recipes-multimedia/audiofile/files/
H A D0008-Check-for-multiplication-overflow-in-MSADPCM-decodeS.patch76 - uint8_t code, const int16_t *coefficient)
77 + uint8_t code, const int16_t *coefficient, bool *ok=NULL)
79 int linearSample = (state.sample1 * coefficient[0] +
80 state.sample2 * coefficient[1]) >> 8;
112 - newSample = decodeSample(*state[0], code, coefficient[0]);
113 + newSample = decodeSample(*state[0], code, coefficient[0], &ok);
118 - newSample = decodeSample(*state[1], code, coefficient[1]);
119 + newSample = decodeSample(*state[1], code, coefficient[1], &ok);
/openbmc/bmcweb/redfish-core/schema/oem/openbmc/json-schema/
H A DOpenBMCManager.v1_0_0.json102 "description": "Feed forward gain coefficient for the PID.",
103 "longDescription": "Feed forward gain coefficient for the PID.",
108 "description": "Feed forward offset coefficient for the PID.",
109 "longDescription": "Feed forward offset coefficient for the PID.",
114 "description": "Integral Coefficient for the PID.",
115 "longDescription": "Integral Coefficient for the PID.",
168 "description": "Polynomial coefficient for the PID.",
169 "longDescription": "Polynomial coefficient for the PID.",
354 "description": "Feed forward gain coefficient for the PID.",
355 "longDescription": "Feed forward gain coefficient for the PID.",
[all …]
/openbmc/bmcweb/redfish-core/schema/oem/openbmc/csdl/
H A DOpenBMCManager_v1.xml126 <Annotation Term="OData.Description" String="Feed forward gain coefficient for the PID."/>
127 … <Annotation Term="OData.LongDescription" String="Feed forward gain coefficient for the PID."/>
131 … <Annotation Term="OData.Description" String="Feed forward offset coefficient for the PID."/>
132 … <Annotation Term="OData.LongDescription" String="Feed forward offset coefficient for the PID."/>
136 <Annotation Term="OData.Description" String="Integral Coefficient for the PID."/>
137 <Annotation Term="OData.LongDescription" String="Integral Coefficient for the PID."/>
181 <Annotation Term="OData.Description" String="Polynomial coefficient for the PID."/>
182 <Annotation Term="OData.LongDescription" String="Polynomial coefficient for the PID."/>
228 <Annotation Term="OData.Description" String="Feed forward gain coefficient for the PID."/>
229 … <Annotation Term="OData.LongDescription" String="Feed forward gain coefficient for the PID."/>
[all …]
/openbmc/phosphor-pid-control/examples/
H A DREADME68 "proportionalCoeff": 0.0, /* The proportional coefficient. (double) */
69 "integralCoeff": 0.0, /* The integral coefficient. (double) */
70 "feedFwdOffsetCoeff": 0.0, /* The feed-forward offset coefficient. (double) */
71 "feedFwdGainCoeff": 0.010, /* The feed-forward gain coefficient. (double) */
/openbmc/qemu/libdecnumber/dpd/
H A Ddecimal32.c73 /* rounding mode (used if the coefficient is more than DECIMAL32_Pmax */
79 /* by reducing its exponent and multiplying the coefficient by a */
113 if ((*dn->lsu!=0 || dn->digits>1) /* non-zero coefficient */ in decimal32FromNumber()
114 && (dn->digits<DECIMAL32_Pmax)) { /* coefficient fits */ in decimal32FromNumber()
140 Int pad=0; /* coefficient pad digits */ in decimal32FromNumber()
189 uInt msd; /* coefficient MSD */ in decimal32ToNumber()
210 return dn; /* no coefficient needed */ in decimal32ToNumber()
220 /* get the coefficient */ in decimal32ToNumber()
221 sour&=0x000fffff; /* clean coefficient continuation */ in decimal32ToNumber()
223 sour|=msd<<20; /* prefix to coefficient */ in decimal32ToNumber()
[all …]
H A Ddecimal128.c73 /* rounding mode (used if the coefficient is more than DECIMAL128_Pmax*/
79 /* by reducing its exponent and multiplying the coefficient by a */
117 if ((*dn->lsu!=0 || dn->digits>1) /* non-zero coefficient */ in decimal128FromNumber()
118 && (dn->digits<DECIMAL128_Pmax)) { /* coefficient fits */ in decimal128FromNumber()
144 Int pad=0; /* coefficient pad digits */ in decimal128FromNumber()
197 uInt msd; /* coefficient MSD */ in decimal128ToNumber()
234 return dn; /* no coefficient needed */ in decimal128ToNumber()
244 /* get the coefficient */ in decimal128ToNumber()
245 sourhi&=0x00003fff; /* clean coefficient continuation */ in decimal128ToNumber()
247 sourhi|=msd<<14; /* prefix to coefficient */ in decimal128ToNumber()
[all …]
H A Ddecimal64.c79 /* rounding mode (used if the coefficient is more than DECIMAL64_Pmax */
85 /* by reducing its exponent and multiplying the coefficient by a */
121 if ((*dn->lsu!=0 || dn->digits>1) /* non-zero coefficient */ in decimal64FromNumber()
122 && (dn->digits<DECIMAL64_Pmax)) { /* coefficient fits */ in decimal64FromNumber()
148 Int pad=0; /* coefficient pad digits */ in decimal64FromNumber()
214 uInt msd; /* coefficient MSD */ in decimal64ToNumber()
245 return dn; /* no coefficient needed */ in decimal64ToNumber()
255 /* get the coefficient */ in decimal64ToNumber()
256 sourhi&=0x0003ffff; /* clean coefficient continuation */ in decimal64ToNumber()
258 sourhi|=msd<<18; /* prefix to coefficient */ in decimal64ToNumber()
[all …]
/openbmc/phosphor-pid-control/
H A Dconfigure.md230 | `proportionalCoeff` | `double` | The proportional coefficient. …
231 | `integralCoeff` | `double` | The integral coefficient. …
232 | `feedFwdOffsetCoeff` | `double` | The feed forward offset coefficient. …
233 | `feedFwdGainCoeff` | `double` | The feed forward gain coefficient. …
245 coefficient: RPM/C sec
/openbmc/qemu/include/libdecnumber/
H A DdecNumber.h81 int32_t digits; /* Count of digits in the coefficient; >0 */
85 /* Coefficient, from least significant unit */
98 /* Each integer of the coefficient (except potentially the last) */
H A DdecNumberLocal.h287 /* number, whose coefficient is a string of bcd8 uBytes */
348 /* DFISCCZERO -- test for coefficient continuation being zero */
349 /* DFISCC01 -- test for coefficient contains only 0s and 1s */
412 /* coefficient is zero */
447 /* Macros to decode the coefficient in a finite decFloat *df into */
473 /* GETCOEFF extracts the coefficient of the current format */
474 /* GETWCOEFF extracts the coefficient of the next-wider format. */
543 /* Macros to decode the coefficient in a finite decFloat *df into */
596 /* Macros to decode the coefficient in a finite decFloat *df into */
/openbmc/qemu/crypto/
H A Drsakey.h56 /* The CRT coefficient */
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/
H A DControl.v1_7_0.json499 "description": "The differential coefficient.",
501 …"longDescription": "This property shall contain the coefficient for the differential factor in a c…
509 "description": "The integral coefficient.",
511 …"longDescription": "This property shall contain the coefficient for the integral factor in a contr…
519 "description": "The proportional coefficient.",
521 …"longDescription": "This property shall contain the coefficient for the proportional factor in a c…
/openbmc/qemu/libdecnumber/
H A DdecNumber.c157 /* lsd -- least significant digit (of coefficient) */
158 /* lsu -- least significant Unit (of coefficient) */
159 /* msd -- most significant digit (of coefficient) */
161 /* msu -- most significant Unit (of coefficient) */
646 /* The length of the coefficient and the size of the exponent are */
749 /* good; drop through to convert the integer to coefficient */ in decNumberFromString()
826 /* Place the coefficient into the selected Unit array */ in decNumberFromString()
911 dzero.exponent=rhs->exponent; /* [no coefficient expansion] */ in decNumberAbs()
1804 dzero.exponent=rhs->exponent; /* [no coefficient expansion] */ in decNumberMinus()
2046 dzero.exponent=rhs->exponent; /* [no coefficient expansion] */ in decNumberPlus()
[all …]
/openbmc/u-boot/drivers/serial/
H A Dserial_s5p.c37 * The coefficient, used to calculate the baudrate on S5P UARTs is
/openbmc/bmcweb/redfish-core/schema/dmtf/csdl/
H A DControl_v1.xml266 <Annotation Term="OData.Description" String="The proportional coefficient."/>
267 …n Term="OData.LongDescription" String="This property shall contain the coefficient for the proport…
272 <Annotation Term="OData.Description" String="The integral coefficient."/>
273 …n Term="OData.LongDescription" String="This property shall contain the coefficient for the integra…
278 <Annotation Term="OData.Description" String="The differential coefficient."/>
279 …n Term="OData.LongDescription" String="This property shall contain the coefficient for the differe…
/openbmc/qemu/ui/
H A Dvnc-enc-zywrle.h310 because it's only difference that coefficient position.
391 ( r:power coefficient bi:effective MSB in input bo:effective MSB in output )
527 coefficient packing/unpacking stuffs.
528 Wavelet transform makes 4 sub coefficient image from 1 original image.
/openbmc/u-boot/lib/
H A Dcrc32.c42 Polynomials over GF(2) are represented in binary, one bit per coefficient,
/openbmc/intel-ipmi-oem/
H A Dipmi-allowlist.conf182 0x2e:0xF0:0x7f7f //<Intel OEM>:<Set HW Protection Coefficient>
183 0x2e:0xF1:0xff7f //<Intel OEM>:<Get HW Protection Coefficient>
/openbmc/pldm/libpldmresponder/
H A Dplatform_numeric_effecter.hpp26 /** @brief Function to get the effecter value by PDR factor coefficient, etc.
/openbmc/u-boot/drivers/i2c/
H A Dkona_i2c.c112 uint8_t time_p; /* Timing coefficient */
H A Dstm32f7_i2c.c163 * @dnf: Digital filter coefficient (0-16)
/openbmc/u-boot/drivers/phy/marvell/
H A Dcomphy_cp110.c363 /* Configure initial and final coefficient value for receiver */ in comphy_pcie_power_up()
844 /* DFE F3-F5 Coefficient Control */ in comphy_sata_power_up()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/fbida/files/
H A Dsupport-jpeg-turbo.patch77 * coefficient arrays and thus do not require any lossy decompression
1718 + * operation in the DCT coefficient block domain - it discards higher-order
/openbmc/qemu/hw/display/
H A Dxlnx_dp.c1217 * coefficient and added.
/openbmc/qemu/target/i386/tcg/
H A Dfpu_helper.c1332 * coefficient here to achieve a sufficiently accurate result, because
1333 * the coefficient in this minimax approximation is very close to

12