/hal_nxp-3.7.0/mcux/mcux-sdk/utilities/debug_console/str/ |
D | fsl_str.c | 141 static uint32_t PrintGetWidth(const char **p, va_list *ap) in PrintGetWidth() argument 149 c = *(++(*p)); in PrintGetWidth() 163 --(*p); in PrintGetWidth() 172 const char *p = *s; in PrintGetPrecision() local 182 if (*++p == '.') in PrintGetPrecision() 189 char c = *++p; in PrintGetPrecision() 213 --p; in PrintGetPrecision() 221 --p; in PrintGetPrecision() 223 *s = p; in PrintGetPrecision() 384 const char *p = *s; in PrintCheckFlags() local [all …]
|
/hal_nxp-3.7.0/mcux/mcux-sdk/CMSIS/DSP/Source/FilteringFunctions/ |
D | arm_levinson_durbin_f32.c | 75 for(int p=1; p < nbCoefs; p++) in arm_levinson_durbin_f32() local 91 pRevPhi = &phi[p-3]; in arm_levinson_durbin_f32() 96 blkCnt = p >> 2; in arm_levinson_durbin_f32() 119 blkCnt = p & 3; in arm_levinson_durbin_f32() 122 suma += a[i] * phi[p - i]; in arm_levinson_durbin_f32() 129 k = (phi[p+1] - suma)/(phi[0] - sumb); in arm_levinson_durbin_f32() 139 vecTmp = vdupq_n_u32(p); in arm_levinson_durbin_f32() 144 nb = p >> 2; in arm_levinson_durbin_f32() 180 switch(p & 3) in arm_levinson_durbin_f32() 185 x = a[j] - k * a[p-1-j]; in arm_levinson_durbin_f32() [all …]
|
D | arm_levinson_durbin_q31.c | 140 for(int p=1; p < nbCoefs; p++) in arm_levinson_durbin_q31() local 155 pRevPhi = &phi[p-3]; in arm_levinson_durbin_q31() 160 blkCnt = p >> 2; in arm_levinson_durbin_q31() 180 blkCnt = p & 3; in arm_levinson_durbin_q31() 183 suma += ((q63_t)a[i] * phi[p - i]); in arm_levinson_durbin_q31() 196 k = divide(phi[p+1]-(q31_t)suma,phi[0] - (q31_t)sumb); in arm_levinson_durbin_q31() 206 vecTmp = vdupq_n_u32(p); in arm_levinson_durbin_q31() 212 nb = p >> 2; in arm_levinson_durbin_q31() 251 switch(p & 3) in arm_levinson_durbin_q31() 258 x = a[j] - mul32x32(k,a[p-1-j]); in arm_levinson_durbin_q31() [all …]
|
D | arm_levinson_durbin_f16.c | 75 for(int p=1; p < nbCoefs; p++) in arm_levinson_durbin_f16() local 91 pRevPhi = &phi[p-7]; in arm_levinson_durbin_f16() 96 blkCnt = p >> 3; in arm_levinson_durbin_f16() 119 blkCnt = p & 7; in arm_levinson_durbin_f16() 122 suma += (_Float16)a[i] * (_Float16)phi[p - i]; in arm_levinson_durbin_f16() 129 k = ((_Float16)phi[p+1] - suma)/((_Float16)phi[0] - sumb); in arm_levinson_durbin_f16() 139 vecTmp = vdupq_n_u16(p); in arm_levinson_durbin_f16() 144 nb = p >> 3; in arm_levinson_durbin_f16() 180 blkCnt = p & 7; in arm_levinson_durbin_f16() 189 x=(_Float16)a[j] - (_Float16)k * (_Float16)a[p-1-j]; in arm_levinson_durbin_f16() [all …]
|
/hal_nxp-3.7.0/mcux/mcux-sdk/utilities/str/ |
D | fsl_str.c | 109 static uint32_t PrintGetWidth(const char **p, va_list *ap) in PrintGetWidth() argument 117 c = *(++(*p)); in PrintGetWidth() 131 --(*p); in PrintGetWidth() 140 const char *p = *s; in PrintGetPrecision() local 150 if (*++p == '.') in PrintGetPrecision() 157 char c = *++p; in PrintGetPrecision() 181 --p; in PrintGetPrecision() 189 --p; in PrintGetPrecision() 191 *s = p; in PrintGetPrecision() 352 const char *p = *s; in PrintCheckFlags() local [all …]
|
/hal_nxp-3.7.0/mcux/middleware/mcux-sdk-middleware-usb/host/ |
D | usb_host_ohci.c | 279 usb_host_ohci_pipe_struct_t *p = *pipeQueue; in USB_HostOhciRemovePipe() local 288 while (NULL != p) in USB_HostOhciRemovePipe() 290 if (p != pipe) in USB_HostOhciRemovePipe() 292 pre = p; in USB_HostOhciRemovePipe() 293 temp = (void *)p->pipeCommon.next; in USB_HostOhciRemovePipe() 294 p = (usb_host_ohci_pipe_struct_t *)temp; in USB_HostOhciRemovePipe() 300 temp = (void *)p->pipeCommon.next; in USB_HostOhciRemovePipe() 305 pre->pipeCommon.next = p->pipeCommon.next; in USB_HostOhciRemovePipe() 316 usb_host_ohci_pipe_struct_t *p = *pipeQueue; in USB_HostOhciInsertPipe() local 323 while (NULL != p) in USB_HostOhciInsertPipe() [all …]
|
/hal_nxp-3.7.0/mcux/mcux-sdk/CMSIS/NN/Source/ConvolutionFunctions/ |
D | arm_nn_mat_mult_s8.c | 75 mve_pred16_t p = vctp16q((uint32_t)row_len_tmp); in arm_nn_mat_mult_s8() local 76 const int16x8_t offset = vdupq_m_n_s16(vuninitializedq_s16(), col_offset, p); in arm_nn_mat_mult_s8() 79 int16x8_t r0 = vldrbq_z_s16(ip_r0, p); in arm_nn_mat_mult_s8() 82 int16x8_t c0 = vldrbq_z_s16(ip_c0, p); in arm_nn_mat_mult_s8() 84 c0 = vaddq_m_s16(vuninitializedq_s16(), c0, offset, p); in arm_nn_mat_mult_s8() 86 int16x8_t c1 = vldrbq_z_s16(ip_c1, p); in arm_nn_mat_mult_s8() 88 c1 = vaddq_m_s16(vuninitializedq_s16(), c1, offset, p); in arm_nn_mat_mult_s8() 90 int16x8_t c2 = vldrbq_z_s16(ip_c2, p); in arm_nn_mat_mult_s8() 92 c2 = vaddq_m_s16(vuninitializedq_s16(), c2, offset, p); in arm_nn_mat_mult_s8() 94 int16x8_t c3 = vldrbq_z_s16(ip_c3, p); in arm_nn_mat_mult_s8() [all …]
|
/hal_nxp-3.7.0/mcux/mcux-sdk/components/messaging/ |
D | fsl_component_messaging.c | 92 list_element_t *p; in MSG_QueueRemove() local 97 p = (list_element_t *)msg - 1; in MSG_QueueRemove() 98 listStatus = LIST_RemoveElement((list_element_t *)p); in MSG_QueueRemove() 127 list_element_t *p; in MSG_QueueGetNext() local 131 p = (list_element_t *)msg - 1; in MSG_QueueGetNext() 132 p = LIST_GetNext(p); in MSG_QueueGetNext() 134 return (p != NULL) ? ((list_element_t *)p + 1) : p; in MSG_QueueGetNext() 139 list_element_t *p; in MSG_QueueGetPrev() local 143 p = (list_element_t *)msg - 1; in MSG_QueueGetPrev() 144 p = LIST_GetPrev(p); in MSG_QueueGetPrev() [all …]
|
/hal_nxp-3.7.0/mcux/mcux-sdk/components/serial_manager/ |
D | fsl_component_serial_port_virtual.c | 82 serial_port_virtual_state_t *p = *head; in Serial_PortVirtualAddItem() local 87 if (NULL == p) in Serial_PortVirtualAddItem() 93 while (NULL != p->next) in Serial_PortVirtualAddItem() 95 if (p == node) in Serial_PortVirtualAddItem() 100 p = p->next; in Serial_PortVirtualAddItem() 103 p->next = node; in Serial_PortVirtualAddItem() 113 serial_port_virtual_state_t *p = *head; in Serial_PortVirtualRemoveItem() local 118 while (NULL != p) in Serial_PortVirtualRemoveItem() 120 if (p == node) in Serial_PortVirtualRemoveItem() 124 *head = p->next; in Serial_PortVirtualRemoveItem() [all …]
|
/hal_nxp-3.7.0/mcux/mcux-sdk/devices/MKE14F16/utilities/ |
D | fsl_shell.c | 525 list_element_handle_t p = LIST_GetHead(&shellContextHandle->commandContextListHead); 527 while (p != NULL) 529 shellCommandContextHandle = SHEEL_COMMAND_POINTER(p); 536 p = LIST_GetNext(p); 556 list_element_handle_t p; 567 p = LIST_GetHead(&shellContextHandle->commandContextListHead); 568 while (p != NULL) 570 tmpCommand = SHEEL_COMMAND_POINTER(p); 601 p = LIST_GetNext(p); 603 if (NULL == p) [all …]
|
/hal_nxp-3.7.0/mcux/mcux-sdk/devices/MKE18F16/utilities/ |
D | fsl_shell.c | 525 list_element_handle_t p = LIST_GetHead(&shellContextHandle->commandContextListHead); 527 while (p != NULL) 529 shellCommandContextHandle = SHEEL_COMMAND_POINTER(p); 536 p = LIST_GetNext(p); 556 list_element_handle_t p; 567 p = LIST_GetHead(&shellContextHandle->commandContextListHead); 568 while (p != NULL) 570 tmpCommand = SHEEL_COMMAND_POINTER(p); 601 p = LIST_GetNext(p); 603 if (NULL == p) [all …]
|
/hal_nxp-3.7.0/mcux/mcux-sdk/devices/MKV58F24/utilities/ |
D | fsl_shell.c | 525 list_element_handle_t p = LIST_GetHead(&shellContextHandle->commandContextListHead); 527 while (p != NULL) 529 shellCommandContextHandle = SHEEL_COMMAND_POINTER(p); 536 p = LIST_GetNext(p); 556 list_element_handle_t p; 567 p = LIST_GetHead(&shellContextHandle->commandContextListHead); 568 while (p != NULL) 570 tmpCommand = SHEEL_COMMAND_POINTER(p); 601 p = LIST_GetNext(p); 603 if (NULL == p) [all …]
|
/hal_nxp-3.7.0/mcux/mcux-sdk/devices/MK22F12/utilities/ |
D | fsl_shell.c | 525 list_element_handle_t p = LIST_GetHead(&shellContextHandle->commandContextListHead); 527 while (p != NULL) 529 shellCommandContextHandle = SHEEL_COMMAND_POINTER(p); 536 p = LIST_GetNext(p); 556 list_element_handle_t p; 567 p = LIST_GetHead(&shellContextHandle->commandContextListHead); 568 while (p != NULL) 570 tmpCommand = SHEEL_COMMAND_POINTER(p); 601 p = LIST_GetNext(p); 603 if (NULL == p) [all …]
|
/hal_nxp-3.7.0/mcux/mcux-sdk/devices/LPC5536/utilities/ |
D | fsl_shell.c | 525 list_element_handle_t p = LIST_GetHead(&shellContextHandle->commandContextListHead); 527 while (p != NULL) 529 shellCommandContextHandle = SHEEL_COMMAND_POINTER(p); 536 p = LIST_GetNext(p); 556 list_element_handle_t p; 567 p = LIST_GetHead(&shellContextHandle->commandContextListHead); 568 while (p != NULL) 570 tmpCommand = SHEEL_COMMAND_POINTER(p); 601 p = LIST_GetNext(p); 603 if (NULL == p) [all …]
|
/hal_nxp-3.7.0/mcux/mcux-sdk/devices/LPC5534/utilities/ |
D | fsl_shell.c | 525 list_element_handle_t p = LIST_GetHead(&shellContextHandle->commandContextListHead); 527 while (p != NULL) 529 shellCommandContextHandle = SHEEL_COMMAND_POINTER(p); 536 p = LIST_GetNext(p); 556 list_element_handle_t p; 567 p = LIST_GetHead(&shellContextHandle->commandContextListHead); 568 while (p != NULL) 570 tmpCommand = SHEEL_COMMAND_POINTER(p); 601 p = LIST_GetNext(p); 603 if (NULL == p) [all …]
|
/hal_nxp-3.7.0/mcux/mcux-sdk/devices/MKV56F24/utilities/ |
D | fsl_shell.c | 525 list_element_handle_t p = LIST_GetHead(&shellContextHandle->commandContextListHead); 527 while (p != NULL) 529 shellCommandContextHandle = SHEEL_COMMAND_POINTER(p); 536 p = LIST_GetNext(p); 556 list_element_handle_t p; 567 p = LIST_GetHead(&shellContextHandle->commandContextListHead); 568 while (p != NULL) 570 tmpCommand = SHEEL_COMMAND_POINTER(p); 601 p = LIST_GetNext(p); 603 if (NULL == p) [all …]
|
/hal_nxp-3.7.0/mcux/mcux-sdk/devices/LPC55S36/utilities/ |
D | fsl_shell.c | 525 list_element_handle_t p = LIST_GetHead(&shellContextHandle->commandContextListHead); 527 while (p != NULL) 529 shellCommandContextHandle = SHEEL_COMMAND_POINTER(p); 536 p = LIST_GetNext(p); 556 list_element_handle_t p; 567 p = LIST_GetHead(&shellContextHandle->commandContextListHead); 568 while (p != NULL) 570 tmpCommand = SHEEL_COMMAND_POINTER(p); 601 p = LIST_GetNext(p); 603 if (NULL == p) [all …]
|
/hal_nxp-3.7.0/mcux/mcux-sdk/devices/MKE16F16/utilities/ |
D | fsl_shell.c | 525 list_element_handle_t p = LIST_GetHead(&shellContextHandle->commandContextListHead); 527 while (p != NULL) 529 shellCommandContextHandle = SHEEL_COMMAND_POINTER(p); 536 p = LIST_GetNext(p); 556 list_element_handle_t p; 567 p = LIST_GetHead(&shellContextHandle->commandContextListHead); 568 while (p != NULL) 570 tmpCommand = SHEEL_COMMAND_POINTER(p); 601 p = LIST_GetNext(p); 603 if (NULL == p) [all …]
|
/hal_nxp-3.7.0/mcux/mcux-sdk/CMSIS/DSP/Source/StatisticsFunctions/ |
D | arm_entropy_f32.c | 57 float32_t accum=0.0f,p; in arm_entropy_f32() local 86 p = *pSrcA++; in arm_entropy_f32() 87 accum += p * logf(p); in arm_entropy_f32() 105 float32_t accum, p; in arm_entropy_f32() local 136 p = *pIn++; in arm_entropy_f32() 137 accum += p * logf(p); in arm_entropy_f32() 151 float32_t accum, p; in arm_entropy_f32() local 160 p = *pIn++; in arm_entropy_f32() 161 accum += p * logf(p); in arm_entropy_f32()
|
/hal_nxp-3.7.0/mcux/mcux-sdk/devices/MK27FA15/utilities/ |
D | fsl_shell.c | 527 list_element_handle_t p = LIST_GetHead(&shellContextHandle->commandContextListHead); 529 while (p != NULL) 531 shellCommandContextHandle = SHEEL_COMMAND_POINTER(p); 538 p = LIST_GetNext(p); 558 list_element_handle_t p; 569 p = LIST_GetHead(&shellContextHandle->commandContextListHead); 570 while (p != NULL) 572 tmpCommand = SHEEL_COMMAND_POINTER(p); 603 p = LIST_GetNext(p); 605 if (NULL == p) [all …]
|
/hal_nxp-3.7.0/mcux/mcux-sdk/devices/MK28FA15/utilities/ |
D | fsl_shell.c | 527 list_element_handle_t p = LIST_GetHead(&shellContextHandle->commandContextListHead); 529 while (p != NULL) 531 shellCommandContextHandle = SHEEL_COMMAND_POINTER(p); 538 p = LIST_GetNext(p); 558 list_element_handle_t p; 569 p = LIST_GetHead(&shellContextHandle->commandContextListHead); 570 while (p != NULL) 572 tmpCommand = SHEEL_COMMAND_POINTER(p); 603 p = LIST_GetNext(p); 605 if (NULL == p) [all …]
|
/hal_nxp-3.7.0/mcux/mcux-sdk/devices/MK63F12/utilities/ |
D | fsl_shell.c | 573 list_element_handle_t p = LIST_GetHead(&shellContextHandle->commandContextListHead); in SHELL_HelpCommand() local 575 while (p != NULL) in SHELL_HelpCommand() 577 shellCommandContextHandle = SHEEL_COMMAND_POINTER(p); in SHELL_HelpCommand() 584 p = LIST_GetNext(p); in SHELL_HelpCommand() 604 list_element_handle_t p; in SHELL_ProcessCommand() local 615 p = LIST_GetHead(&shellContextHandle->commandContextListHead); in SHELL_ProcessCommand() 616 while (p != NULL) in SHELL_ProcessCommand() 618 tmpCommand = SHEEL_COMMAND_POINTER(p); in SHELL_ProcessCommand() 649 p = LIST_GetNext(p); in SHELL_ProcessCommand() 651 if (NULL == p) in SHELL_ProcessCommand() [all …]
|
/hal_nxp-3.7.0/mcux/mcux-sdk/devices/MK64F12/utilities/ |
D | fsl_shell.c | 573 list_element_handle_t p = LIST_GetHead(&shellContextHandle->commandContextListHead); in SHELL_HelpCommand() local 575 while (p != NULL) in SHELL_HelpCommand() 577 shellCommandContextHandle = SHEEL_COMMAND_POINTER(p); in SHELL_HelpCommand() 584 p = LIST_GetNext(p); in SHELL_HelpCommand() 604 list_element_handle_t p; in SHELL_ProcessCommand() local 615 p = LIST_GetHead(&shellContextHandle->commandContextListHead); in SHELL_ProcessCommand() 616 while (p != NULL) in SHELL_ProcessCommand() 618 tmpCommand = SHEEL_COMMAND_POINTER(p); in SHELL_ProcessCommand() 649 p = LIST_GetNext(p); in SHELL_ProcessCommand() 651 if (NULL == p) in SHELL_ProcessCommand() [all …]
|
/hal_nxp-3.7.0/mcux/mcux-sdk/devices/MK65F18/utilities/ |
D | fsl_shell.c | 573 list_element_handle_t p = LIST_GetHead(&shellContextHandle->commandContextListHead); in SHELL_HelpCommand() local 575 while (p != NULL) in SHELL_HelpCommand() 577 shellCommandContextHandle = SHEEL_COMMAND_POINTER(p); in SHELL_HelpCommand() 584 p = LIST_GetNext(p); in SHELL_HelpCommand() 604 list_element_handle_t p; in SHELL_ProcessCommand() local 615 p = LIST_GetHead(&shellContextHandle->commandContextListHead); in SHELL_ProcessCommand() 616 while (p != NULL) in SHELL_ProcessCommand() 618 tmpCommand = SHEEL_COMMAND_POINTER(p); in SHELL_ProcessCommand() 649 p = LIST_GetNext(p); in SHELL_ProcessCommand() 651 if (NULL == p) in SHELL_ProcessCommand() [all …]
|
/hal_nxp-3.7.0/mcux/mcux-sdk/devices/MIMX8DX3/utilities/ |
D | fsl_shell.c | 527 list_element_handle_t p = LIST_GetHead(&shellContextHandle->commandContextListHead); 529 while (p != NULL) 531 shellCommandContextHandle = SHEEL_COMMAND_POINTER(p); 538 p = LIST_GetNext(p); 558 list_element_handle_t p; 569 p = LIST_GetHead(&shellContextHandle->commandContextListHead); 570 while (p != NULL) 572 tmpCommand = SHEEL_COMMAND_POINTER(p); 603 p = LIST_GetNext(p); 605 if (NULL == p) [all …]
|