Searched defs:code_length (Results 1 - 7 of 7) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DCode_attribute.java61 code_length = cr.readInt();
62 code = new byte[code_length];
140 public final int code_length; field in class:Code_attribute
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DCode.java85 private int code_length; // Length of code in bytes field in class:Code
118 code_length = file.readInt();
119 code = new byte[code_length]; // Read byte code
196 file.writeInt(code_length);
197 file.write(code, 0, code_length);
264 + code_length /*byte-code*/
297 code_length = (code == null)? 0 : code.length;
331 ", code_length = " + code_length + ")\n" +
/openjdk7/hotspot/src/share/vm/interpreter/
H A Drewriter.cpp286 const int code_length = method->code_size(); local
289 for (int bci = 0; bci < code_length; bci += bc_length) {
/openjdk7/hotspot/src/share/vm/runtime/
H A Drelocator.hpp85 int code_length() const { return _code_length; } function in class:Relocator
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiRedefineClasses.cpp1459 int code_length = method->code_size(); local
1462 for (int bci = 0; bci < code_length; bci += bc_length) {
1528 code_length = method->code_size();
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c256 jint code_length; member in struct:context_type
342 int code_length, unsigned char* code);
939 int code_length, unsigned char* code)
955 context->code_length = code_length;
962 code_data = NEW(int, code_length);
988 for (i = 0, offset = 0; offset < code_length; i++) {
989 int length = instruction_length(&code[offset], code + code_length);
993 if (next_offset > code_length)
1020 for (inumber = 0, offset = 0; offset < code_length; inumbe
938 verify_method(context_type *context, jclass cb, int method_index, int code_length, unsigned char* code) argument
1568 int code_length = context->code_length; local
1690 int code_length = context->code_length; local
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp1297 u2* ClassFileParser::parse_exception_table(u4 code_length, argument
1313 guarantee_property((start_pc < end_pc) && (end_pc <= code_length),
1316 guarantee_property(handler_pc < code_length,
1332 u4 code_attribute_length, u4 code_length,
1359 guarantee_property(bci < code_length,
1469 u2* ClassFileParser::parse_localvariable_table(u4 code_length, argument
1500 if (start_pc >= code_length) {
1505 if (end_pc > code_length) {
1544 void ClassFileParser::parse_type_array(u2 array_length, u4 code_length, u4* u1_index, u4* u2_index, argument
1564 offset < code_length,
1331 parse_linenumber_table( u4 code_attribute_length, u4 code_length, CompressedLineNumberWriteStream** write_stream, TRAPS) argument
1879 u4 code_length = 0; local
[all...]

Completed in 1091 milliseconds