Lines Matching refs:outfile
87 FILE* outfile = fopen(filename, "w"); in STAT_print() local
91 fprintf(outfile, "Thr%04d Bin%02d", thread, i); in STAT_print()
92 fprintf(outfile, ": allocNewBlocks %5d", ctrs.counter[allocBlockNew]); in STAT_print()
93 fprintf(outfile, ", allocPublicBlocks %5d", ctrs.counter[allocBlockPublic]); in STAT_print()
94 fprintf(outfile, ", restoreBumpPtr %5d", ctrs.counter[freeRestoreBumpPtr]); in STAT_print()
95 fprintf(outfile, ", privatizeCalled %10d", ctrs.counter[allocPrivatized]); in STAT_print()
96 fprintf(outfile, ", emptyEnough %10d", ctrs.counter[examineEmptyEnough]); in STAT_print()
97 fprintf(outfile, ", notEmptyEnough %10d", ctrs.counter[examineNotEmpty]); in STAT_print()
98 fprintf(outfile, ", freeBlocksPublic %5d", ctrs.counter[freeBlockPublic]); in STAT_print()
99 fprintf(outfile, ", freeBlocksBack %5d", ctrs.counter[freeBlockBack]); in STAT_print()
100 fprintf(outfile, "\n"); in STAT_print()
105 fprintf(outfile, "Thr%04d Bin%02d", thread, i); in STAT_print()
106 fprintf(outfile, ": allocBumpPtr %10d", ctrs.counter[allocBumpPtrUsed]); in STAT_print()
107 fprintf(outfile, ", allocFreeList %10d", ctrs.counter[allocFreeListUsed]); in STAT_print()
108 fprintf(outfile, ", freeToActiveBlk %10d", ctrs.counter[freeToActiveBlock]); in STAT_print()
109 fprintf(outfile, ", freeToInactive %10d", ctrs.counter[freeToInactiveBlock]); in STAT_print()
110 fprintf(outfile, ", freedByOther %10d", ctrs.counter[freeByOtherThread]); in STAT_print()
111 fprintf(outfile, "\n"); in STAT_print()
114 fprintf(outfile, "Thr%04d common counters", thread); in STAT_print()
115 fprintf(outfile, ": allocNewLargeObject %5d", ctrs.counter[allocNewLargeObj]); in STAT_print()
116 fprintf(outfile, ": allocCachedLargeObject %5d", ctrs.counter[allocCachedLargeObj]); in STAT_print()
117 fprintf(outfile, ", cacheLargeObject %5d", ctrs.counter[cacheLargeObj]); in STAT_print()
118 fprintf(outfile, ", freeLargeObject %5d", ctrs.counter[freeLargeObj]); in STAT_print()
119 fprintf(outfile, ", lockPublicFreeList %5d", ctrs.counter[lockPublicFreeList]); in STAT_print()
120 fprintf(outfile, ", freeToOtherThread %10d", ctrs.counter[freeToOtherThread]); in STAT_print()
121 fprintf(outfile, "\n"); in STAT_print()
123 fclose(outfile); in STAT_print()