Home | History | Annotate | Download | only in _sha3

Lines Matching refs:line

27     for line in f:
29 #if line.startswith(STATICS):
30 # buf.append("static " + line)
33 if line.startswith("typedef unsigned long long int"):
34 buf.append("/* %s */\n" % line.strip())
37 if "brg_endian.h" in line:
38 buf.append("/* %s */\n" % line.strip())
41 line = CPP1.sub(r"/*\1 */\n", line)
42 line = CPP2.sub(r" /*\1 */\n", line)
43 buf.append(line)