Searched refs:endoff (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/java/io/
H A DObjectOutputStream.java702 int endoff = off + len;
703 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) {
1968 int endoff = s.length();
1971 for (int off = 0; off < endoff; ) {
1974 csize = Math.min(endoff - off, CHAR_BUF_SIZE);
1990 int endoff = s.length();
1991 for (int off = 0; off < endoff; ) {
1992 int csize = Math.min(endoff - off, CHAR_BUF_SIZE);
2013 int endoff
[all...]
H A DObjectInputStream.java859 int endoff = off + len;
860 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) {
1026 int endoff = off + len;
1027 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) {
2879 int stop, endoff = off + len;
2880 while (off < endoff) {
2882 int span = Math.min(endoff - off, MAX_BLOCK_SIZE);
2890 stop = Math.min(endoff, of
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dcallnode.cpp304 assert(jvmroot->endoff() <= this->endoff(), "youngest JVMState must be last");
305 return endoff();
533 depth(), locoff(), stkoff(), argoff(), monoff(), scloff(), endoff(), monitor_depth(), sp(), bci(), should_reexecute()?"true":"false");
1016 int endoff = jvms->endoff(); local
1017 assert(endoff == (int)req(), "no other states or debug info after me");
1024 jvms->set_endoff(endoff + grow_by);
1032 assert(req() == jvms()->endoff(), "correct sizing");
1051 int endoff local
[all...]
H A Dcallnode.hpp227 // \ locoff \ stkoff \ argoff \ monoff \ scloff \ endoff
233 uint endoff() const { return _endoff; } function in class:JVMState
240 int scl_size() const { return endoff() - scloff(); }
245 bool is_scl(uint i) const { return scloff() <= i && i < endoff(); }
257 uint debug_end() const; // returns endoff of self
H A Dparse1.cpp190 assert((int)jvms()->endoff() == TypeFunc::Parms + max_locals + max_stack, "sanity");
191 assert((int)jvms()->endoff() == (int)map()->req(), "sanity");
575 assert(jvms()->endoff() == map()->req(), "map matches JVMS layout");
1027 assert(jvms->endoff() == len, "correct jvms sizing");
1564 assert(newin->jvms()->endoff() == jvms()->endoff(), "JVMS layouts agree");
H A DgraphKit.cpp139 assert(map()->req() <= jvms()->endoff(), "no extra garbage on map");
213 return ex_map->req() == ex_map->jvms()->endoff()+1;
297 while (map()->req() < jvms->endoff()) map()->add_req(top());
967 assert(out_jvms->endoff() == debug_end, "fill ptr must match");
H A Dmacro.cpp99 jvms->set_endoff(jvms->endoff()+jvms_adj);

Completed in 90 milliseconds