Lines Matching refs:adsize
449 int adsize; in udf_table_free_blocks() local
459 adsize = sizeof(struct short_ad); in udf_table_free_blocks()
461 adsize = sizeof(struct long_ad); in udf_table_free_blocks()
468 if (epos.offset + (2 * adsize) > sb->s_blocksize) { in udf_table_free_blocks()
489 if (epos.offset + adsize > sb->s_blocksize) { in udf_table_free_blocks()
491 aed->lengthAllocDescs = cpu_to_le32(adsize); in udf_table_free_blocks()
493 - adsize; in udf_table_free_blocks()
496 memcpy(dptr, sptr, adsize); in udf_table_free_blocks()
498 adsize; in udf_table_free_blocks()
500 loffset = epos.offset + adsize; in udf_table_free_blocks()
507 adsize); in udf_table_free_blocks()
511 iinfo->i_lenAlloc += adsize; in udf_table_free_blocks()
556 iinfo->i_lenAlloc += adsize; in udf_table_free_blocks()
560 le32_add_cpu(&aed->lengthAllocDescs, adsize); in udf_table_free_blocks()
581 uint32_t elen, adsize; in udf_table_prealloc_blocks() local
592 adsize = sizeof(struct short_ad); in udf_table_prealloc_blocks()
594 adsize = sizeof(struct long_ad); in udf_table_prealloc_blocks()
612 epos.offset -= adsize; in udf_table_prealloc_blocks()
642 uint32_t newblock = 0, adsize; in udf_table_new_block() local
652 adsize = sizeof(struct short_ad); in udf_table_new_block()
654 adsize = sizeof(struct long_ad); in udf_table_new_block()
692 goal_epos.offset = epos.offset - adsize; in udf_table_new_block()