Home
last modified time | relevance | path

Searched refs:rawValue (Results 1 – 5 of 5) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8189es/hal/
H A Dhal_com_phycfg.c276 u16 rawValue = 0; in phy_StoreTxPowerByRateBaseOld() local
280 rawValue = ( u16 ) ( pHalData->MCSTxPowerLevelOriginalOffset[0][7] >> 8 ) & 0xFF; in phy_StoreTxPowerByRateBaseOld()
281 base = ( rawValue >> 4 ) * 10 + ( rawValue & 0xF ); in phy_StoreTxPowerByRateBaseOld()
284 rawValue = ( u16 ) ( pHalData->MCSTxPowerLevelOriginalOffset[0][1] >> 24 ) & 0xFF; in phy_StoreTxPowerByRateBaseOld()
285 base = ( rawValue >> 4 ) * 10 + ( rawValue & 0xF ); in phy_StoreTxPowerByRateBaseOld()
288 rawValue = ( u16 ) ( pHalData->MCSTxPowerLevelOriginalOffset[0][3] >> 24 ) & 0xFF; in phy_StoreTxPowerByRateBaseOld()
289 base = ( rawValue >> 4 ) * 10 + ( rawValue & 0xF ); in phy_StoreTxPowerByRateBaseOld()
292 rawValue = ( u16 ) ( pHalData->MCSTxPowerLevelOriginalOffset[0][5] >> 24 ) & 0xFF; in phy_StoreTxPowerByRateBaseOld()
293 base = ( rawValue >> 4) * 10 + ( rawValue & 0xF ); in phy_StoreTxPowerByRateBaseOld()
296 rawValue = ( u16 ) ( pHalData->MCSTxPowerLevelOriginalOffset[0][7] & 0xFF ); in phy_StoreTxPowerByRateBaseOld()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723bu/hal/
H A Dhal_com_phycfg.c219 u16 rawValue = 0; in phy_StoreTxPowerByRateBaseOld() local
223 rawValue = ( u16 ) ( pHalData->MCSTxPowerLevelOriginalOffset[0][7] >> 8 ) & 0xFF; in phy_StoreTxPowerByRateBaseOld()
224 base = ( rawValue >> 4 ) * 10 + ( rawValue & 0xF ); in phy_StoreTxPowerByRateBaseOld()
227 rawValue = ( u16 ) ( pHalData->MCSTxPowerLevelOriginalOffset[0][1] >> 24 ) & 0xFF; in phy_StoreTxPowerByRateBaseOld()
228 base = ( rawValue >> 4 ) * 10 + ( rawValue & 0xF ); in phy_StoreTxPowerByRateBaseOld()
231 rawValue = ( u16 ) ( pHalData->MCSTxPowerLevelOriginalOffset[0][3] >> 24 ) & 0xFF; in phy_StoreTxPowerByRateBaseOld()
232 base = ( rawValue >> 4 ) * 10 + ( rawValue & 0xF ); in phy_StoreTxPowerByRateBaseOld()
235 rawValue = ( u16 ) ( pHalData->MCSTxPowerLevelOriginalOffset[0][5] >> 24 ) & 0xFF; in phy_StoreTxPowerByRateBaseOld()
236 base = ( rawValue >> 4) * 10 + ( rawValue & 0xF ); in phy_StoreTxPowerByRateBaseOld()
239 rawValue = ( u16 ) ( pHalData->MCSTxPowerLevelOriginalOffset[0][7] & 0xFF ); in phy_StoreTxPowerByRateBaseOld()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8822be/hal/
H A Dhal_com_phycfg.c221 u16 rawValue = 0; in phy_StoreTxPowerByRateBaseOld() local
225 rawValue = (u16)(pHalData->MCSTxPowerLevelOriginalOffset[0][7] >> 8) & 0xFF; in phy_StoreTxPowerByRateBaseOld()
226 base = (rawValue >> 4) * 10 + (rawValue & 0xF); in phy_StoreTxPowerByRateBaseOld()
229 rawValue = (u16)(pHalData->MCSTxPowerLevelOriginalOffset[0][1] >> 24) & 0xFF; in phy_StoreTxPowerByRateBaseOld()
230 base = (rawValue >> 4) * 10 + (rawValue & 0xF); in phy_StoreTxPowerByRateBaseOld()
233 rawValue = (u16)(pHalData->MCSTxPowerLevelOriginalOffset[0][3] >> 24) & 0xFF; in phy_StoreTxPowerByRateBaseOld()
234 base = (rawValue >> 4) * 10 + (rawValue & 0xF); in phy_StoreTxPowerByRateBaseOld()
237 rawValue = (u16)(pHalData->MCSTxPowerLevelOriginalOffset[0][5] >> 24) & 0xFF; in phy_StoreTxPowerByRateBaseOld()
238 base = (rawValue >> 4) * 10 + (rawValue & 0xF); in phy_StoreTxPowerByRateBaseOld()
241 rawValue = (u16)(pHalData->MCSTxPowerLevelOriginalOffset[0][7] & 0xFF); in phy_StoreTxPowerByRateBaseOld()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/layers/
H A Dheatmap_layer.cpp186 …std::string rawValue = R"JSON(["interpolate",["linear"],["heatmap-density"],0,"rgba(0, 0, 255, 0)"… in getDefaultHeatmapColor() local
187 return *conversion::convertJSON<ColorRampPropertyValue>(rawValue, error); in getDefaultHeatmapColor()
H A Dlayer.cpp.ejs147 std::string rawValue = R"JSON(<%- JSON.stringify(property.default) %>)JSON";
148 return *conversion::convertJSON<<%- propertyValueType(property)%>>(rawValue, error);