Lines Matching defs:cgr
346 dbg_dump_cg(const char *comment, struct cg *cgr)
354 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)cgr, comment);
357 fprintf(dbg_log, "magic int32_t 0x%08x\n", cgr->cg_magic);
358 fprintf(dbg_log, "old_time int32_t 0x%08x\n", cgr->cg_old_time);
359 fprintf(dbg_log, "cgx int32_t 0x%08x\n", cgr->cg_cgx);
360 fprintf(dbg_log, "old_ncyl int16_t 0x%04x\n", cgr->cg_old_ncyl);
361 fprintf(dbg_log, "old_niblk int16_t 0x%04x\n", cgr->cg_old_niblk);
362 fprintf(dbg_log, "ndblk int32_t 0x%08x\n", cgr->cg_ndblk);
363 dbg_dump_csum("internal cs", &cgr->cg_cs);
364 fprintf(dbg_log, "rotor int32_t 0x%08x\n", cgr->cg_rotor);
365 fprintf(dbg_log, "frotor int32_t 0x%08x\n", cgr->cg_frotor);
366 fprintf(dbg_log, "irotor int32_t 0x%08x\n", cgr->cg_irotor);
369 cgr->cg_frsum[j]);
371 fprintf(dbg_log, "old_btotoff int32_t 0x%08x\n", cgr->cg_old_btotoff);
372 fprintf(dbg_log, "old_boff int32_t 0x%08x\n", cgr->cg_old_boff);
373 fprintf(dbg_log, "iusedoff int32_t 0x%08x\n", cgr->cg_iusedoff);
374 fprintf(dbg_log, "freeoff int32_t 0x%08x\n", cgr->cg_freeoff);
376 cgr->cg_nextfreeoff);
378 cgr->cg_clustersumoff);
380 cgr->cg_clusteroff);
382 cgr->cg_nclusterblks);
383 fprintf(dbg_log, "niblk int32_t 0x%08x\n", cgr->cg_niblk);
384 fprintf(dbg_log, "initediblk int32_t 0x%08x\n", cgr->cg_initediblk);
385 fprintf(dbg_log, "unrefs int32_t 0x%08x\n", cgr->cg_unrefs);
387 (unsigned int)cgr->cg_initediblk);
459 dbg_dump_inmap(struct fs *sb, const char *comment, struct cg *cgr)
468 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)cgr, comment);
471 cp = (unsigned char *)cg_inosused(cgr);
502 dbg_dump_frmap(struct fs *sb, const char *comment, struct cg *cgr)
511 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)cgr, comment);
514 cp = (unsigned char *)cg_blksfree(cgr);
548 dbg_dump_clmap(struct fs *sb, const char *comment, struct cg *cgr)
557 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)cgr, comment);
560 cp = (unsigned char *)cg_clustersfree(cgr);
593 dbg_dump_clsum(struct fs *sb, const char *comment, struct cg *cgr)
602 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)cgr, comment);
605 ip = (int *)cg_clustersum(cgr);
628 dbg_dump_sptbl(struct fs *sb, const char *comment, struct cg *cgr)
638 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)cgr, comment);
641 ip = (int *)cg_blktot(cgr);
645 fprintf(dbg_log, "%4d", cg_blks(sb, cgr, j)[k]);