| /OK3568_Linux_fs/kernel/drivers/char/tpm/ |
| H A D | tpm-interface.c | 61 static ssize_t tpm_try_transmit(struct tpm_chip *chip, void *buf, size_t bufsiz) in tpm_try_transmit() argument 69 if (bufsiz < TPM_HEADER_SIZE) in tpm_try_transmit() 72 if (bufsiz > TPM_BUFSIZE) in tpm_try_transmit() 73 bufsiz = TPM_BUFSIZE; in tpm_try_transmit() 79 if (count > bufsiz) { in tpm_try_transmit() 81 "invalid count value %x %zx\n", count, bufsiz); in tpm_try_transmit() 126 len = chip->ops->recv(chip, buf, bufsiz); in tpm_try_transmit() 153 ssize_t tpm_transmit(struct tpm_chip *chip, u8 *buf, size_t bufsiz) in tpm_transmit() argument 161 const size_t save_size = min(sizeof(save), bufsiz); in tpm_transmit() 173 ret = tpm_try_transmit(chip, buf, bufsiz); in tpm_transmit()
|
| H A D | tpm-dev-common.c | 26 u8 *buf, size_t bufsiz) in tpm_dev_transmit() argument 31 ret = tpm2_prepare_space(chip, space, buf, bufsiz); in tpm_dev_transmit() 45 len = tpm_transmit(chip, buf, bufsiz); in tpm_dev_transmit()
|
| H A D | tpm2-space.c | 535 void *buf, size_t *bufsiz) in tpm2_commit_space() argument 543 rc = tpm2_map_response_header(chip, chip->last_cc, buf, *bufsiz); in tpm2_commit_space() 549 rc = tpm2_map_response_body(chip, chip->last_cc, buf, *bufsiz); in tpm2_commit_space() 561 *bufsiz = be32_to_cpu(header->length); in tpm2_commit_space()
|
| H A D | tpm.h | 166 ssize_t tpm_transmit(struct tpm_chip *chip, u8 *buf, size_t bufsiz); 236 size_t *bufsiz);
|
| /OK3568_Linux_fs/buildroot/dl/sox/git/src/ |
| H A D | effects.c | 112 if (imin > sox_globals.bufsiz / effp->flows) { in lsx_effect_set_imin() 236 size_t bufsiz, size_t offset, sox_sample_t *to); 238 sox_sample_t *to, size_t bufsiz, size_t offset); 247 size_t obeg = sox_globals.bufsiz - effp->oend; in flow_effect() 266 effp->obuf, sox_globals.bufsiz, effp->oend); in flow_effect() 269 size_t flow_offs = sox_globals.bufsiz/effp->flows; in flow_effect() 309 interleave(effp->flows, obeg, chain->il_buf, sox_globals.bufsiz, in flow_effect() 316 size_t flow_offs = sox_globals.bufsiz/effp->flows; in flow_effect() 344 size_t obeg = sox_globals.bufsiz - effp->oend; in drain_effect() 361 effp->obuf, sox_globals.bufsiz, effp->oend); in drain_effect() [all …]
|
| H A D | ao.c | 38 ao->buf_size = sox_globals.bufsiz - (sox_globals.bufsiz % (ft->encoding.bits_per_sample >> 3)); in startwrite()
|
| H A D | adpcms.c | 152 state->file.buf = lsx_malloc(sox_globals.bufsiz); in adpcm_start() 153 state->file.size = sox_globals.bufsiz; in adpcm_start()
|
| H A D | coreaudio.c | 249 ac->bufsize = sox_globals.bufsiz / sizeof(sox_sample_t) * Buffactor; in setup() 255 buf_size = sox_globals.bufsiz / sizeof(sox_sample_t) * sizeof(float); in setup()
|
| H A D | mp3.c | 381 p->mp3_buffer_size = sox_globals.bufsiz; in startread() 926 p->mp3_buffer_size = LAME_BUFFER_SIZE(sox_globals.bufsiz / max(ft->signal.channels, 1)); in startwrite() 929 p->pcm_buffer_size = sox_globals.bufsiz * sizeof(float); in startwrite()
|
| H A D | oss.c | 245 size_t cbOutput = sox_globals.bufsiz; in ossinit()
|
| H A D | reverb.c | 221 effp->global_info->global_info->bufsiz / p->ochannels, p->chan[i].wet); in start()
|
| H A D | waveaudio.c | 307 priv->buf_len = ((sox_globals.bufsiz >> priv->sample_shift) + 31) & ~31u; in start()
|
| H A D | alsa.c | 141 p->buf_len = sox_globals.bufsiz * 8 / formats[p->format].bytes / in setup()
|
| H A D | sunaudio.c | 336 pPriv->cOutput = sox_globals.bufsiz >> pPriv->sample_shift; in sunstartwrite()
|
| /OK3568_Linux_fs/kernel/arch/sh/include/asm/ |
| H A D | platform_early.h | 40 #define sh_early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \ argument 44 .bufsize = bufsiz, \ 54 #define sh_early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \ argument 57 return bufsiz ? buf : NULL; \
|
| /OK3568_Linux_fs/kernel/arch/alpha/kernel/ |
| H A D | osf_sys.c | 304 unsigned long bufsiz) in linux_to_osf_statfs() argument 318 if (bufsiz > sizeof(tmp_stat)) in linux_to_osf_statfs() 319 bufsiz = sizeof(tmp_stat); in linux_to_osf_statfs() 320 return copy_to_user(osf_stat, &tmp_stat, bufsiz) ? -EFAULT : 0; in linux_to_osf_statfs() 325 unsigned long bufsiz) in linux_to_osf_statfs64() argument 338 if (bufsiz > sizeof(tmp_stat)) in linux_to_osf_statfs64() 339 bufsiz = sizeof(tmp_stat); in linux_to_osf_statfs64() 340 return copy_to_user(osf_stat, &tmp_stat, bufsiz) ? -EFAULT : 0; in linux_to_osf_statfs64() 344 struct osf_statfs __user *, buffer, unsigned long, bufsiz) in SYSCALL_DEFINE3() argument 349 error = linux_to_osf_statfs(&linux_stat, buffer, bufsiz); in SYSCALL_DEFINE3() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/spi/ |
| H A D | spidev.c | 85 static unsigned bufsiz = 4096; variable 86 module_param(bufsiz, uint, S_IRUGO); 87 MODULE_PARM_DESC(bufsiz, "data bytes in biggest supported SPI message"); 152 if (count > bufsiz) in spidev_read() 183 if (count > bufsiz) in spidev_write() 248 if (rx_total > bufsiz) { in spidev_message() 258 if (tx_total > bufsiz) { in spidev_message() 582 spidev->tx_buffer = kmalloc(bufsiz, GFP_KERNEL); in spidev_open() 591 spidev->rx_buffer = kmalloc(bufsiz, GFP_KERNEL); in spidev_open()
|
| /OK3568_Linux_fs/kernel/drivers/input/ |
| H A D | mousedev.c | 105 unsigned char ready, buffer, bufsiz; member 594 client->bufsiz = 4; in mousedev_packet() 605 client->bufsiz = 4; in mousedev_packet() 615 client->bufsiz = 3; in mousedev_packet() 637 client->bufsiz++; /* account for leading ACK */ in mousedev_generate_response() 652 client->bufsiz = 2; in mousedev_generate_response() 657 client->bufsiz = 4; in mousedev_generate_response() 664 client->bufsiz = 3; in mousedev_generate_response() 668 client->bufsiz = 1; in mousedev_generate_response() 671 client->buffer = client->bufsiz; in mousedev_generate_response() [all …]
|
| /OK3568_Linux_fs/kernel/fs/ |
| H A D | stat.c | 403 char __user *buf, int bufsiz) in do_readlinkat() argument 410 if (bufsiz <= 0) in do_readlinkat() 426 error = vfs_readlink(path.dentry, buf, bufsiz); in do_readlinkat() 439 char __user *, buf, int, bufsiz) in SYSCALL_DEFINE4() argument 441 return do_readlinkat(dfd, pathname, buf, bufsiz); in SYSCALL_DEFINE4() 445 int, bufsiz) in SYSCALL_DEFINE3() argument 447 return do_readlinkat(AT_FDCWD, path, buf, bufsiz); in SYSCALL_DEFINE3()
|
| /OK3568_Linux_fs/app/forlinx/quectelCM/libmnl/ |
| H A D | socket.c | 257 void *buf, size_t bufsiz) in mnl_socket_recvfrom() argument 263 .iov_len = bufsiz, in mnl_socket_recvfrom()
|
| H A D | libmnl.h | 72 extern struct mnl_nlmsg_batch *mnl_nlmsg_batch_start(void *buf, size_t bufsiz);
|
| /OK3568_Linux_fs/u-boot/include/linux/usb/ |
| H A D | composite.h | 329 unsigned bufsiz; member
|
| /OK3568_Linux_fs/u-boot/fs/yaffs2/ |
| H A D | yaffsfs.h | 171 int yaffs_readlink(const YCHAR *path, YCHAR *buf, int bufsiz);
|
| /OK3568_Linux_fs/kernel/kernel/locking/ |
| H A D | lockdep_proc.c | 429 static void snprint_time(char *buf, size_t bufsiz, s64 nr) in snprint_time() argument 436 snprintf(buf, bufsiz, "%lld.%02d", (long long)div, (int)rem/10); in snprint_time()
|
| /OK3568_Linux_fs/kernel/fs/ecryptfs/ |
| H A D | inode.c | 639 static char *ecryptfs_readlink_lower(struct dentry *dentry, size_t *bufsiz) in ecryptfs_readlink_lower() argument 651 rc = ecryptfs_decode_and_decrypt_filename(&buf, bufsiz, dentry->d_sb, in ecryptfs_readlink_lower()
|