• Home
  • Raw
  • Download

Lines Matching refs:etype

624 	int8_t etype;  in udf_extend_file()  local
647 etype = inode_bmap(inode, first_block, &epos, &eloc, &elen, &offset); in udf_extend_file()
648 within_last_ext = (etype != -1); in udf_extend_file()
662 etype = udf_next_aext(inode, &epos, &extent.extLocation, in udf_extend_file()
664 extent.extLength |= etype << 30; in udf_extend_file()
701 int8_t etype; in inode_getblk() local
738 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 1); in inode_getblk()
739 if (etype == -1) in inode_getblk()
744 laarr[c].extLength = (etype << 30) | elen; in inode_getblk()
747 if (etype != (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) in inode_getblk()
767 if (etype == (EXT_RECORDED_ALLOCATED >> 30)) { in inode_getblk()
779 if (etype == -1) { in inode_getblk()
835 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 0); in inode_getblk()
836 if (etype != -1) { in inode_getblk()
837 laarr[c + 1].extLength = (etype << 30) | elen; in inode_getblk()
928 int8_t etype = (laarr[curr].extLength >> 30); in udf_split_extents() local
941 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) { in udf_split_extents()
952 laarr[curr].extLength = (etype << 30) | in udf_split_extents()
960 if (etype == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) in udf_split_extents()
968 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) in udf_split_extents()
971 laarr[curr].extLength = (etype << 30) | in udf_split_extents()
2141 int8_t etype; in udf_next_aext() local
2144 while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) == in udf_next_aext()
2166 return etype; in udf_next_aext()
2173 int8_t etype; in udf_current_aext() local
2201 etype = le32_to_cpu(sad->extLength) >> 30; in udf_current_aext()
2211 etype = le32_to_cpu(lad->extLength) >> 30; in udf_current_aext()
2220 return etype; in udf_current_aext()
2228 int8_t etype; in udf_insert_aext() local
2234 while ((etype = udf_next_aext(inode, &epos, &oeloc, &oelen, 0)) != -1) { in udf_insert_aext()
2237 nelen = (etype << 30) | oelen; in udf_insert_aext()
2249 int8_t etype; in udf_delete_aext() local
2272 while ((etype = udf_next_aext(inode, &epos, &eloc, &elen, 1)) != -1) { in udf_delete_aext()
2273 udf_write_aext(inode, &oepos, &eloc, (etype << 30) | elen, 1); in udf_delete_aext()
2335 int8_t etype; in inode_bmap() local
2346 etype = udf_next_aext(inode, pos, eloc, elen, 1); in inode_bmap()
2347 if (etype == -1) { in inode_bmap()
2358 return etype; in inode_bmap()