Home
last modified time | relevance | path

Searched refs:bitsPerWord (Results 1 – 3 of 3) sorted by relevance

/hal_ti-latest/simplelink/source/ti/drivers/
DI2S.c52 .bitsPerWord = 16, /* Bits/Sample */
DI2S.h863 uint8_t bitsPerWord; member
/hal_ti-latest/simplelink/source/ti/drivers/i2s/
DI2SCC32XX.c998 if(params->beforeWordPadding + params->bitsPerWord + params->afterWordPadding <= 32) { in initObject()
999 …object->dataLength = params->beforeWordPadding + params->bitsPerWord + params->afterWordPaddi… in initObject()
1006 if(params->bitsPerWord < object->memorySlotLength) { in initObject()
1007 object->sampleMask &= (0xFFFFFFFF << (object->memorySlotLength - params->bitsPerWord)); in initObject()
1008 …object->sampleRotation += ((object->memorySlotLength - params->bitsPerWord) / HWRESOLUTION) % BYTE… in initObject()
1012 if(params->bitsPerWord > object->memorySlotLength) { in initObject()
1013 …object->sampleRotation -= ((params->bitsPerWord - object->memorySlotLength) / HWRESOLUTION) % BYTE… in initObject()