Lines Matching refs:bitwidth
120 int bitwidth, GeneratedFile &out) { in GenerateAccessorMethod() argument
122 out.indent() << "// return byte array representation of the " << bitwidth in GenerateAccessorMethod()
124 out.indent() << "public static byte[] getBitCode" << bitwidth << "()"; in GenerateAccessorMethod()
126 out.indent() << "return getBitCode" << bitwidth << "Internal();\n"; in GenerateAccessorMethod()
133 static bool GenerateSegmentMethod(const char *buff, int blen, int bitwidth, in GenerateSegmentMethod() argument
135 out.indent() << "private static byte[] getSegment" << bitwidth << "_" in GenerateSegmentMethod()
165 int bitwidth, GeneratedFile &out) { in GenerateJavaCodeAccessorMethodForBitwidth() argument
168 if (bitwidth == 64) { in GenerateJavaCodeAccessorMethodForBitwidth()
179 GenerateAccessorMethod(context, bitwidth, out); in GenerateJavaCodeAccessorMethodForBitwidth()
190 GenerateSegmentMethod(buff, read_length, bitwidth, seg_num, out); in GenerateJavaCodeAccessorMethodForBitwidth()
198 out.indent() << "private static int bitCode" << bitwidth << "Length = " in GenerateJavaCodeAccessorMethodForBitwidth()
200 out.indent() << "private static byte[] getBitCode" << bitwidth in GenerateJavaCodeAccessorMethodForBitwidth()
203 out.indent() << "byte[] bc = new byte[bitCode" << bitwidth << "Length];\n"; in GenerateJavaCodeAccessorMethodForBitwidth()
207 out.indent() << "seg = getSegment" << bitwidth << "_" << i << "();\n"; in GenerateJavaCodeAccessorMethodForBitwidth()