Searched refs:last_offset (Results 1 - 13 of 13) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/tools/
H A Dqt-faststart.c87 uint64_t last_offset; local
192 last_offset = ftello(infile);
268 last_offset -= start_offset;
293 /* copy the remainder of the infile, from offset 0 -> last_offset - 1 */
295 while (last_offset) {
296 if (last_offset > COPY_BUFFER_SIZE)
299 bytes_to_copy = last_offset;
309 last_offset -= bytes_to_copy;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/tools/
H A Dqt-faststart.c92 int64_t last_offset; local
205 last_offset = ftello(infile);
206 if (last_offset < 0) {
297 last_offset -= start_offset;
322 /* copy the remainder of the infile, from offset 0 -> last_offset - 1 */
323 bytes_to_copy = MIN(COPY_BUFFER_SIZE, last_offset);
330 while (last_offset) {
331 bytes_to_copy = MIN(bytes_to_copy, last_offset);
341 last_offset -= bytes_to_copy;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/soc/imx/
H A Dimx-pcm-fiq.c40 unsigned long last_offset; member in struct:imx_pcm_runtime_data
68 if (iprtd->offset >= iprtd->last_offset)
69 delta = iprtd->offset - iprtd->last_offset;
72 - iprtd->last_offset;
78 iprtd->last_offset = iprtd->offset;
100 iprtd->last_offset = 0;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/btrfs/
H A Dcompression.c441 u64 last_offset; local
454 last_offset = (page_offset(page) + PAGE_CACHE_SIZE);
463 while (last_offset < compressed_end) {
464 page_index = last_offset >> PAGE_CACHE_SHIFT;
490 end = last_offset + PAGE_CACHE_SIZE - 1;
497 lock_extent(tree, last_offset, end, GFP_NOFS);
499 em = lookup_extent_mapping(em_tree, last_offset,
503 if (!em || last_offset < em->start ||
504 (last_offset + PAGE_CACHE_SIZE > extent_map_end(em)) ||
507 unlock_extent(tree, last_offset, en
[all...]
H A Dtree-log.c2311 * last_offset tell us which parts of the key space the log should
2318 u64 first_offset, u64 last_offset)
2336 btrfs_set_dir_log_end(path->nodes[0], item, last_offset);
2362 u64 last_offset = (u64)-1; local
2464 last_offset = (u64)-1;
2469 last_offset = (u64)-1;
2479 last_offset = tmp.offset;
2488 *last_offset_ret = last_offset;
2495 last_offset);
2314 insert_dir_log_key(struct btrfs_trans_handle *trans, struct btrfs_root *log, struct btrfs_path *path, int key_type, u64 dirid, u64 first_offset, u64 last_offset) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/metaflac/
H A Doperations_shorthand_seektable.c101 FLAC__uint64 audio_offset, last_offset; member in struct:__anon3821
127 cd->seektable_template->points[i].stream_offset = cd->last_offset - cd->audio_offset;
142 if(!FLAC__stream_decoder_get_decode_position(decoder, &cd->last_offset))
202 client_data.last_offset = client_data.audio_offset;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/
H A D3level.h218 uint32_t level1_offset, level2_offset, level3_offset, last_offset; local
269 last_offset =
274 t->result_size = (last_offset + 3) & ~3ul;
308 if (last_offset < t->result_size)
309 memset (t->result + last_offset, 0, t->result_size - last_offset);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/mlx4/
H A Den_rx.c69 if (page_alloc->offset == frag_info->last_offset) {
770 priv->frag_info[i].last_offset = mlx4_en_last_alloc_offset(
785 "stride:%d last_offset:%d\n", i,
790 priv->frag_info[i].last_offset);
H A Dmlx4_en.h397 u16 last_offset; member in struct:mlx4_en_frag_info
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dmetadata_iterators.c907 off_t first_offset, last_offset; member in struct:FLAC__Metadata_Chain
1249 chain->last_offset = (off_t)pos;
1340 chain->last_offset = 0; /*@@@ wrong; will need to be set correctly to implement metadata writing for Ogg FLAC */
1370 /*FLAC__ASSERT(fflush(), ftello() == chain->last_offset);*/
1434 /*FLAC__ASSERT(fflush(), ftello() == chain->last_offset);*/
1437 if(0 != fseeko(f, chain->last_offset, SEEK_SET)) {
1483 /*FLAC__ASSERT(fflush(), ftello() == chain->last_offset);*/
1486 if(0 != seek_cb(handle, chain->last_offset, SEEK_SET)) {
1686 chain->last_offset = chain->first_offset;
1688 chain->last_offset
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/i2c/busses/
H A Di2c-bcm5301x.c438 uint16 last_offset = min(pmsg->len, max_offset); local
440 while (pdata->consumed < last_offset) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/reiserfs/
H A Dinode.c2355 unsigned last_offset; local
2357 last_offset = inode->i_size & (PAGE_CACHE_SIZE - 1);
2359 if (page->index >= end_index + 1 || !last_offset) {
2363 zero_user_segment(page, last_offset, PAGE_CACHE_SIZE);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/xfs/
H A Dxfs_inode.c1785 int offset, last_offset = 0; local
1867 &last_ibp, &last_offset, 0);
1908 offset = last_offset + offsetof(xfs_dinode_t, di_next_unlinked);

Completed in 514 milliseconds