Searched defs:off (Results 451 - 457 of 457) sorted by relevance

<<111213141516171819

/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Font.cpp809 jint off, jint len)
817 if ((len < 0) || (off < 0) || (len + off > (env->GetArrayLength(str)))) {
818 JNU_ThrowArrayIndexOutOfBoundsException(env, "off/len argument");
823 env->GetCharArrayRegion(str, off, len, strp);
842 jint off, jint len)
850 if ((len < 0) || (off < 0) || (len + off > (env->GetArrayLength(str)))) {
851 JNU_ThrowArrayIndexOutOfBoundsException(env, "off or len argument");
860 char *pStr = pStrBody + off;
807 Java_sun_awt_windows_WFontMetrics_charsWidth(JNIEnv *env, jobject self, jcharArray str, jint off, jint len) argument
840 Java_sun_awt_windows_WFontMetrics_bytesWidth(JNIEnv *env, jobject self, jbyteArray str, jint off, jint len) argument
[all...]
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DXMLKit.java2385 public void write(char buf[], int off, int len) { argument
2388 super.write(buf, off, len);
2393 public void write(String s, int off, int len) { argument
2396 //buf.append(s.substring(off, off+len));
2397 super.write(s, off, len);
3690 public void characters(char[] buf, int off, int len) { argument
3696 while (len > 0 && isWhitespace(buf[off])) {
3698 ++off;
3704 while (len > 0 && isWhitespace(buf[off
3769 ignorableWhitespace(char[] buf, int off, int len) argument
3777 comment(char[] buf, int off, int len) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dcompile.hpp448 // Instruction bits passed off to the VM
653 // All bailouts cover "all_tiers" when TieredCompilation is off.
894 // Instruction bits passed off to the VM
898 void set_frame_complete(int off) { _code_offsets.set_value(CodeOffsets::Frame_Complete, off); } argument
H A Dmemnode.cpp680 // Take a node off the worklist
1276 // Peel the shift off directly but wrap it in a dummy node
1546 int off = tp->offset(); local
1547 assert(off != Type::OffsetTop, "case covered by TypePtr::empty");
1580 if ((uint)off >= (uint)min_base_off) { // is the offset beyond the header?
1606 assert( off != Type::OffsetBot ||
1614 adr->is_AddP() && off != Type::OffsetBot) {
1619 ciField* field = env->String_klass()->get_field_by_offset(off, false);
1641 ciField* field = call_site->klass()->as_instance_klass()->get_field_by_offset(off, /*is_static=*/ false);
1662 assert( off !
2661 Node *off = phase->MakeConX(BytesPerLong); local
3608 intptr_t off[2]; local
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DBandStructure.java893 public int read(byte b[], int off, int len) throws IOException {
894 int nr = in.read(b, off, len);
895 if (nr >= 0) bytesForDump.write(b, off, nr);
1081 // This sends each segment off in a different direction.
1345 public void write(byte b[], int off, int len) throws IOException { argument
1347 if (out != null) out.write(b, off, len);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.hpp1042 static int wdisp16(intptr_t x, intptr_t off) { argument
1043 intptr_t xx = x - off;
1047 assert( inv_wdisp16(r, off) == x, "inverse is not inverse");
1061 static int wdisp10(intptr_t x, intptr_t off) { argument
1063 intptr_t xx = x - off;
1068 assert(inv_wdisp10((r | op(branch_op) | cond_cbcond(rc_last+1) | op2(bpr_op2)), off) == x, "inverse is not inverse");
1082 static int wdisp( intptr_t x, intptr_t off, int nbits ) { argument
1083 intptr_t xx = x - off;
1086 assert( inv_wdisp( r, off, nbits ) == x, "inverse not inverse");
1858 #define JMP(r1, off) jm
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.cpp5575 // need to store off the mark word we read out of the object to
7943 int off; local
7945 off = offset();
7948 off = load_unsigned_byte(dst, src);
7952 return off;
7960 int off; local
7965 off = offset();
7968 off = load_unsigned_short(dst, src);
7972 return off;
7978 int off; local
7994 int off; local
9058 int off = 0; local
[all...]

Completed in 152 milliseconds

<<111213141516171819