Lines Matching refs:memorySlotLength
633 …transLength = transLength / (object->memorySlotLength / BYTE_LENGTH); /* … in updateDataReadDMA()
647 …transLength = transLength * (object->memorySlotLength / BYTE_LENGTH); /* h… in updateDataReadDMA()
694 …transLength = transLength / (object->memorySlotLength / BYTE_LENGTH); /* … in updateDataWriteDMA()
708 …transLength = transLength * (object->memorySlotLength / BYTE_LENGTH); /* h… in updateDataWriteDMA()
750 uint16_t dmaMinimumStep = object->udmaArbLength * object->memorySlotLength / BYTE_LENGTH; in handleDMATransaction()
915 transaction->bytesTransferred += object->memorySlotLength / BYTE_LENGTH; in handleCPUTransaction()
970 DebugP_assert(params->memorySlotLength == I2S_MEMORY_LENGTH_8BITS || in initObject()
971 params->memorySlotLength == I2S_MEMORY_LENGTH_16BITS || in initObject()
972 params->memorySlotLength == I2S_MEMORY_LENGTH_24BITS || in initObject()
973 params->memorySlotLength == I2S_MEMORY_LENGTH_32BITS ); in initObject()
976 if(params->memorySlotLength <= I2S_MEMORY_LENGTH_8BITS){ in initObject()
978 object->memorySlotLength = I2S_MEMORY_LENGTH_8BITS; in initObject()
980 else if(params->memorySlotLength <= I2S_MEMORY_LENGTH_16BITS){ in initObject()
982 object->memorySlotLength = I2S_MEMORY_LENGTH_16BITS; in initObject()
984 else if(params->memorySlotLength <= I2S_MEMORY_LENGTH_32BITS){ in initObject()
986 object->memorySlotLength = I2S_MEMORY_LENGTH_32BITS; in initObject()
994 object->memorySlotLength = params->memorySlotLength; in initObject()
1002 object->sampleMask = 0xFFFFFFFF >> (32-object->memorySlotLength); 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()
1055 …16_t const fixedBufferLength = (params->fixedBufferLength /(object->memorySlotLength/BYTE_LENGTH)); in initObject()