Lines Matching defs:size
327 * \brief get size of the snd_hwdep_info_t structure in bytes
328 * \return size of the snd_hwdep_info_t structure in bytes
472 * \param size output buffer size in bytes
474 ssize_t snd_hwdep_write(snd_hwdep_t *hwdep, const void *buffer, size_t size)
478 assert(buffer || size == 0);
479 return hwdep->ops->write(hwdep, buffer, size);
486 * \param size input buffer size in bytes
488 ssize_t snd_hwdep_read(snd_hwdep_t *hwdep, void *buffer, size_t size)
492 assert(buffer || size == 0);
493 return (hwdep->ops->read)(hwdep, buffer, size);
523 * \brief get size of the snd_hwdep_dsp_status_t structure in bytes
524 * \return size of the snd_hwdep_dsp_status_t structure in bytes
628 * \brief get size of the snd_hwdep_dsp_image_t structure in bytes
629 * \return size of the snd_hwdep_dsp_image_t structure in bytes