Searched defs:code_size_to_size (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/code/
H A DicBuffer.hpp58 static int code_size_to_size(int code_size) { return round_to(sizeof(ICStub), CodeEntryAlignment) + code_size; } function in class:ICStub
H A Dstubs.hpp81 static int code_size_to_size(int code_size) { ShouldNotCallThis(); return 0; } // computes the size given the code size function in class:VALUE_OBJ_CLASS_SPEC
115 virtual int code_size_to_size(int code_size) const = 0; // computes the total stub size in bytes given the code size in bytes
144 virtual int code_size_to_size(int code_size) const { return stub::code_size_to_size(code_size); } \
183 int stub_code_size_to_size(int code_size) const { return _stub_interface->code_size_to_size(code_size); }
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dinterpreter.hpp61 static int code_size_to_size(int code_size) { return round_to(sizeof(InterpreterCodelet), CodeEntryAlignment) + code_size; } function in class:InterpreterCodelet

Completed in 44 milliseconds