Home
last modified time | relevance | path

Searched refs:band (Results 1 – 23 of 23) sorted by relevance

/system/bt/embdrv/g722/
Dg722_decode.cc73 static void block4(g722_band_t *band, int d);
75 static void block4(g722_band_t *band, int d) in block4() argument
87 band->d[0] = d; in block4()
88 band->r[0] = __ssat16(band->s + d); in block4()
91 band->p[0] = __ssat16(band->sz + d); in block4()
96 sg[i] = band->p[i] >> 15; in block4()
98 wd1 = __ssat16(band->a[1] << 2); in block4()
106 ap2 += (band->a[2]*32512) >> 15; in block4()
111 band->ap[2] = ap2; in block4()
114 sg[0] = band->p[0] >> 15; in block4()
[all …]
Dg722_encode.cc72 static void block4(g722_band_t *band, int d) in block4() argument
84 band->d[0] = d; in block4()
85 band->r[0] = saturate(band->s + d); in block4()
88 band->p[0] = saturate(band->sz + d); in block4()
92 sg[i] = band->p[i] >> 15; in block4()
93 wd1 = saturate(band->a[1] << 2); in block4()
100 ap2 += (band->a[2]*32512) >> 15; in block4()
105 band->ap[2] = ap2; in block4()
108 sg[0] = band->p[0] >> 15; in block4()
109 sg[1] = band->p[1] >> 15; in block4()
[all …]
Dg722_enc_dec.h99 g722_band_t band[2]; member
124 g722_band_t band[2]; member
/system/chre/util/nanoapp/
Dwifi.cc55 LOGI(" band: %s (%" PRIu8 ")", parseChreWifiBand(result.band), in logChreWifiResult()
56 result.band); in logChreWifiResult()
105 const char *parseChreWifiBand(uint8_t band) { in parseChreWifiBand() argument
106 switch (band) { in parseChreWifiBand()
/system/chre/apps/wifi_offload/
Dutility.cc62 const char *ParseChreWifiBand(uint8_t band) { in ParseChreWifiBand() argument
63 switch (band) { in ParseChreWifiBand()
128 LOGI(" band: %s (%" PRIu8 ")", ParseChreWifiBand(result.band), result.band); in LogChreScanResult()
/system/connectivity/wificond/net/
Dnetlink_utils.cpp442 for (auto& band : bands) { in ParseBandInfo() local
444 if (band.GetAttribute(NL80211_BAND_ATTR_FREQS, &freqs_attr)) { in ParseBandInfo()
447 if (band.HasAttribute(NL80211_BAND_ATTR_HT_CAPA)) { in ParseBandInfo()
450 if (band.HasAttribute(NL80211_BAND_ATTR_VHT_CAPA)) { in ParseBandInfo()
455 if (band.GetAttribute(NL80211_BAND_ATTR_IFTYPE_DATA, in ParseBandInfo()
459 ParseHtVhtPhyCapabilities(band, out_band_info); in ParseBandInfo()
539 void NetlinkUtils::ParseHtVhtPhyCapabilities(const NL80211NestedAttr& band, in ParseHtVhtPhyCapabilities() argument
541 ParseHtMcsSetAttribute(band, out_band_info); in ParseHtVhtPhyCapabilities()
542 ParseVhtMcsSetAttribute(band, out_band_info); in ParseHtVhtPhyCapabilities()
543 ParseVhtCapAttribute(band, out_band_info); in ParseHtVhtPhyCapabilities()
[all …]
Dnetlink_utils.h308 void ParseHtVhtPhyCapabilities(const NL80211NestedAttr& band,
310 void ParseHtMcsSetAttribute(const NL80211NestedAttr& band,
312 void ParseVhtMcsSetAttribute(const NL80211NestedAttr& band,
319 void ParseVhtCapAttribute(const NL80211NestedAttr& band,
/system/chre/util/include/chre/util/nanoapp/
Dwifi.h70 const char *parseChreWifiBand(uint8_t band);
/system/chre/apps/test/chqts/src/general_test/
Dbasic_wifi_test.cc207 if (result.band == CHRE_WIFI_BAND_2_4_GHZ && in validatePrimaryChannel()
211 } else if (result.band == CHRE_WIFI_BAND_5_GHZ) { in validatePrimaryChannel()
543 if (results[i].band != CHRE_WIFI_BAND_2_4_GHZ && in validateWifiScanResult()
544 results[i].band != CHRE_WIFI_BAND_5_GHZ) { in validateWifiScanResult()
545 chreLog(CHRE_LOG_ERROR, "Got unexpected band %d", results[i].band); in validateWifiScanResult()
/system/chre/chpp/test/
Dwifi_convert_test.cpp37 EXPECT_EQ(chppAp.band, chreAp.band); in validateScanResult()
372 .band = CHRE_WIFI_BAND_2_4_GHZ, in TEST()
411 .band = CHRE_WIFI_BAND_2_4_GHZ, in TEST()
429 .band = CHRE_WIFI_BAND_5_GHZ, in TEST()
/system/chre/chre_api/legacy/v1_1/chre/
Dwifi.h312 uint8_t band; member
/system/core/libsystem/include/system/
Dradio.h125 radio_hal_band_config_t band; member
/system/chre/chpp/include/chpp/common/
Dwifi_types.h102 uint8_t band; member
/system/chre/chpp/common/
Dwifi_convert.c89 out->band = in->band; in chppWifiConvertScanResultFromChre()
355 out->band = in->band; in chppWifiConvertScanResultToChre()
/system/chre/chre_api/legacy/v1_4/chre/
Dwifi.h445 uint8_t band; member
/system/chre/chre_api/include/chre_api/chre/
Dwifi.h503 uint8_t band; member
/system/chre/chre_api/legacy/v1_2/chre/
Dwifi.h445 uint8_t band; member
/system/chre/chre_api/legacy/v1_3/chre/
Dwifi.h445 uint8_t band; member
/system/connectivity/wificond/
Dserver.h134 int GetWiphyIndexFromBand(int band);
Dserver.cpp607 int Server::GetWiphyIndexFromBand(int band) { in GetWiphyIndexFromBand() argument
608 auto iter = band_to_wiphy_index_map_.find(band); in GetWiphyIndexFromBand()
/system/chre/apps/wifi_offload/test/
Dutility.cc155 init(result.band, rand_gen); in init()
/system/connectivity/wificond/scanning/
Dscan_utils.cpp455 rssi_adjust.band = NL80211_BAND_2GHZ; in StartScheduledScan()
/system/connectivity/wificond/net/kernel-header-latest/
Dnl80211.h5834 __u8 band; member