Lines Matching refs:lad
1623 long_ad *lad = NULL; in udf_add_aext() local
1718 lad = (long_ad *)sptr; in udf_add_aext()
1719 lad->extLength = cpu_to_le32( in udf_add_aext()
1722 lad->extLocation = cpu_to_lelb(*bloc); in udf_add_aext()
1723 memset(lad->impUse, 0x00, sizeof(lad->impUse)); in udf_add_aext()
1763 long_ad *lad = NULL; in udf_write_aext() local
1796 lad = (long_ad *)((bh)->b_data + *extoffset); in udf_write_aext()
1797 lad->extLength = cpu_to_le32(elen); in udf_write_aext()
1798 lad->extLocation = cpu_to_lelb(eloc); in udf_write_aext()
1799 memset(lad->impUse, 0x00, sizeof(lad->impUse)); in udf_write_aext()
1902 long_ad *lad; in udf_next_aext() local
1904 if (!(lad = udf_get_filelongad((*bh)->b_data, alen, extoffset, inc))) in udf_next_aext()
1907 if ((etype = le32_to_cpu(lad->extLength) >> 30) == (EXT_NEXT_EXTENT_ALLOCDECS >> 30)) in udf_next_aext()
1909 *bloc = lelb_to_cpu(lad->extLocation); in udf_next_aext()
1917 *eloc = lelb_to_cpu(lad->extLocation); in udf_next_aext()
1918 *elen = le32_to_cpu(lad->extLength) & UDF_EXTENT_LENGTH_MASK; in udf_next_aext()
2002 long_ad *lad; in udf_current_aext() local
2004 if (!(lad = udf_get_filelongad((*bh)->b_data, alen, extoffset, inc))) in udf_current_aext()
2007 etype = le32_to_cpu(lad->extLength) >> 30; in udf_current_aext()
2008 *eloc = lelb_to_cpu(lad->extLocation); in udf_current_aext()
2009 *elen = le32_to_cpu(lad->extLength) & UDF_EXTENT_LENGTH_MASK; in udf_current_aext()