Lines Matching refs:cgr

353 dbg_dump_cg(const char *comment, struct cg *cgr)
361 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)cgr, comment);
364 fprintf(dbg_log, "magic int32_t 0x%08x\n", cgr->cg_magic);
365 fprintf(dbg_log, "old_time int32_t 0x%08x\n", cgr->cg_old_time);
366 fprintf(dbg_log, "cgx int32_t 0x%08x\n", cgr->cg_cgx);
367 fprintf(dbg_log, "old_ncyl int16_t 0x%04x\n", cgr->cg_old_ncyl);
368 fprintf(dbg_log, "old_niblk int16_t 0x%04x\n", cgr->cg_old_niblk);
369 fprintf(dbg_log, "ndblk int32_t 0x%08x\n", cgr->cg_ndblk);
370 dbg_dump_csum("internal cs", &cgr->cg_cs);
371 fprintf(dbg_log, "rotor int32_t 0x%08x\n", cgr->cg_rotor);
372 fprintf(dbg_log, "frotor int32_t 0x%08x\n", cgr->cg_frotor);
373 fprintf(dbg_log, "irotor int32_t 0x%08x\n", cgr->cg_irotor);
376 cgr->cg_frsum[j]);
378 fprintf(dbg_log, "old_btotoff int32_t 0x%08x\n", cgr->cg_old_btotoff);
379 fprintf(dbg_log, "old_boff int32_t 0x%08x\n", cgr->cg_old_boff);
380 fprintf(dbg_log, "iusedoff int32_t 0x%08x\n", cgr->cg_iusedoff);
381 fprintf(dbg_log, "freeoff int32_t 0x%08x\n", cgr->cg_freeoff);
383 cgr->cg_nextfreeoff);
385 cgr->cg_clustersumoff);
387 cgr->cg_clusteroff);
389 cgr->cg_nclusterblks);
390 fprintf(dbg_log, "niblk int32_t 0x%08x\n", cgr->cg_niblk);
391 fprintf(dbg_log, "initediblk int32_t 0x%08x\n", cgr->cg_initediblk);
392 fprintf(dbg_log, "unrefs int32_t 0x%08x\n", cgr->cg_unrefs);
394 (unsigned int)cgr->cg_initediblk);
466 dbg_dump_inmap(struct fs *sb, const char *comment, struct cg *cgr)
475 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)cgr, comment);
478 cp = (unsigned char *)cg_inosused(cgr);
509 dbg_dump_frmap(struct fs *sb, const char *comment, struct cg *cgr)
518 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)cgr, comment);
521 cp = (unsigned char *)cg_blksfree(cgr);
555 dbg_dump_clmap(struct fs *sb, const char *comment, struct cg *cgr)
564 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)cgr, comment);
567 cp = (unsigned char *)cg_clustersfree(cgr);
600 dbg_dump_clsum(struct fs *sb, const char *comment, struct cg *cgr)
609 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)cgr, comment);
612 ip = (int *)cg_clustersum(cgr);
635 dbg_dump_sptbl(struct fs *sb, const char *comment, struct cg *cgr)
645 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)cgr, comment);
648 ip = (int *)cg_blktot(cgr);
652 fprintf(dbg_log, "%4d", cg_blks(sb, cgr, j)[k]);