• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/udf/

Lines Matching defs:etype

480 	int8_t etype;
514 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 1);
515 if (etype == -1)
520 laarr[c].extLength = (etype << 30) | elen;
523 if (etype != (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
543 if (etype == (EXT_RECORDED_ALLOCATED >> 30)) {
548 etype = udf_write_aext(inode, &cur_epos, &eloc, elen, 1);
560 if (etype == -1) {
620 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 0);
621 if (etype != -1) {
622 laarr[c + 1].extLength = (etype << 30) | elen;
713 int8_t etype = (laarr[curr].extLength >> 30);
726 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
737 laarr[curr].extLength = (etype << 30) |
745 if (etype == (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30))
753 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30))
756 laarr[curr].extLength = (etype << 30) |
1654 int8_t etype;
1756 etype = udf_write_aext(inode, epos, eloc, elen, inc);
1774 return etype;
1834 int8_t etype;
1836 while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) ==
1850 return etype;
1857 int8_t etype;
1885 etype = le32_to_cpu(sad->extLength) >> 30;
1895 etype = le32_to_cpu(lad->extLength) >> 30;
1905 return etype;
1913 int8_t etype;
1918 while ((etype = udf_next_aext(inode, &epos, &oeloc, &oelen, 0)) != -1) {
1921 nelen = (etype << 30) | oelen;
1934 int8_t etype;
1955 while ((etype = udf_next_aext(inode, &epos, &eloc, &elen, 1)) != -1) {
1956 udf_write_aext(inode, &oepos, &eloc, (etype << 30) | elen, 1);
2019 int8_t etype;
2029 etype = udf_next_aext(inode, pos, eloc, elen, 1);
2030 if (etype == -1) {
2040 return etype;