Home
last modified time | relevance | path

Searched refs:startIndex (Results 1 – 14 of 14) sorted by relevance

/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/ssarc/
Dfsl_ssarc.c22 static void SSARC_MapDescriptorsToGroup(SSARC_LP_Type *base, uint8_t groupID, uint32_t startIndex, …
44 static void SSARC_MapDescriptorsToGroup(SSARC_LP_Type *base, uint8_t groupID, uint32_t startIndex, … in SSARC_MapDescriptorsToGroup() argument
47 assert((startIndex < endIndex) || (startIndex == endIndex)); in SSARC_MapDescriptorsToGroup()
49 …base->GROUPS[groupID].DESC_CTRL0 = SSARC_LP_DESC_CTRL0_START(startIndex) | SSARC_LP_DESC_CTRL0_END… in SSARC_MapDescriptorsToGroup()
148 SSARC_MapDescriptorsToGroup(base, groupID, config->startIndex, config->endIndex); in SSARC_GroupInit()
Dfsl_ssarc.h127 uint32_t startIndex; /*!< The index of the first descriptor of the group. */ member
/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/lcdif/
Dfsl_lcdif.c318 … LCDIF_Type *base, uint8_t fbIndex, uint16_t startIndex, const uint32_t *gamma, uint16_t gammaLen) in LCDIF_SetGammaData() argument
320 assert(startIndex + gammaLen <= LCDIF_GAMMA_INDEX_MAX); in LCDIF_SetGammaData()
322 base->GAMMAINDEX0 = startIndex; in LCDIF_SetGammaData()
Dfsl_lcdif.h323 … LCDIF_Type *base, uint8_t fbIndex, uint16_t startIndex, const uint32_t *gamma, uint16_t gammaLen);
/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/elcdif/
Dfsl_elcdif.c350 … LCDIF_Type *base, elcdif_lut_t lut, uint16_t startIndex, const uint32_t *lutData, uint16_t count) in ELCDIF_UpdateLut() argument
358 if ((startIndex + count) > ELCDIF_LUT_ENTRY_NUM) in ELCDIF_UpdateLut()
375 *regLutAddr = startIndex; in ELCDIF_UpdateLut()
Dfsl_elcdif.h756 … LCDIF_Type *base, elcdif_lut_t lut, uint16_t startIndex, const uint32_t *lutData, uint16_t count);
/hal_nxp-3.5.0/mcux/mcux-sdk/utilities/debug_console/
Dfsl_debug_console.c299 uint32_t startIndex; in DbgConsole_SerialManagerPerformTransfer() local
308 startIndex = ioState->writeRingBuffer.ringTail; in DbgConsole_SerialManagerPerformTransfer()
313 startIndex = ioState->writeRingBuffer.ringTail; in DbgConsole_SerialManagerPerformTransfer()
317 … &ioState->writeRingBuffer.ringBuffer[startIndex], sendDataLength); in DbgConsole_SerialManagerPerformTransfer()
319 startIndex = 0U; in DbgConsole_SerialManagerPerformTransfer()
323 … &ioState->writeRingBuffer.ringBuffer[startIndex], sendDataLength); in DbgConsole_SerialManagerPerformTransfer()
/hal_nxp-3.5.0/mcux/mcux-sdk/utilities/debug_console/debug_console/
Dfsl_debug_console.c299 uint32_t startIndex; in DbgConsole_SerialManagerPerformTransfer() local
308 startIndex = ioState->writeRingBuffer.ringTail; in DbgConsole_SerialManagerPerformTransfer()
313 startIndex = ioState->writeRingBuffer.ringTail; in DbgConsole_SerialManagerPerformTransfer()
317 … &ioState->writeRingBuffer.ringBuffer[startIndex], sendDataLength); in DbgConsole_SerialManagerPerformTransfer()
319 startIndex = 0U; in DbgConsole_SerialManagerPerformTransfer()
323 … &ioState->writeRingBuffer.ringBuffer[startIndex], sendDataLength); in DbgConsole_SerialManagerPerformTransfer()
/hal_nxp-3.5.0/mcux/middleware/mcux-sdk-middleware-usb/host/
Dusb_host_ip3516hs.c1876 uint32_t startIndex = 0xFFFFFFFFU; in USB_HostIp3516HsGetBuffer() local
1886 startIndex = 0xFFFFFFFFU; in USB_HostIp3516HsGetBuffer()
1891 if (0xFFFFFFFFU == startIndex) in USB_HostIp3516HsGetBuffer()
1893 startIndex = i; in USB_HostIp3516HsGetBuffer()
1901 if (0xFFFFFFFFU != startIndex) in USB_HostIp3516HsGetBuffer()
1903 *index = startIndex; in USB_HostIp3516HsGetBuffer()
1905 for (; startIndex <= i; startIndex++) in USB_HostIp3516HsGetBuffer()
1907 usbHostState->bufferArrayBitMap[startIndex >> 5U] |= (1UL << (startIndex % 32U)); in USB_HostIp3516HsGetBuffer()
1924 startIndex = 0xFFFFFFFFU; in USB_HostIp3516HsGetBuffer()
1929 if (0xFFFFFFFFU == startIndex) in USB_HostIp3516HsGetBuffer()
[all …]
/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/ltc/
Dfsl_ltc.c421 status_t ltc_set_context(LTC_Type *base, const uint8_t *data, uint8_t dataSize, uint8_t startIndex) in ltc_set_context() argument
429 if (startIndex + (dataSize / 4u) >= 16u) in ltc_set_context()
436 for (i = (uint32_t)startIndex; i < ((uint32_t)startIndex + (uint32_t)dataSize / 4u); i++) in ltc_set_context()
466 status_t ltc_get_context(LTC_Type *base, uint8_t *dest, uint8_t dataSize, uint8_t startIndex) in ltc_get_context() argument
475 if (startIndex + (dataSize / 4u) >= 16u) in ltc_get_context()
482 for (i = (uint32_t)startIndex; i < ((uint32_t)startIndex + (uint32_t)dataSize / 4u); i++) in ltc_get_context()
3929 uint8_t startIndex = (quad * 16u); in ltc_pkha_write_reg() local
3936 ltc_pkha_write_word(base, reg, startIndex++, ltc_get_word_from_unaligned(data)); in ltc_pkha_write_reg()
3944 ltc_pkha_write_word(base, reg, startIndex, outWord); in ltc_pkha_write_reg()
3955 uint8_t startIndex = (quad * 16u); in ltc_pkha_read_reg() local
[all …]
Dfsl_ltc.h1666 extern status_t ltc_get_context(LTC_Type *base, uint8_t *dest, uint8_t dataSize, uint8_t startIndex
1667 …tatus_t ltc_set_context(LTC_Type *base, const uint8_t *data, uint8_t dataSize, uint8_t startIndex);
/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/cau3/
Dfsl_cau3.c2466 uint8_t startIndex = (quad * 32u); in cau3_pkha_write_reg() local
2473 cau3_pkha_write_word(base, reg, startIndex++, cau3_get_word_from_unaligned(data)); in cau3_pkha_write_reg()
2481 cau3_pkha_write_word(base, reg, startIndex, outWord); in cau3_pkha_write_reg()
2492 uint8_t startIndex = (quad * 32u); in cau3_pkha_read_reg() local
2498 word = cau3_pkha_read_word(base, reg, startIndex++); in cau3_pkha_read_reg()
/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/dpu/
Dfsl_dpu.c1655 …IRIS_MVPL_Type *base, dpu_unit_t unit, uint32_t startIndex, const uint32_t *palette, uint32_t coun… in DPU_UpdateColorPalette() argument
1665 if (startIndex + count > DPU_PALETTE_ENTRY_NUM) in DPU_UpdateColorPalette()
1675 ((volatile uint32_t *)(offset + DPU_PALETTE_OFFSET))[i + startIndex] = palette[i]; in DPU_UpdateColorPalette()
Dfsl_dpu.h1217 …IRIS_MVPL_Type *base, dpu_unit_t unit, uint32_t startIndex, const uint32_t *palette, uint32_t coun…