/hal_nxp-latest/mcux/mcux-sdk/components/srtm/srtm/ |
D | srtm_peercore.c | 47 SRTM_List_Init(&core->channels); in SRTM_PeerCore_Create() 71 while (!SRTM_List_IsEmpty(&core->channels)) in SRTM_PeerCore_Destroy() 73 list = core->channels.next; in SRTM_PeerCore_Destroy() 111 for (list = core->channels.next; list != &core->channels; list = list->next) in SRTM_PeerCore_Start() 137 for (list = core->channels.next; list != &core->channels; list = list->next) in SRTM_PeerCore_Stop() 201 SRTM_List_AddTail(&core->channels, &channel->node); in SRTM_PeerCore_AddChannel()
|
D | srtm_peercore_struct.h | 26 srtm_list_t channels; /*!< SRTM channel list to maintain channels added to the peer core */ member
|
/hal_nxp-latest/mcux/middleware/wifi_nxp/wifidriver/ |
D | mlan_11v.c | 152 static bool wlan_11v_find_in_channels(t_u8 *channels, t_u8 entry_num, t_u8 chan) in wlan_11v_find_in_channels() argument 157 if (channels[i] == chan) in wlan_11v_find_in_channels() 256 if (!wlan_11v_find_in_channels(pnlist_rep_param->channels, entry_num, rep->channel)) in wlan_process_mgmt_wnm_btm_req() 258 pnlist_rep_param->channels[entry_num] = rep->channel; in wlan_process_mgmt_wnm_btm_req() 297 pnlist_rep_param->channels[0] = preport[neighbor_index].channel; in wlan_process_mgmt_wnm_btm_req()
|
D | mlan_11k.c | 889 static bool wifi_find_in_channels(t_u8 *channels, t_u8 entry_num, t_u8 chan) in wifi_find_in_channels() argument 894 if (channels[i] == chan) in wifi_find_in_channels() 964 if (!wifi_find_in_channels(pnlist_rep_param->channels, entry_num, chan)) in wlan_process_neighbor_report_response() 966 pnlist_rep_param->channels[entry_num] = chan; in wlan_process_neighbor_report_response()
|
D | wifi-internal.h | 445 void wifi_setup_channel_info(void *channels, int num_channels, t_u8 band);
|
/hal_nxp-latest/mcux/mcux-sdk/components/srtm/services/ |
D | srtm_sai_edma_adapter.c | 66 uint32_t channels; member 167 alignment = ((uint32_t)(rtm->bitWidth) >> 3U) * rtm->channels; in SRTM_SaiEdmaAdaptor_ResetLocalBuf() 716 handle->txRtm.channels); in SRTM_SaiEdmaAdapter_SetConfig() 733 handle->rxRtm.channels); in SRTM_SaiEdmaAdapter_SetConfig() 866 otherRtm->channels = thisRtm->channels; in SRTM_SaiEdmaAdapter_Start() 880 …(uint32_t)(((uint64_t)thisRtm->srate * (uint32_t)thisRtm->bitWidth * thisRtm->channels * (*guardTi… in SRTM_SaiEdmaAdapter_Start() 1100 …r_t adapter, srtm_audio_dir_t dir, uint8_t index, uint8_t format, uint8_t channels, uint32_t srate) in SRTM_SaiEdmaAdapter_SetParam() argument 1110 index, format, channels, srate); in SRTM_SaiEdmaAdapter_SetParam() 1119 if (format >= ARRAY_SIZE(saiBitsWidthMap) || channels >= ARRAY_SIZE(saiChannelMap)) in SRTM_SaiEdmaAdapter_SetParam() 1122 saiDirection[dir], format, channels); in SRTM_SaiEdmaAdapter_SetParam() [all …]
|
D | srtm_sai_sdma_adapter.c | 874 uint8_t channels, bitWidth; in SRTM_SaiSdmaAdapter_SetFormat() local 915 channels = paramRtm->streamMode == kSAI_Stereo ? 2U : 1U; in SRTM_SaiSdmaAdapter_SetFormat() 946 … SAI_TxSetBitClockRate(handle->sai, cfg->mclkConfig.mclkHz, paramRtm->srate, bitWidth, channels); in SRTM_SaiSdmaAdapter_SetFormat() 954 … SAI_RxSetBitClockRate(handle->sai, cfg->mclkConfig.mclkHz, paramRtm->srate, bitWidth, channels); in SRTM_SaiSdmaAdapter_SetFormat() 1337 …r_t adapter, srtm_audio_dir_t dir, uint8_t index, uint8_t format, uint8_t channels, uint32_t srate) in SRTM_SaiSdmaAdapter_SetParam() argument 1348 index, format, channels, srate); in SRTM_SaiSdmaAdapter_SetParam() 1357 if ((format > (uint8_t)SRTM_Audio_DSD32bits) || (channels >= ARRAY_SIZE(saiChannelMap))) in SRTM_SaiSdmaAdapter_SetParam() 1360 saiDirection[dir], format, channels); in SRTM_SaiSdmaAdapter_SetParam() 1383 …bytePerSample = ((uint32_t)(rtm->bitWidth) >> 3U) * (channels != 0U ? (uint32_t)channels : 1UL); in SRTM_SaiSdmaAdapter_SetParam() 1387 rtm->streamMode = saiChannelMap[channels]; in SRTM_SaiSdmaAdapter_SetParam()
|
D | srtm_audio_service.h | 103 uint8_t channels, 141 uint8_t channels; member
|
D | srtm_pdm_edma_adapter.c | 1055 …r_t adapter, srtm_audio_dir_t dir, uint8_t index, uint8_t format, uint8_t channels, uint32_t srate) in SRTM_PdmEdmaAdapter_SetParam() argument 1066 index, format, channels, srate); in SRTM_PdmEdmaAdapter_SetParam() 1075 if (channels == 0U) in SRTM_PdmEdmaAdapter_SetParam() 1077 channels = 1U; /* To be compatible with SAI Mono channel definition. */ in SRTM_PdmEdmaAdapter_SetParam() 1079 if (channels > (uint32_t)FSL_FEATURE_PDM_CHANNEL_NUM) in SRTM_PdmEdmaAdapter_SetParam() 1082 saiDirection[dir], channels); in SRTM_PdmEdmaAdapter_SetParam() 1101 bytePerSample = ((uint32_t)rtm->bitWidth >> 3U) * channels; in SRTM_PdmEdmaAdapter_SetParam() 1105 rtm->pdmChannels = channels; in SRTM_PdmEdmaAdapter_SetParam()
|
D | srtm_pdm_sdma_adapter.c | 938 …r_t adapter, srtm_audio_dir_t dir, uint8_t index, uint8_t format, uint8_t channels, uint32_t srate) in SRTM_PdmSdmaAdapter_SetParam() argument 949 index, format, channels, srate); in SRTM_PdmSdmaAdapter_SetParam() 958 if (channels == 0U) in SRTM_PdmSdmaAdapter_SetParam() 960 channels = 1U; /* To be compatible with SAI Mono channel definition. */ in SRTM_PdmSdmaAdapter_SetParam() 962 if (channels > (uint32_t)FSL_FEATURE_PDM_CHANNEL_NUM) in SRTM_PdmSdmaAdapter_SetParam() 965 saiDirection[dir], channels); in SRTM_PdmSdmaAdapter_SetParam() 984 bytePerSample = ((uint32_t)rtm->bitWidth >> 3U) * channels; in SRTM_PdmSdmaAdapter_SetParam() 988 rtm->pdmChannels = channels; in SRTM_PdmSdmaAdapter_SetParam()
|
D | srtm_audio_service.c | 376 … status = sai->setParam(sai, SRTM_AudioDirTx, iface->index, audioReq->format, audioReq->channels, in SRTM_AudioService_Request() 515 … status = sai->setParam(sai, SRTM_AudioDirRx, iface->index, audioReq->format, audioReq->channels, in SRTM_AudioService_Request()
|
/hal_nxp-latest/mcux/middleware/wifi_nxp/wifidriver/wpa_supp_if/ |
D | rtos_wpa_supp_if.c | 736 static void wifi_nxp_sort_channels(t_u8 channels[], unsigned char num_chans) in wifi_nxp_sort_channels() argument 745 if ((t_u8)channels[j - 1] > (t_u8)channels[j]) in wifi_nxp_sort_channels() 747 SWAP_U8(channels[j - 1], channels[j]); in wifi_nxp_sort_channels() 765 t_u8 channels[WIFI_SCAN_MAX_NUM_CHAN] = {0}; in wifi_nxp_wpa_supp_scan2() local 796 channels[i] = freq_to_chan(params->freqs[i]); in wifi_nxp_wpa_supp_scan2() 858 wifi_nxp_sort_channels(channels, num_chans); in wifi_nxp_wpa_supp_scan2() 861 chan_list[i].chan_number = channels[i]; in wifi_nxp_wpa_supp_scan2() 2152 struct wpa_supp_event_channel *chan = &band->channels[count]; in wifi_nxp_parse_sband() 2160 chan->wpa_supp_flags = event->channels[count].wifi_nxp_flags; in wifi_nxp_parse_sband() 2161 chan->wpa_supp_max_power = event->channels[count].wifi_nxp_max_power; in wifi_nxp_parse_sband() [all …]
|
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMX9352/drivers/ |
D | fsl_edma_soc_rev2.h | 82 .channels = 31, 90 .channels = 64,
|
/hal_nxp-latest/mcux/mcux-sdk/drivers/easrc/ |
D | fsl_asrc.h | 315 uint32_t channels, 478 …nline void ASRC_SetContextChannelNumber(ASRC_Type *base, asrc_context_t context, uint32_t channels) in ASRC_SetContextChannelNumber() argument 481 base->CTX_CTRL[context] |= ASRC_CTX_CTRL_NUM_CH_EN(channels - 1U); in ASRC_SetContextChannelNumber()
|
D | fsl_asrc.c | 833 uint32_t channels, in ASRC_GetContextDefaultConfig() argument 841 config->contextChannelNums = (uint8_t)channels; in ASRC_GetContextDefaultConfig() 847 config->contextInput.accessCtrl.accessGroupLen = (uint8_t)channels; in ASRC_GetContextDefaultConfig() 848 config->contextInput.accessCtrl.accessLen = (uint8_t)channels; in ASRC_GetContextDefaultConfig() 858 config->contextOutput.accessCtrl.accessGroupLen = (uint8_t)channels; in ASRC_GetContextDefaultConfig() 859 config->contextOutput.accessCtrl.accessLen = (uint8_t)channels; in ASRC_GetContextDefaultConfig()
|
/hal_nxp-latest/mcux/mcux-sdk/components/video/display/it6161/ |
D | hdmi_tx.c | 914 uint8_t channels = 0U; in HDMI_AudioInfoframePack() local 930 if (frame->channels >= 2U) in HDMI_AudioInfoframePack() 932 channels = frame->channels - 1U; in HDMI_AudioInfoframePack() 936 channels = 0; in HDMI_AudioInfoframePack() 947 ptr[0] = (((uint8_t)frame->coding_type & 0xFU) << 4U) | (channels & 0x7U); in HDMI_AudioInfoframePack() 963 static void HDMITX_AudioInfoframeSet(display_handle_t *handle, uint8_t channels) in HDMITX_AudioInfoframeSet() argument 970 frame.channels = channels; in HDMITX_AudioInfoframeSet()
|
/hal_nxp-latest/mcux/mcux-sdk/drivers/edma_rev2/ |
D | fsl_edma_rev2.c | 123 if (channel >= cfg->channels) { in EDMA_SetChannelMux() 197 if (channel >= cfg->channels) { in EDMA_ConfigureTransfer()
|
D | fsl_edma_rev2.h | 167 const uint32_t channels; member
|
/hal_nxp-latest/mcux/mcux-sdk/CMSIS/NN/ |
D | README.md | 32 …* ker_y * input_ch <br/> MVE: 2 * DSP + 4 | Yes| Yes| Best case is when channels are multiple of 4… 36 …| None | input_ch * 2<br/>(DSP only) | Yes| Yes| Best case case is when channels are multiple of 4…
|
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMX8QM6/drivers/ |
D | fsl_edma_soc_rev2.h | 44 .channels = 32,
|
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMX8QX6/drivers/ |
D | fsl_edma_soc_rev2.h | 44 .channels = 32,
|
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMX8UD7/drivers/ |
D | fsl_edma_soc_rev2.h | 49 .channels = 32,
|
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMX9596/drivers/ |
D | fsl_edma_soc_rev2.h | 56 .channels = 64,
|
/hal_nxp-latest/mcux/middleware/wifi_nxp/wifidriver/wpa_supp_if/incl/ |
D | wifi_nxp_internal.h | 165 struct wifi_nxp_event_channel channels[29]; member
|
/hal_nxp-latest/mcux/mcux-sdk/ |
D | CODE_OF_CONDUCT.md | 92 includes avoiding interactions in community spaces as well as external channels
|