Searched refs:rawValue (Results 1 – 5 of 5) sorted by relevance
276 u16 rawValue = 0; in phy_StoreTxPowerByRateBaseOld() local280 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 …]
219 u16 rawValue = 0; in phy_StoreTxPowerByRateBaseOld() local223 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 …]
221 u16 rawValue = 0; in phy_StoreTxPowerByRateBaseOld() local225 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 …]
186 …std::string rawValue = R"JSON(["interpolate",["linear"],["heatmap-density"],0,"rgba(0, 0, 255, 0)"… in getDefaultHeatmapColor() local187 return *conversion::convertJSON<ColorRampPropertyValue>(rawValue, error); in getDefaultHeatmapColor()
147 std::string rawValue = R"JSON(<%- JSON.stringify(property.default) %>)JSON";148 return *conversion::convertJSON<<%- propertyValueType(property)%>>(rawValue, error);