Lines Matching defs:epos
387 struct extent_position oepos, epos;
408 epos.offset = oepos.offset = sizeof(struct unallocSpaceEntry);
410 epos.block = oepos.block = iinfo->i_location;
411 epos.bh = oepos.bh = NULL;
414 (etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) {
454 if (epos.bh != oepos.bh) {
455 oepos.block = epos.block;
457 get_bh(epos.bh);
458 oepos.bh = epos.bh;
461 oepos.offset = epos.offset;
491 brelse(epos.bh);
495 if (epos.offset + (2 * adsize) > sb->s_blocksize) {
498 &epos);
506 __udf_add_aext(table, &epos, &eloc, elen, 1);
509 brelse(epos.bh);
525 struct extent_position epos;
541 epos.offset = sizeof(struct unallocSpaceEntry);
542 epos.block = iinfo->i_location;
543 epos.bh = NULL;
547 (etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) {
554 epos.offset -= adsize;
561 udf_write_aext(table, &epos, &eloc,
564 udf_delete_aext(table, epos);
569 brelse(epos.bh);
587 struct extent_position epos, goal_epos;
609 epos.offset = sizeof(struct unallocSpaceEntry);
610 epos.block = iinfo->i_location;
611 epos.bh = goal_epos.bh = NULL;
614 (etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) {
628 if (goal_epos.bh != epos.bh) {
630 goal_epos.bh = epos.bh;
633 goal_epos.block = epos.block;
634 goal_epos.offset = epos.offset - adsize;
640 brelse(epos.bh);