Searched refs:csize_t (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/asm/
H A DcodeBuffer.hpp83 typedef int csize_t; // code size type; would be size_t except for history typedef in class:VALUE_OBJ_CLASS_SPEC
121 void initialize(address start, csize_t size = 0) {
149 csize_t size() const { return (csize_t)(_end - _start); }
150 csize_t mark_off() const { assert(_mark != NULL, "not an offset");
151 return (csize_t)(_mark - _start); }
152 csize_t capacity() const { return (csize_t)(_limit - _start); }
153 csize_t remaining() const { return (csize_t)(_limi
301 typedef int csize_t; // code size type; would be size_t except for history typedef in class:CodeBuffer
[all...]
H A DcodeBuffer.cpp78 typedef CodeBuffer::csize_t csize_t; // file-local definition typedef
88 void CodeBuffer::initialize(csize_t code_size, csize_t locs_size) {
149 void CodeBuffer::initialize_section_size(CodeSection* cs, csize_t size) {
151 csize_t slop = CodeSection::end_slop(); // margin between sections
169 csize_t frozen_size = cs->size();
324 csize_t offset = at - locs_point();
359 csize_t min_locs = MAX2(size() / 16, (csize_t)
[all...]

Completed in 33 milliseconds