/third_party/ffmpeg/libavformat/ |
H A D | aiffenc.c | 37 int64_t frames; member 163 aiff->frames = avio_tell(pb); in aiff_write_header() 164 avio_wb32(pb, 0); /* Number of frames */ in aiff_write_header() 251 /* Number of sample frames */ in aiff_write_trailer() 252 avio_seek(pb, aiff->frames, SEEK_SET); in aiff_write_trailer()
|
/third_party/libsnd/src/ |
H A D | ircam.c | 223 if (psf->sf.frames == 0 && psf->blockwidth) in ircam_read_header() 224 psf->sf.frames = psf->datalength / psf->blockwidth ; in ircam_read_header() 226 psf_log_printf (psf, " Samples : %d\n", psf->sf.frames) ; in ircam_read_header()
|
/kernel/linux/linux-5.10/sound/usb/ |
H A D | pcm.c | 1409 unsigned int stride, frames, bytes, oldptr; in retire_capture_urb() local 1434 frames = bytes / stride; in retire_capture_urb() 1436 bytes = frames * stride; in retire_capture_urb() 1439 bytes = frames * stride; in retire_capture_urb() 1450 frames = (bytes + (oldptr % stride)) / stride; in retire_capture_urb() 1451 subs->transfer_done += frames; in retire_capture_urb() 1592 unsigned int counts, frames, bytes; in prepare_playback_urb() local 1598 frames = 0; in prepare_playback_urb() 1611 urb->iso_frame_desc[i].offset = frames * ep->stride; in prepare_playback_urb() 1613 frames in prepare_playback_urb() [all...] |
/kernel/linux/linux-6.6/sound/usb/ |
H A D | pcm.c | 1270 unsigned int stride, frames, bytes, oldptr; in retire_capture_urb() local 1295 frames = bytes / stride; in retire_capture_urb() 1297 bytes = frames * stride; in retire_capture_urb() 1300 bytes = frames * stride; in retire_capture_urb() 1311 frames = (bytes + (oldptr % stride)) / stride; in retire_capture_urb() 1312 subs->transfer_done += frames; in retire_capture_urb() 1477 unsigned int frames, bytes; in prepare_playback_urb() local 1486 frames = 0; in prepare_playback_urb() 1511 urb->iso_frame_desc[i].offset = frames * stride; in prepare_playback_urb() 1513 frames in prepare_playback_urb() [all...] |
/third_party/alsa-lib/src/pcm/ |
H A D | pcm_local.h | 177 snd_pcm_sframes_t (*rewind)(snd_pcm_t *pcm, snd_pcm_uframes_t frames); /* locked */ 179 snd_pcm_sframes_t (*forward)(snd_pcm_t *pcm, snd_pcm_uframes_t frames); /* locked */ 191 int (*mmap_begin)(snd_pcm_t *pcm, const snd_pcm_channel_area_t **areas, snd_pcm_uframes_t *offset, snd_pcm_uframes_t *frames); /* locked */ 217 snd_pcm_uframes_t avail_min; /* min avail frames for wakeup */ 230 snd_pcm_uframes_t fifo_size; /* chip FIFO size in frames */ 392 void snd_pcm_mmap_appl_backward(snd_pcm_t *pcm, snd_pcm_uframes_t frames); 393 void snd_pcm_mmap_appl_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames); 394 void snd_pcm_mmap_hw_backward(snd_pcm_t *pcm, snd_pcm_uframes_t frames); 395 void snd_pcm_mmap_hw_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames); 432 snd_pcm_uframes_t *offset, snd_pcm_uframes_t *frames); [all...] |
H A D | pcm_hw.c | 826 static snd_pcm_sframes_t snd_pcm_hw_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_hw_rewind() argument 830 if (ioctl(hw->fd, SNDRV_PCM_IOCTL_REWIND, &frames) < 0) { in snd_pcm_hw_rewind() 838 return frames; in snd_pcm_hw_rewind() 846 static snd_pcm_sframes_t snd_pcm_hw_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_hw_forward() argument 851 if (ioctl(hw->fd, SNDRV_PCM_IOCTL_FORWARD, &frames) < 0) { in snd_pcm_hw_forward() 859 return frames; in snd_pcm_hw_forward() 877 if (frames > (snd_pcm_uframes_t)avail) in snd_pcm_hw_forward() 878 frames = avail; in snd_pcm_hw_forward() 879 snd_pcm_mmap_appl_forward(pcm, frames); in snd_pcm_hw_forward() 880 return frames; in snd_pcm_hw_forward() [all...] |
H A D | pcm_softvol.c | 196 fr = frames; \ 230 fr = frames; \ 274 fr = frames; \ 322 snd_pcm_uframes_t frames) in softvol_convert_stereo_vol() 329 snd_pcm_areas_silence(dst_areas, dst_offset, channels, frames, in softvol_convert_stereo_vol() 335 channels, frames, svol->sformat); in softvol_convert_stereo_vol() 383 snd_pcm_uframes_t frames) in softvol_convert_mono_vol() 390 snd_pcm_areas_silence(dst_areas, dst_offset, channels, frames, in softvol_convert_mono_vol() 395 channels, frames, svol->sformat); in softvol_convert_mono_vol() 316 softvol_convert_stereo_vol(snd_pcm_softvol_t *svol, const snd_pcm_channel_area_t *dst_areas, snd_pcm_uframes_t dst_offset, const snd_pcm_channel_area_t *src_areas, snd_pcm_uframes_t src_offset, unsigned int channels, snd_pcm_uframes_t frames) softvol_convert_stereo_vol() argument 377 softvol_convert_mono_vol(snd_pcm_softvol_t *svol, const snd_pcm_channel_area_t *dst_areas, snd_pcm_uframes_t dst_offset, const snd_pcm_channel_area_t *src_areas, snd_pcm_uframes_t src_offset, unsigned int channels, snd_pcm_uframes_t frames) softvol_convert_mono_vol() argument
|
H A D | pcm_linear.c | 148 unsigned int channels, snd_pcm_uframes_t frames, in snd_pcm_linear_convert() 167 frames1 = frames; in snd_pcm_linear_convert() 182 unsigned int channels, snd_pcm_uframes_t frames, in snd_pcm_linear_getput() 203 frames1 = frames; in snd_pcm_linear_getput() 146 snd_pcm_linear_convert(const snd_pcm_channel_area_t *dst_areas, snd_pcm_uframes_t dst_offset, const snd_pcm_channel_area_t *src_areas, snd_pcm_uframes_t src_offset, unsigned int channels, snd_pcm_uframes_t frames, unsigned int convidx) snd_pcm_linear_convert() argument 180 snd_pcm_linear_getput(const snd_pcm_channel_area_t *dst_areas, snd_pcm_uframes_t dst_offset, const snd_pcm_channel_area_t *src_areas, snd_pcm_uframes_t src_offset, unsigned int channels, snd_pcm_uframes_t frames, unsigned int get_idx, unsigned int put_idx) snd_pcm_linear_getput() argument
|
/kernel/linux/linux-6.6/drivers/block/ |
H A D | pktcdvd.c | 546 static struct packet_data *pkt_alloc_packet_data(int frames) in pkt_alloc_packet_data() argument 555 pkt->frames = frames; in pkt_alloc_packet_data() 556 pkt->w_bio = bio_kmalloc(frames, GFP_KERNEL); in pkt_alloc_packet_data() 560 for (i = 0; i < frames / FRAMES_PER_PAGE; i++) { in pkt_alloc_packet_data() 569 for (i = 0; i < frames; i++) { in pkt_alloc_packet_data() 578 for (i = 0; i < frames; i++) in pkt_alloc_packet_data() 581 for (i = 0; i < frames / FRAMES_PER_PAGE; i++) in pkt_alloc_packet_data() 598 for (i = 0; i < pkt->frames; i++) in pkt_free_packet_data() 600 for (i = 0; i < pkt->frames / FRAMES_PER_PAG in pkt_free_packet_data() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | vp8.c | 138 for (i = 0; i < FF_ARRAY_ELEMS(s->frames); i++) in vp8_decode_flush_impl() 139 vp8_release_frame(s, &s->frames[i]); in vp8_decode_flush_impl() 158 if (&s->frames[i] != s->framep[VP56_FRAME_CURRENT] && in vp8_find_free_buffer() 159 &s->frames[i] != s->framep[VP56_FRAME_PREVIOUS] && in vp8_find_free_buffer() 160 &s->frames[i] != s->framep[VP56_FRAME_GOLDEN] && in vp8_find_free_buffer() 161 &s->frames[i] != s->framep[VP56_FRAME_GOLDEN2]) { in vp8_find_free_buffer() 162 frame = &s->frames[i]; in vp8_find_free_buffer() 166 av_log(s->avctx, AV_LOG_FATAL, "Ran out of free frames!\n"); in vp8_find_free_buffer() 401 * Intra frames update all 3 references 402 * Inter frames updat [all...] |
H A D | libvorbisenc.c | 363 if (!avctx->initial_padding && s->afq.frames) { in libvorbis_encode_frame() 366 s->afq.frames->duration += duration; in libvorbis_encode_frame() 367 if (s->afq.frames->pts != AV_NOPTS_VALUE) in libvorbis_encode_frame() 368 s->afq.frames->pts -= duration; in libvorbis_encode_frame()
|
H A D | vp5.c | 47 s->frames[VP56_FRAME_CURRENT]->key_frame = !vp56_rac_get(c); in vp5_parse_header() 50 if (s->frames[VP56_FRAME_CURRENT]->key_frame) in vp5_parse_header() 151 } else if (s->frames[VP56_FRAME_CURRENT]->key_frame) { in vp5_parse_coeff_models() 162 } else if (s->frames[VP56_FRAME_CURRENT]->key_frame) { in vp5_parse_coeff_models()
|
H A D | mpc.h | 25 * MPEG Audio Layer 1/2 -like codec with frames of 1152 samples 64 int cur_frame, frames; member
|
/kernel/linux/linux-5.10/sound/soc/fsl/ |
H A D | fsl_dma.c | 610 * whole frames. Each frame occupies two slots in the FIFO. The in fsl_dma_hw_params() 707 snd_pcm_uframes_t frames; in fsl_dma_pointer() local 743 frames = bytes_to_frames(runtime, position - dma_private->dma_buf_phys); in fsl_dma_pointer() 749 if (frames == runtime->buffer_size) in fsl_dma_pointer() 750 frames = 0; in fsl_dma_pointer() 752 return frames; in fsl_dma_pointer()
|
/test/xts/acts/arkui/ace_standard/entry/src/main/js/MainAbility/pages/tabs/router/ |
H A D | index.js | 26 var frames = [
482 var animation = function3.animate(frames, options);
517 var animation = function3.animate(frames, options);
552 var animation = function3.animate(frames, options);
|
/test/xts/acts/arkui/ace_standard/entry/src/main/js/default/pages/tabs/router/ |
H A D | index.js | 26 var frames = [
482 var animation = function3.animate(frames, options);
517 var animation = function3.animate(frames, options);
552 var animation = function3.animate(frames, options);
|
/test/xts/acts/arkui/ace_standard/entry/src/ohosTest/js/MainAbility/pages/tabs/router/ |
H A D | index.js | 26 var frames = [
482 var animation = function3.animate(frames, options);
517 var animation = function3.animate(frames, options);
552 var animation = function3.animate(frames, options);
|
/test/xts/acts/arkui/ace_standard/entry/src/ohosTest/js/default/pages/tabs/router/ |
H A D | index.js | 26 var frames = [
482 var animation = function3.animate(frames, options);
517 var animation = function3.animate(frames, options);
552 var animation = function3.animate(frames, options);
|
/third_party/lz4/tests/ |
H A D | test-lz4-list.py | 24 self.frames, self.type, self.block, self.compressed, self.uncompressed, self.ratio, self.filename = splitlines 41 # One of the files has 2 frames so duplicate it in this list to map each frame 1 to a single file 54 self.assertEqual("2", nvinfo.frames, nvinfo.line) 57 self.assertEqual("1", nvinfo.frames, nvinfo.line) 60 self.assertEqual(self.nvinfo_list[all_concat_index].frames, str(all_concat_frames), self.nvinfo_list[all_concat_index].line) 132 # One of the files has 2 frames so duplicate it in this list to map each frame 1 to a single file 258 # Generate skippable frames 265 # Generate legacy frames
|
/kernel/linux/linux-5.10/drivers/net/ethernet/broadcom/bnxt/ |
H A D | bnxt_xdp.h | 22 struct xdp_frame **frames, u32 flags);
|
/kernel/linux/linux-5.10/include/uapi/linux/can/ |
H A D | bcm.h | 60 * @count: number of frames to send before changing interval. 61 * @ival1: interval for the first @count frames. 62 * @ival2: interval for the following frames. 63 * @can_id: CAN ID of frames to be sent or received. 64 * @nframes: number of frames appended to the message head. 65 * @frames: array of CAN frames. 74 struct can_frame frames[0]; member
|
/kernel/linux/linux-6.6/include/uapi/linux/can/ |
H A D | bcm.h | 60 * @count: number of frames to send before changing interval. 61 * @ival1: interval for the first @count frames. 62 * @ival2: interval for the following frames. 63 * @can_id: CAN ID of frames to be sent or received. 64 * @nframes: number of frames appended to the message head. 65 * @frames: array of CAN frames. 74 struct can_frame frames[]; member
|
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/linux/can/ |
H A D | bcm.h | 34 struct can_frame frames[0]; member
|
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/linux/can/ |
H A D | bcm.h | 34 struct can_frame frames[0]; member
|
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/linux/can/ |
H A D | bcm.h | 21 struct can_frame frames[0]; member
|