Lines Matching refs:out
55 goto out; in readFile()
58 goto out; in readFile()
62 out: in readFile()
101 static void doPrintHash(FILE *out, const char *pfx, const uint32_t *hash, size_t size, int incremen… in doPrintHash() argument
105 fprintf(out, "%s: ", pfx); in doPrintHash()
107 fprintf(out, "%08" PRIx32, hash[pos]); in doPrintHash()
108 fprintf(out, "\n"); in doPrintHash()
111 void printHash(FILE *out, const char *pfx, const uint32_t *hash, size_t size) in printHash() argument
113 doPrintHash(out, pfx, hash, size, 1); in printHash()
116 void printHashRev(FILE *out, const char *pfx, const uint32_t *hash, size_t size) in printHashRev() argument
118 doPrintHash(out, pfx, hash + size - 1, size, -1); in printHashRev()