/third_party/python/Lib/lib2to3/fixes/ |
H A D | fix_throw.py | 19 power< any trailer< '.' 'throw' > 23 power< any trailer< '.' 'throw' > trailer< '(' exc=any ')' > > 54 throw_args.replace(pytree.Node(syms.power, with_tb))
|
H A D | fix_execfile.py | 19 power< 'execfile' trailer< '(' arglist< filename=any [',' globals=any [',' locals=any ] ] > ')' > > 21 power< 'execfile' trailer< '(' filename=any ')' > > 36 open_call = Node(syms.power, [Name("open"), open_args])
|
H A D | fix_apply.py | 18 power< 'apply' 49 (func.type != syms.power or 67 #new = pytree.Node(syms.power, (func, ArgList(l_newargs)))
|
H A D | fix_exitfunc.py | 25 power< 'sys' trailer< '.' 'exitfunc' > > 46 register = pytree.Node(syms.power,
|
/drivers/hdf_core/framework/model/sensor/driver/include/ |
H A D | sensor_device_type.h | 79 * measurement range, accuracy, and power consumption. 90 int32_t power; /**< Sensor power */ member
|
/drivers/peripheral/wlan/interfaces/include/ |
H A D | wifi_hal_base_feature.h | 24 * network devices, and power, and applying for, releasing, and moving network data buffers. 95 * and setting the transmit power. 175 * @brief Sets the transmit power. 178 * @param power Indicates the transmit power to set. 180 * @return Returns <b>0</b> if the transmit power is set; returns a negative value otherwise. 185 int32_t (*setTxPower)(const struct IWiFiBaseFeature *baseFeature, int32_t power);
|
/third_party/libwebsockets/include/libwebsockets/ |
H A D | lws-display.h | 50 int (*power)(const struct lws_display *disp, int state); member 152 * Turns the display to least power mode or completely off if possible.
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | MeasureUnit.java | 79 * <li>SINGLE: A single unit, optionally with a power and/or SI or binary prefix. 86 * The complexity determines which operations are available. For example, you cannot set the power 325 private final int power; field in MeasureUnit.MeasurePrefix 328 MeasurePrefix(int power, String identifier, int base) { in MeasurePrefix() argument 330 this.power = power; in MeasurePrefix() 357 * Returns the power of the prefix. For example: 358 * - if the prefix is "centi", the power will be -2. 359 * - if the prefix is "gibi", the power will be 3 (for base 1024). 364 return power; in getPower() [all...] |
/third_party/skia/third_party/externals/freetype/src/pfr/ |
H A D | pfrobjs.c | 525 FT_UInt power = 1 << FT_MSB( count ); in FT_LOCAL_DEF() local 526 FT_UInt probe = power * size; in FT_LOCAL_DEF() 527 FT_UInt extra = count - power; in FT_LOCAL_DEF()
|
/drivers/peripheral/sensor/interfaces/include/ |
H A D | sensor_type.h | 173 * sensor ID, maximum measurement range, accuracy, and power. 186 float power; /**< Sensor power */ member
|
/drivers/peripheral/sensor/interfaces/v1_0/ |
H A D | isensor_interface_vdi.h | 38 float power; member
|
/drivers/peripheral/wlan/hal/include/ |
H A D | wifi_hal_cmd.h | 35 int32_t HalCmdSetTxPower(const char *ifName, int32_t power);
|
/third_party/googletest/googletest/include/gtest/hwext/ |
H A D | gtest-tag.h | 74 static const int power = Power; member in testing::ext::TypeSet
|
/drivers/hdf_core/framework/model/display/driver/lcdkit/ |
H A D | lite_lcdkit.c | 33 if (panelCfg->setting.power[i].type == GPIO_POWER) { in PowerInit() 34 ret = GpioSetDir(panelCfg->setting.power[i].num, GPIO_DIR_OUT); in PowerInit()
|
/drivers/peripheral/wlan/hal/src/ |
H A D | wifi_hal_cmd.c | 176 int32_t HalCmdSetTxPower(const char *ifName, int32_t power) in HalCmdSetTxPower() argument 179 ret = SetTxPower(ifName, power); in HalCmdSetTxPower()
|
/drivers/peripheral/wlan/test/fuzztest/ |
H A D | wlan_common_fuzzer.cpp | 153 int32_t power = *const_cast<int32_t *>(reinterpret_cast<const int32_t *>(rawData)); in FuzzSetTxPower() local 155 interface->SetTxPower(interface, &feature, power); in FuzzSetTxPower()
|
/test/xts/hats/hdf/wlan/wifi/client/ |
H A D | hdf_client_test.cpp | 206 * @tc.desc: Wifi client set tx power function test 212 int32_t power = 10; in HWTEST_F() local 214 ret = SetTxPower(WLAN_IFNAME, power); in HWTEST_F() 305 * @tc.desc: Wifi client get current power mode function test 323 * @tc.desc: Wifi client set power mode function test 340 * @tc.desc: Wifi client set power mode function test 354 * @tc.desc: Wifi client set power mode function test 368 * @tc.desc: Wifi client set power mode function test
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A D | MaxTextureSizeTest.cpp | 287 float power = std::roundf(std::logf(mMaxTexture2DSize) / std::logf(2.0f)); in TEST_P() local 288 EXPECT_EQ(std::powf(2, power), mMaxTexture2DSize); in TEST_P()
|
/third_party/rust/crates/minimal-lexical/src/ |
H A D | slow.rs | 70 // Simple, we just need to multiply by the power of the radix. in positive_digit_comp() 108 /// a power-of-two, this is `m1 >= m2 * 2^(N2 - N1) * 5^-N1`. Therefore, if 143 // to either `theor_digits` or `real_digits` as a power of 2 (since it in negative_digit_comp() 146 // reflect the power you need to multiply `theor_digits` by. in negative_digit_comp() 149 // power of two. in negative_digit_comp() 198 // Multiply by the small power and add the native value. 199 (@mul $result:ident, $power:expr, $value:expr) => { 200 $result.data.mul_small($power).unwrap(); 368 // Use power reduction to make this faster. in scientific_exponent()
|
/drivers/peripheral/wlan/test/hdi_service/ |
H A D | wlan_hdi_direct_test.cpp | 515 * @tc.desc: Wifi hdi set tx power function test on STA feature
522 int32_t power = WLAN_TX_POWER;
in HWTEST_F() local 526 int32_t rc = g_wlanObj->SetTxPower(g_wlanObj, nullptr, power);
in HWTEST_F() 529 rc = g_wlanObj->SetTxPower(g_wlanObj, &ifeature, power);
in HWTEST_F() 532 rc = g_wlanObj->SetTxPower(g_wlanObj, &ifeature, power);
in HWTEST_F() 557 * @tc.desc: Wifi hdi get power mode function test
582 * @tc.desc: Wifi hdi set power mode function test
|
/test/xts/hats/hdf/wlan/hdi_service/ |
H A D | wlan_hdi_direct_test.cpp | 479 * @tc.desc: Wifi hdi set tx power function test on STA feature
485 int32_t power = WLAN_TX_POWER;
in HWTEST_F() local 489 int32_t rc = g_wlanObj->SetTxPower(g_wlanObj, nullptr, power);
in HWTEST_F() 492 rc = g_wlanObj->SetTxPower(g_wlanObj, &ifeature, power);
in HWTEST_F() 495 rc = g_wlanObj->SetTxPower(g_wlanObj, &ifeature, power);
in HWTEST_F() 519 * @tc.desc: Wifi hdi get power mode function test
543 * @tc.desc: Wifi hdi set power mode function test
|
/third_party/pulseaudio/speex/libspeexdsp/ |
H A D | mdf.c | 155 spx_word32_t Davg1; /* 1st recursive average of the residual power difference */ 156 spx_word32_t Davg2; /* 2nd recursive average of the residual power difference */ 160 spx_word32_t *power; /* Power of the far-end signal */ member 161 spx_float_t *power_1;/* Inverse power of far-end */ 227 /** Compute power spectrum of a half-complex (packed) vector */ 239 /** Compute power spectrum of a half-complex (packed) vector and accumulate */ 251 /** Compute cross-power spectrum of a half-complex (packed) vectors and add to acc */ 330 /** Compute weighted cross-power spectrum of a half-complex (packed) vector with conjugate */ 459 st->power = (spx_word32_t*)speex_alloc((frame_size+1)*sizeof(spx_word32_t)); in speex_echo_state_init_mc() 543 st->power[ in speex_echo_state_reset() [all...] |
/device/soc/rockchip/rk2206/adapter/hals/communication/wifi_lite/wifiservice/source/ |
H A D | wifi_hotspot.c | 256 WifiErrorCode AddTxPowerInfo(int power) in AddTxPowerInfo() argument
|
/device/soc/rockchip/common/sdk_linux/drivers/thermal/ |
H A D | thermal_core.h | 63 int power_actor_set_power(struct thermal_cooling_device *cdev, struct thermal_instance *ti, u32 power);
|
/device/soc/rockchip/rk3588/kernel/drivers/soc/rockchip/ |
H A D | thermal_core.h | 73 struct thermal_instance *ti, u32 power);
|