Lines Matching refs:lad
1879 struct long_ad *lad = NULL; in udf_add_aext() local
1960 lad = (struct long_ad *)sptr; in udf_add_aext()
1961 lad->extLength = cpu_to_le32(EXT_NEXT_EXTENT_ALLOCDECS | in udf_add_aext()
1963 lad->extLocation = cpu_to_lelb(epos->block); in udf_add_aext()
1964 memset(lad->impUse, 0x00, sizeof(lad->impUse)); in udf_add_aext()
2009 struct long_ad *lad; in udf_write_aext() local
2027 lad = (struct long_ad *)ptr; in udf_write_aext()
2028 lad->extLength = cpu_to_le32(elen); in udf_write_aext()
2029 lad->extLocation = cpu_to_lelb(*eloc); in udf_write_aext()
2030 memset(lad->impUse, 0x00, sizeof(lad->impUse)); in udf_write_aext()
2099 struct long_ad *lad; in udf_current_aext() local
2131 lad = udf_get_filelongad(ptr, alen, &epos->offset, inc); in udf_current_aext()
2132 if (!lad) in udf_current_aext()
2134 etype = le32_to_cpu(lad->extLength) >> 30; in udf_current_aext()
2135 *eloc = lelb_to_cpu(lad->extLocation); in udf_current_aext()
2136 *elen = le32_to_cpu(lad->extLength) & UDF_EXTENT_LENGTH_MASK; in udf_current_aext()