/system/bt/embdrv/g722/ |
D | g722_decode.cc | 73 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 …]
|
D | g722_encode.cc | 72 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 …]
|
D | g722_enc_dec.h | 99 g722_band_t band[2]; member 124 g722_band_t band[2]; member
|
/system/chre/util/nanoapp/ |
D | wifi.cc | 55 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/ |
D | utility.cc | 62 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/ |
D | netlink_utils.cpp | 442 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 …]
|
D | netlink_utils.h | 308 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/ |
D | wifi.h | 70 const char *parseChreWifiBand(uint8_t band);
|
/system/chre/apps/test/chqts/src/general_test/ |
D | basic_wifi_test.cc | 207 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/ |
D | wifi_convert_test.cpp | 37 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/ |
D | wifi.h | 312 uint8_t band; member
|
/system/core/libsystem/include/system/ |
D | radio.h | 125 radio_hal_band_config_t band; member
|
/system/chre/chpp/include/chpp/common/ |
D | wifi_types.h | 102 uint8_t band; member
|
/system/chre/chpp/common/ |
D | wifi_convert.c | 89 out->band = in->band; in chppWifiConvertScanResultFromChre() 355 out->band = in->band; in chppWifiConvertScanResultToChre()
|
/system/chre/chre_api/legacy/v1_4/chre/ |
D | wifi.h | 445 uint8_t band; member
|
/system/chre/chre_api/include/chre_api/chre/ |
D | wifi.h | 503 uint8_t band; member
|
/system/chre/chre_api/legacy/v1_2/chre/ |
D | wifi.h | 445 uint8_t band; member
|
/system/chre/chre_api/legacy/v1_3/chre/ |
D | wifi.h | 445 uint8_t band; member
|
/system/connectivity/wificond/ |
D | server.h | 134 int GetWiphyIndexFromBand(int band);
|
D | server.cpp | 607 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/ |
D | utility.cc | 155 init(result.band, rand_gen); in init()
|
/system/connectivity/wificond/scanning/ |
D | scan_utils.cpp | 455 rssi_adjust.band = NL80211_BAND_2GHZ; in StartScheduledScan()
|
/system/connectivity/wificond/net/kernel-header-latest/ |
D | nl80211.h | 5834 __u8 band; member
|