Lines Matching defs:epos
391 struct extent_position oepos, epos;
412 epos.offset = oepos.offset = sizeof(struct unallocSpaceEntry);
414 epos.block = oepos.block = iinfo->i_location;
415 epos.bh = oepos.bh = NULL;
418 (etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) {
458 if (epos.bh != oepos.bh) {
459 oepos.block = epos.block;
461 get_bh(epos.bh);
462 oepos.bh = epos.bh;
465 oepos.offset = epos.offset;
495 brelse(epos.bh);
499 if (epos.offset + (2 * adsize) > sb->s_blocksize) {
502 &epos);
510 __udf_add_aext(table, &epos, &eloc, elen, 1);
513 brelse(epos.bh);
529 struct extent_position epos;
545 epos.offset = sizeof(struct unallocSpaceEntry);
546 epos.block = iinfo->i_location;
547 epos.bh = NULL;
551 (etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) {
558 epos.offset -= adsize;
565 udf_write_aext(table, &epos, &eloc,
568 udf_delete_aext(table, epos);
573 brelse(epos.bh);
591 struct extent_position epos, goal_epos;
613 epos.offset = sizeof(struct unallocSpaceEntry);
614 epos.block = iinfo->i_location;
615 epos.bh = goal_epos.bh = NULL;
618 (etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) {
632 if (goal_epos.bh != epos.bh) {
634 goal_epos.bh = epos.bh;
637 goal_epos.block = epos.block;
638 goal_epos.offset = epos.offset - adsize;
644 brelse(epos.bh);