Lines Matching refs:blockSize
479 handle->device->cfg.blockSize = 512; in init_mmc_card()
530 if ((length / handle->device->cfg.blockSize) > 1) { in xfer_data()
546 handle->device->cfg.blockSize, base); in xfer_data()
551 handle->device->cfg.blockSize, base); in xfer_data()
656 uint32_t rem, blockSize, event; in write_buffer() local
659 blockSize = handle->device->cfg.blockSize; in write_buffer()
677 if (rem >= blockSize) in write_buffer()
679 blockSize, pData); in write_buffer()
684 if (rem > blockSize) { in write_buffer()
685 rem -= blockSize; in write_buffer()
686 pData += blockSize; in write_buffer()
720 uint32_t rem, blockSize, event = 0; in read_buffer() local
723 blockSize = handle->device->cfg.blockSize; in read_buffer()
740 if (rem >= blockSize) in read_buffer()
742 blockSize, pData); in read_buffer()
747 if (rem > blockSize) { in read_buffer()
748 rem -= blockSize; in read_buffer()
749 pData += blockSize; in read_buffer()