Home
last modified time | relevance | path

Searched refs:adsize (Results 1 – 3 of 3) sorted by relevance

/linux-2.4.37.9/fs/udf/
Dtruncate.c75 int adsize; in udf_truncate_extents() local
78 adsize = sizeof(short_ad); in udf_truncate_extents()
80 adsize = sizeof(long_ad); in udf_truncate_extents()
82 adsize = 0; in udf_truncate_extents()
88 extoffset -= adsize; in udf_truncate_extents()
90 extoffset += adsize; in udf_truncate_extents()
95 lenalloc = extoffset - adsize; in udf_truncate_extents()
149 extoffset += adsize; in udf_truncate_extents()
198 extoffset -= adsize; in udf_truncate_extents()
202 extoffset -= adsize; in udf_truncate_extents()
[all …]
Dballoc.c536 int adsize; in udf_table_free_blocks() local
546 adsize = sizeof(short_ad); in udf_table_free_blocks()
548 adsize = sizeof(long_ad); in udf_table_free_blocks()
556 if (nextoffset + (2 * adsize) > sb->s_blocksize) in udf_table_free_blocks()
579 if (nextoffset + adsize > sb->s_blocksize) in udf_table_free_blocks()
582 aed->lengthAllocDescs = cpu_to_le32(adsize); in udf_table_free_blocks()
583 sptr = (obh)->b_data + nextoffset - adsize; in udf_table_free_blocks()
585 memcpy(dptr, sptr, adsize); in udf_table_free_blocks()
586 nextoffset = sizeof(struct allocExtDesc) + adsize; in udf_table_free_blocks()
590 loffset = nextoffset + adsize; in udf_table_free_blocks()
[all …]
Dinode.c1621 int adsize; in udf_add_aext() local
1639 adsize = sizeof(short_ad); in udf_add_aext()
1641 adsize = sizeof(long_ad); in udf_add_aext()
1645 if (*extoffset + (2 * adsize) > inode->i_sb->s_blocksize) in udf_add_aext()
1671 if (*extoffset + adsize > inode->i_sb->s_blocksize) in udf_add_aext()
1674 aed->lengthAllocDescs = cpu_to_le32(adsize); in udf_add_aext()
1675 sptr = (*bh)->b_data + *extoffset - adsize; in udf_add_aext()
1677 memcpy(dptr, sptr, adsize); in udf_add_aext()
1678 *extoffset = sizeof(struct allocExtDesc) + adsize; in udf_add_aext()
1682 loffset = *extoffset + adsize; in udf_add_aext()
[all …]