Home | History | Annotate | Download | only in e2fsck

Lines Matching full:hash

178 		 * update their parent's min and max hash values
321 * processed first, so we know what hash version to use.
538 ext2_dirhash_t hash = 0, prev_hash;
546 printf("\t Hash Version: %d\n", root->hash_version);
581 prev_hash = hash;
582 hash = i ? (ext2fs_le32_to_cpu(ent[i].hash) & ~1) : 0;
584 printf("Entry #%d: Hash 0x%08x, block %u\n", i,
585 hash, ext2fs_le32_to_cpu(ent[i].block));
596 if (hash < prev_hash &&
606 if (hash < min_hash)
607 min_hash = hash;
608 if (hash > max_hash)
609 max_hash = hash;
610 dx_db->node_min_hash = hash;
613 ext2fs_le32_to_cpu(ent[i+1].hash) & ~1;
622 printf("Blockcnt = %d, min hash 0x%08x, max hash 0x%08x\n",
706 ext2_dirhash_t hash;
975 fs->super->s_hash_seed, &hash, 0);
976 if (hash < dx_db->min_hash)
977 dx_db->min_hash = hash;
978 if (hash > dx_db->max_hash)
979 dx_db->max_hash = hash;