Searched refs:input_pool (Results 1 – 4 of 4) sorted by relevance
/openbmc/linux/drivers/char/ |
H A D | random.c | 620 } input_pool = { variable 625 .lock = __SPIN_LOCK_UNLOCKED(input_pool.lock), 630 blake2s_update(&input_pool.hash, buf, len); in _mix_pool_bytes() 642 spin_lock_irqsave(&input_pool.lock, flags); in mix_pool_bytes() 644 spin_unlock_irqrestore(&input_pool.lock, flags); in mix_pool_bytes() 675 spin_lock_irqsave(&input_pool.lock, flags); in extract_entropy() 678 blake2s_final(&input_pool.hash, seed); in extract_entropy() 683 blake2s_init_key(&input_pool.hash, BLAKE2S_HASH_SIZE, next_key, sizeof(next_key)); in extract_entropy() 685 spin_unlock_irqrestore(&input_pool.lock, flags); in extract_entropy() 714 orig = READ_ONCE(input_pool.init_bits); in _credit_init_bits() [all …]
|
/openbmc/linux/sound/core/seq/ |
H A D | seq_clientmgr.c | 1892 info->input_pool = cptr->data.user.fifo_pool_size; in snd_seq_ioctl_set_client_pool() 1893 info->input_free = info->input_pool; in snd_seq_ioctl_set_client_pool() 1896 info->input_pool = 0; in snd_seq_ioctl_set_client_pool() 1931 info->input_pool >= 1 && in snd_seq_ioctl_set_client_pool() 1932 info->input_pool <= SNDRV_SEQ_MAX_CLIENT_EVENTS && in snd_seq_ioctl_set_client_pool() 1933 info->input_pool != client->data.user.fifo_pool_size) { 1935 rc = snd_seq_fifo_resize(client->data.user.fifo, info->input_pool); 1938 client->data.user.fifo_pool_size = info->input_pool; in snd_seq_ioctl_remove_events()
|
/openbmc/linux/include/uapi/sound/ |
H A D | asequencer.h | 381 int input_pool; /* incoming (read) pool size */ member
|
/openbmc/openbmc/meta-raspberrypi/dynamic-layers/multimedia-layer/recipes-multimedia/rpidistro-vlc/files/ |
H A D | 0004-mmal_20.patch | 593 MMAL_POOL_T *input_pool; 926 - sys->input_pool = mmal_pool_create(sys->input->buffer_num, 0); 1069 - if (sys->input_pool) 1070 - mmal_pool_destroy(sys->input_pool); 1337 + MMAL_BUFFER_HEADER_T * const buf = mmal_queue_wait(sys->input_pool->queue); 1493 - buffer = mmal_queue_timedwait(sys->input_pool->queue, 100); 1496 + buffer = mmal_queue_wait(sys->input_pool->queue); 1589 + if (sys->input_pool != NULL) 1590 + mmal_pool_destroy(sys->input_pool); 1719 + if ((sys->input_pool = mmal_pool_create(sys->input->buffer_num, 0)) == NULL)
|